HARDWARE BLOCKCHAIN ACCELERATION
Patent Information
- Application Number
- DE602017091531
- Authority / Receiving Office
- DE · DE
- Patent Type
- Patents
- Current Assignee / Owner
- Priority Date
- 2017-01-27
- Filing Date
- 2017-12-19
- Publication Date
- 2025-08-27
- Estimated Expiration
- 2037-12-19
AI Technical Summary
Existing software-based security systems for transaction chains, such as blockchains, face challenges in achieving efficient, secure, and scalable execution of complex transactions due to the need for direct encryption and decryption of data, which compromises security and scalability.
Implementing hardware security modules (HSMs) to perform cryptographic functions, such as encryption and decryption, within a hardware-accelerated transaction architecture, allowing for secure and efficient execution of transactions by offloading these functions from software to dedicated hardware.
The hardware-accelerated approach enhances security and scalability by ensuring that sensitive data remains encrypted within HSMs, providing increased control and efficiency in transaction processing and blockchain integration.
Description
Technical Field
[0001] This disclosure relates to computer hardware acceleration of software processes. This disclosure also relates to hardware security support for software processes that support transaction chains, including blockchains.Background
[0002] Rapid advances in electronics and communication technologies, driven by immense customer demand, have resulted in newly emerging complex network transaction chains. Improvements in the hardware and software implementations of the underlying processing for the transaction chains will increase the security, features, and speed of the implementations.
[0003] US 2016 / 0260169 (Arnold) describes methods related to processing financial transactions using a computer network that stores a distributed ledger, and to updating the distributed ledger based on data messages received from validation servers that each store a portion of the ledger corresponding to a respective asset. The methods employ the distributed ledger to control visibility of transactions to the general marketplace, but still provide assured completion of transactions and visibility and audit capability for regulators.
[0004] David Cross, "Windows 2000 Server and PKI: Using the nCipher Hardware Security Module", 2001, describes an integrated public key infrastructure (PKI) that allows users of Microsoft Windows 2000 to establish and maintain security-including cryptographic security. Further described is how nCipher's hardware security modules (HSM) and Windows 2000 Server work together to perform routine cryptographic and PKI operations.Brief Description of the Drawings
[0005] Figure 1 shows a hardware accelerated transaction architecture. Figure 2 illustrates an expanded view of the hardware accelerated transaction architecture. Figure 3 shows an implementation example in which security manager circuitry exposes specific security manager functions as a security manager API. Figure 4 shows another implementation example in which security manager circuitry exposes specific security manager functions as a security manager API. Figure 5 illustrates an additional implementation example in which security manager circuitry exposes specific security manager functions. Figure 6 illustrates an additional implementation example in which security manager circuitry exposes specific security manager functions. Figure 7 shows a hybrid implementation example of the HSM interface implementing a security circuitry API. Figure 8 shows an implementation example of the HSM interface 802 supporting multiple HSMs. Figure 9 shows logic that a hardware accelerated transaction processing system may implement. Detailed Description
[0006] Figure 1 shows an example hardware accelerated transaction architecture 100 ("architecture" 100) that provides efficient and secure execution of complex transactions between entities. The entities may vary widely, and may be, as a few examples, hardware systems, software processes, or individuals. In Figure 1, the smartphones 102 and 104 are shown as an example hardware platforms that permit entities to engage in transactions with support by the architecture 100. In this example, Entity A is associated with the smartphone 102 and Entity B is associated with the smartphone 104. In the example of Figure 1, Entity A will engage in a digital exchange with Entity B. The digital exchange may be, e.g., a transfer of value between accounts held at different financial institutions. Figure 1 provides one technological backdrop for a discussion of the technical solutions in hardware acceleration, but note that the hardware acceleration may be implemented in many other system contexts to support transactions of widely varying types.
[0007] In the example in Figure 1, a smartphone application 106 accepts transaction input from Entity A that specifies a transaction amount and a transaction recipient: Entity B in this example. Smartphone 102 and 104 store an enrollment certificate 108 which the smartphone application 106 passes, e.g., in a transaction request 110, to an authentication system 112. The authentication system 112 may, as one example, Implement a hyperledger fabric client (HFC) 113, e.g., in dedicated hardware or in a virtual machine or docker container for a virtual machine. An authentication interface 114 includes an exposed authentication application programming interface (API)) that receives the transaction request 110. The authentication system 112 may provide further layers of security, e.g., by requiring the transaction request 110 to travel over hypertext transfer protocol secure sockets (HTTPS), secured by transport layer security (TLS). (Logic flow (1) in Figure 1.)
[0008] The enrolment certificate achieves authentication by encrypting the payload from the smartphone 102 with a public key associated with the enrolment certificate. The counterpart private key is securely held within the HFC certificate authority (CA) 116. The private key allows the authentication system 112 to verify the request. (Logic flow (2) in Figure 1.)
[0009] A membership service running at a system node, e.g., the system node 118, may verify the account for Entity A that is specified in the transaction request 110. In addition, a transaction CA generates a unique transaction token. The transaction token uniquely identifies each transaction and is used to sign the request. The certificate allows the request to be passed into the validating peer node for Entity A 132 (e.g., an on-site server supporting operations for Entity A), where is it received at security controller circuitry 134. The security controller circuitry 134 responsively invokes the processing chaincodes. Chaincodes are the programmatic logic implemented to specifically support an implementation of the data storage layer, e.g., a blockchain shared ledger. In the example noted regarding transferring value, the chaincode is called to update the balances of two accounts in the shared global ledger. These accounts are stored in a serialized, encrypted format to provide separation of concerns for the systems. In other words, all of the accounts for the sender are encrypted with the sender's peer node (e.g., bank A) keys, and cannot be decrypted by the receiver's peer noted (e.g., bank B) keys, and vice versa. Accordingly, a request for encryption or decryption is sent to the relevant system hardware security module (HSM), e.g., the HSM 128 which supports the peer node for Entity A 132. (Logic flow (3) in Figure 1.) Example HSMs include, but are not limited to, the nShield Solo (TM), nShield Edge (TM), and nShield Connect (TM) devices available from Thales e-Security.
[0010] In one implementation, the serialized, encrypted format is a Java script object notation (JSON) file, but other representations are also suitable. The format includes the account data (e.g., sender, recipient, quantity, timestamp, and other data) and a 'cipher' field. Upon encryption, the account data within the account is encrypted in the peer node HSM and the output is placed in the 'cipher' field. The peer node then resets selected fields within the account data, e.g., by setting pre-determined sensitive data fields to zero. The security controller circuitry 134 may employ symmetric cryptography, with all keys remaining securely in the HSMs. Each account includes a uniform resource locator (URL) field that specifies the URL for the security manager with which it was onboarded. Accordingly, any peer node may view the account and locate the API (via the URL field) to request encryption / decryption of an account.
[0011] In more detail, the chaincode sends a network request 122 to the security controller interface 124 which (preferably) has a hardware support interface 126 to the HSM 128. The interfaces 124 and 126 may include hardwired or wireless connections over proprietary or non-proprietary buses or communication networks, for instance. The network request 122 asks for the HSM 128 to decrypt a specific account so that the chaincode can alter the account balance. In support of obtaining the account to decrypt, the authentication system 112 abstracts the global world state stored in the blockchain by two exposed functions, putState() and getState(). The authentication system 112 also mirrors a key / value store in the peer nodes, with the key / value store containing a list of the encrypted, serialized format account objects, linked by their unique identifier.
[0012] Expressed another way, the cryptographic functions are executed by a high security hardware device: the HSM 128, and are not limited to implementation in software. With the HSM 128, the implementation of the data storage layer no longer needs to directly perform encryption and decryption of data. As a result, the implementation show in Figure 1 has increased security and scalability as compared to, for example, software only based security systems, and returns control to the enterprises that support the transactions. In some secure environments, the security controller circuitry 134 which controls the HSM 128 is physically housed with or near the HSM 128, e.g., in an enterprise secure data center. (Logic flow (4) in Figure 1.)
[0013] Once the accounts for Entity A and Entity B are in decrypted format and following the balance updates in the respective accounts, the updated accounts are re-encrypted before being saved into the serialized encrypted data structure (e.g., the JSON file). To that end, the chaincode sends the encryption request 130 for the account to the security manager interface 124, which passes it to the HSM 128 for encryption. The encryption results return to the chaincode, and a new transaction is created within the bank's node, and the transaction is submitted / requested for inclusion in a new block in the blockchain. (Logic flow (5) in Figure 1.)
[0014] Note that in this example implementation, both the Entity A account and the Entity B account are modified as a result of actions taken by the peer node which receives the transaction request. For instance, assume Bank A receives a request from their member Entity A to transfer value to Entity B associated with Bank B. Then, the Bank A peer node will request the authentication system 112 to identify update the accounts. In response, the authentication system 112 will call the security manager API (via the URL fields noted above) to request decryption for both accounts. The chaincode then modifies the balances of both accounts, and uses the same API previously identified to request encryption from the same HSMs. After modification and encryption, the chaincode requests submission of the updated accounts to the blockchain and consensus is run to ensure that all nodes share the same account state. Finally, update accounts are mirrored between all nodes.
[0015] Before the new block with the updated accounts can be added to the blockchain, every node in the system checks that its version of the world state is identical to ensure that there are no compromised nodes. After consensus is reached (e.g., all nodes have the same copy of the data structure), the new transaction is formally injected into the blockchain. The authentication system 112 may implement, for instance, the Practical Byzantine Fault Tolerance (PBFT) algorithm to provide increased speed and scalability to reach consensus in a private, permission blockchain system. (Logic flow (6) In Figure 1.)
[0016] After consensus has been reached and the transaction is included in the blockchain, there is a polling mechanism which consistently checks for new blocks that have been added to the data structure. If a new transaction has been added to the ledger, a message is sent to the respective parties informing them of their account changes. In one implementation, Google Cloud Messaging (GCM) performs the notification to the smartphones 102 and 104. (Logic Point 7 in Figure 1.)
[0017] Figure 2 shows an expanded view 200 of the hardware accelerated transaction architecture. In Figure 2, the Entity A peer node 132 includes the security controller circuitry 134. The security controller circuitry 134 defines an HSM interface 250 that includes a security manager API 202 and an API-to-API mapping 206. The security manager API 202 exposes a set of security manager functions, e.g., the security manager function 204 to request that the peer node 132 execute specified security functions (e.g., encrypt or decrypt data). The API-to-API mapping 206 implements, explicitly or implicitly, a security manager API to HSM API-to-API mapping tailored to the particular HSM in use, as described further below.
[0018] Figure 2 also shows an example architecture 200 illustrating that the HSM 128 provides a secure execution environment (SEE) in which dedicated hardware security circuitry 208 performs encryption, decryption, key generation, key storage, key management, and other security functions. The HSM 128 defines an HSM API 210 that exposes a set of security functions, e.g., the HSM security function 212. The HSM security functions execute on the native HSM hardware to carry out the requested security functions 214 (e.g., decrypt data), and return security responses 216 (e.g., the decrypted data).
[0019] The API-to-API mapping 206 transforms incoming security requests received at the peer node 132 into an HSM specific function. The security controller circuitry 134 transmits the HSM specific functions to the HSM 128 in the form of the requested security functions 214. Similarly, the security controller circuitry 134 receives the security responses 216 from the HSM 128 after the HSM 128 executes the requested security function.
[0020] The HSM interface 250 provides a highly flexible and reconfiguration technical solution the problem of connecting a peer node to a wide range of possible HSMs. By reconfiguring the API-to-API mapping 206 to point to particular functions exposed in any given HSM, the peer node 132 may be efficiently adapted for use with a wide range of security hardware. Further, multiple instances of the HSM interface 250, each with different API-to-API mappings for different HSMs, may be implemented in any given peer node to simultaneously support multiple different HSMs, e.g., for redundant operation and fault tolerance.
[0021] Figure 3 shows an implementation example 300 in which the security controller circuitry 134 exposes five specific security manager functions as the security manager API 302. Table 1, below, describes the security manager functions and indicates, in this one example, where mappings may be provided to specific HSMs or to software. That is, the security manager API 302, in concert with the API-to-API mapping 304, supports connection and messaging between multiple different HSMs. Note further that the API-to-API mapping 304 may provide redirection not only to HSM functions, but also to software implemented security functions, e.g., in cases where no HSM communicates with the peer node. Table 1API Security Manager FunctionDescriptionHSM ConnectionsymmetricEncryptEncrypt data with a symmetric keyMapping to HSM 1Mapping to HSM 2Mapping to SoftwaresymmetricDecryptDecrypt data with a symmetric keyMapping to HSM 1Mapping to HSM 2Mapping to SoftwareapplyDigitalSignatureApply a Digital Signature to a messageMapping to HSM 1verifyDigitalSignatureVerify the Digital Signature of a messageMapping to HSM 1generateECKeyPairGenerate a key pair using the Elliptic Curve algorithmMapping to HSM 1
[0022] A specific Implementation example of the security manager function symmetricEncrypt is provided below in Tables 2 - 5 and a specific implementation example of the security manager function symmetricDecrypt is provided below in Tables 6 - 9.symmetricEncrypt
[0023] This function encrypts data with a symmetric key. Table 2: symmetricEncrypt Input: Parameter Description Mandatory / Optional Header / Url / Body Type callerIdentifierIdentifier of the caller systemOBStringhsmKeyAliasAlias of the key to use (if not provided a default one will be used)OBStringdataToEncryp tData to encrypt (hex encoded)MBString Table 3: symmetricEncrypt Output: Parameter Description Mandatory / Optional Type resultCodeThe Result code of the taskMStringerrorManagementObject identifying the errorO*ObjecterrorCodeCode that identifies error occurredMStringerrorDescriptionError descriptionMStringencryptedDataThe encrypted dataMString * included if resultCode is FAILED Table 4: symmetricEncrypt Results Result Code Result Description SUCCESSService executed successfullyFAILEDService execution failed Table 5: symmetricEncrypt Example Protocol RESTPath [IP:PORT] / cxf / securityManager / symmetricEncryptMethod POSTContent type application / jsonExample JSON request:{"calleridentifier": "bankA","hsmKeyAlias":"aeskey","dataToEncrypt": "33363231"}Example JSON response:{"baseResponse": {"result": "SUCCESS"}, "encryptedData":"C8BF4E043AFA5595D21F56E16DD15571"} symmetricDecrypt
[0024] This function decrypts data with a symmetric key. Table 6: symmetricDecrypt Input: Parameter Description Mandatory / Optional Header / Url / Body Type calleridentifierIdentifier of the caller systemOBStringhsmKeyAliasAlias of the symmetric key to use (if not provided a default one will be used)OBStringdataToDecryptData to decrypt (hex encoded)MBString Table 7: symmetricDecrypt Output: ParameterDescriptionMandatory / OptionalTyperesultCodeThe Result code of the taskMStringerrorManagementObject identifying the errorO*ObjecterrorCodeCode that identifies error occurredMStringerrorDescriptionError descriptionMStringdecrypted DataThe decrypted dataMString * included if resultCode is FAILED Table 8: symmetricDecrypt Results Result CodeResult DescriptionSUCCESSService executed successfullyFAILEDService execution failed Table 9: symmetricDecrypt Example Protocol RESTPath [IP:PORT] / cxf / securityManager / symmetricDecryptMethod POSTContent type application / jsonExample JSON request:{"callerIdentifier": "bankA","hsmKeyAlias":"aeskey","dataToDecrypt": "CBBF4E043AFA5595D21F56E16DD15571"}Example JSON response:{"baseResponse": {"result": "SUCCESS"},"decryptedData": 33363231}
[0025] The function transformations 306 implement a mapping from the security manager functions and corresponding objects to HSM specific requested security functions 308 defined in the HSM chosen or configured to perform the security manager function in question.
[0026] Figure 4 shows an implementation example 400 in which the HSM interface 402 defines a security circuitry API 404 that includes the five functions noted above. The HSM interface 402 further includes the API-to-API mapping 406. In this particular example, the API-to-API mapping 406 has implemented the symmetricDecrypt function transformation 408, the symmetricDecrypt function transformation 410, the applyDigitalSignature function transformation 412, the generateECKeyPair function transformation 414, and the verifyDigitalSignature function transformation 416. The function transformations 408 - 416 map each of the five functions available from security circuitry API 404 to HSM specific functions 418 defined for the particular HSM in use, in this case the HSM 420. Here, the API for the HSM 420 implements the functions called "aesEncryption" (used for both encryption and decryption), "applyDigitalSignature", "verifyDigitalSignature", and "generateEllipitcCurveKeyPair". As one specific example, an API call to the symmetricDecrypt function maps to the aesEncryption HSM API function. Table 10 summarizes the mapping from the security circuitry API 404 to the HSM 420 for this particular example. Table 10: Mapping for HSM 420 symmetricEncryptHSM specific function Package: com.comp.cpaas.dcpp.hsm.integration.nshieldObject: NShieldlnterfaceMethod: aesEncryptionsymmetricDecryptHSM specific function Package: com. comp.cpaas.dcpp.hsm.integration.nshieldObject: NShieldInterfaceMethod: aesEncryptionapplyDigitalSignatureHSM specific function Package: com. comp.cpaas.dcpp.hsm.integration.nshieldObject: NShieldInterfaceMethod: applyDigitalSignatureverifyDigitalSignatureHSM specific function Package: com. comp.cpaas.dcpp.hsm.integration.nshieldObject: NShieldInterfaceMethod: verifyDigitalSignaturegenerateECKeyPairHSM specific function Package: com. comp.cpaas.dcpo.hstn.integration.rishieldObject: NShieldInterfaceMethod: generateEllipticCurveKeyPair
[0027] Figure 5 shows another implementation example 500 In which the HSM interface 502 defines a security circuitry API 504 that also includes the five functions noted above. The HSM interface 502 includes the API-to-API mapping 506. In this particular example, the API-to-API mapping 506 has implemented the symmetricDecrypt function transformation 508 and the symmetricDecrypt function transformation 510. Note that the API-to-API mapping 506 need not provide a mapping for every function, and in this case no mapping is defined for the applyDigitialSignature function, the generateECKeyPair function, or the verifyDigitalSignature function. Calls to those functions may be unsupported, may return an error code, may be handled by software in the peer node, may be passed to other systems, or may be handled in other manners.
[0028] The function transformations 508 and 510 map two of the five functions available from security circuitry API 504 to HSM specific functions 518 defined in the particular HSM in use, in this case the HSM 520. Here, the API for the HSM 520 implements the functions called "encrypt" for symmetric encryption and "decrypt" for symmetric decryption. As one specific example, an API call to the symmetricEncrypt function maps to the "encrypt" HSM API function. Table 11 summarizes the mapping from the security circuitry API 504 to the HSM 520 for this particular example. Table 11: Mapping for HSM 520 symmetricEncryptHSM specific function Package: com.comp.cpaas.dcpp.enabler.securitymanager.manager.utilObject: KeyManagerMethod: encryptsymmetricDecryptHSM specific function Package: com.comp.cpaas.dcpp.enabler.securitymanager.manager.utilObject: KeyManagerMethod: decryptapplyDigitalSignatureHSM specific function NoneverifyDigitalSignatureHSM specific function NonegenerateECKeyPairHSM specific function None
[0029] Figure 6 shows a third implementation example 600 in which the HSM interface 602 defines a security circuitry API 604. As before, the security circuitry API 604 includes the five functions noted above. The HSM interface 602 includes the API-to-API mapping 606. In this particular example, the API-to-API mapping 606 has implemented the symmetricDecrypt function transformation 608 and the symmetricDecrypt function transformation 610.
[0030] The function transformations 608 and 610 map two of the five functions available from security circuitry API 604 to software. That is, in this example, the peer node will rely on software implemented security functions, and an HSM is not called to provide hardware execution of the security functions. To that end, the function transformations 608 and 610 specify a software function to execute in response to API calls to the symmetricDecrypt function: the "decryptSw" function, and a software function to execute in response to API calls to the symmetricEncrypt function: the "encryptSw" function.
[0031] Table 12 summarizes the mapping from the security circuitry API 604 to the HSM 620 for this particular example. Table 12: Mapping for HSM 620 symmetricEncryptHSM specific function Package: com.accenture.cpaas.dcpp.enabler.securitymanager.manager.utilObject: SecurityManagerMethod: encryptSwsymmetricDecryptHSM specific function Package: com.accenture.cpaas.dcpp.enabler.securitymanager.manager.utilObject: SecurityManagerMethod: decryptSwapplyDigitalSignatureHSM specific function NoneverifyDigitalSignatureHSM specific function NonegenerateECKeyPairHSM specific function None
[0032] Figure 7 shows a hybrid implementation example 700 of the HSM interface 702 implementing a security circuitry API 704. In this particular example, the API-to-API mapping 706 has implemented the symmetricDecrypt function transformation 708, the symmetricDecrypt function transformation 710, the applyDigitialSignature function transformation 712, the generateECKeyPair function transformation 714, and the verifyDigitalSignature function transformation 716. However, In this example, the API-to-API mapping 706 uses a mix of HSM and software functions to carry out the calls to the security circuitry API 704.
[0033] The function transformations 708, 710, and 714 map three of the five functions available from security circuitry API 704 to HSM specific functions 718 for the HSM 720. More specifically, the calls to symmetricDecrypt, symmetricEncrypt, and generateECKeyPair are mapped to their counterpart functions in the HSM 720. On the other hand, the function transformations 712 and 716 handle calls to apply or verify a digital signature by mapping the calls to software functions: sWapplyDigitalSignature and sWverifyDigitalSignature, respectively. Table 13 summarizes the mapping from the security circuitry API 704 to the HSM 720 for this particular example. Table 13: Mapping for HSM 720 symmetricEncryptHSM specific function Package: com.comp.cpaas.dcpp.hsm.integration.nshieldObject: NShieldinterfaceMethod: aesEncryptionsymmetricDecryptHSM specific function Package: com. comp.cpaas.dcpp.hsm.integration.nshieldObject: NShieldInterfaceMethod: aesEncryptionapplyDigitalSignatureHSM specific function Package: com.accenture.cpaas.dcpp.enabler.securitymanager.manager.utilObject: SecurityManagerMethod: sWapplyDigitalSignatureverifyDigitalSignatureHSM specific function Package: com.accenture.cpaas.dcpp.enabler.securitymanager.manager.utilObject: SecurityManagerMethod: sWverifyDigitalSignaturegenerateECKeyPairHSM specific function Package: com. comp.cpaas.dcpp.hsm.integration.nshieldObject: NShieldInterfaceMethod: generateEllipticCurveKeyPair
[0034] Figure 8 shows another implementation example 800 of the HSM interface 802 including the security circuitry API 804. In this example, the HSM interface 802 supports multiple HSMs 820 for a single peer node, e.g., the HSMs 1 through HSM 'n'. The HSMs may be the same or different HSMs, and may be provided for redundancy, load balancing, fault tolerance, or for other reasons. In support of the multiple HSMs 820, the HSM interface 802 defines multiple APl-to-API mappings 806, one for each unique HSM. Then, as the HSM interface 802 switches between different HSMs, the HSM interface 802 performs mappings according to the HSM in use at the time. In some implementations, configuration files 850 specify the API-to-API mappings for any pre-determined HSMs. The security controller circuitry may load one or more corresponding configuration files to define the API-to-API mappings to quickly and efficiently establish the mapping to whichever HSM the security controller circuitry will have assist with security functions.
[0035] Figure 9 shows logic 900 that a hardware accelerated transaction processing system may implement. A hardware transaction processing system receives, at an authentication interface, a transaction request and an enrollment certificate (902). The system verifies a sender account linked to the transaction request (904) and may return a verification error message if verification falls (906).
[0036] The system issues a decryption request to a hardware security module for hardware decryption of the sender account (908). To that end, security manager circuitry may receive a decryption request function call (910), map the function call to the HSM API (912), and transmit the HSM specific function call to the HSM (914). The security manager circuitry receives decrypted data for the sender account from the hardware security module (916), e.g., as a return value from the HSM specific API function call.
[0037] The security manager circuitry may then perform a data update on the decrypted data. For instance, the security manager circuitry may generate updated account data responsive to the transaction request, e.g., by debiting or crediting an account (918). Once updated, the system issues an encryption request to the hardware security module for hardware encryption of the updated sender account data (920). The encryption request may pass to the HSM through an API function call, for instance. As with decryption, the API may implement a pre-determined mapping to a method implemented by one or more different HSMs for encryption. That Is, the security manager circuitry receives an encryption request function call (922), translates the function call to the HSM API (924), and transmits the HSM specific function call to the HSM (926).
[0038] The system then adds the updated account data to a serialized encrypted transaction chain data structure. For instance, the system may issue a request for inclusion of the encrypted updated account data that reflects the transaction request in a block in the serialized encrypted transaction chain data structure (928). In one implementation, after consensus is reached (e.g., all nodes have the same copy of the data structure), the new transaction is handed out to all other bank nodes and is formally injected into the blockchain. The system may implement, for instance, the Practical Byzantine Fault Tolerance (PBFT) algorithm to provide increased speed and scalability to reach consensus in a private, permission blockchain system. After consensus has been reached and the transaction is included in the blockchain, a polling mechanism at the system and other like systems consistently checks for new blocks that have been added to the data structure (930).
[0039] The methods, devices, architectures, processing, circuitry, and logic described above may be implemented in many different ways and in many different combinations of hardware and software. For example, all or parts of the implementations may be circuitry that includes an instruction processor, such as a Central Processing Unit (CPU), microcontroller, or a microprocessor; or as an Application Specific Integrated Circuit (ASIC), Programmable Logic Device (PLD), or Field Programmable Gate Array (FPGA); or as circuitry that includes discrete logic or other circuit components, including analog circuit components, digital circuit components or both; or any combination thereof. The circuitry may include discrete interconnected hardware components or may be combined on a single integrated circuit die, distributed among multiple integrated circuit dies, or implemented in a Multiple Chip Module (MCM) of multiple integrated circuit dies in a common package, as examples.
[0040] Accordingly, the circuitry may store or access instructions for execution, or may implement its functionality in hardware alone. The instructions may be stored in a tangible storage medium that is other than a transitory signal, such as a flash memory, a Random Access Memory (RAM), a Read Only Memory (ROM), an Erasable Programmable Read Only Memory (EPROM); or on a magnetic or optical disc, such as a Compact Disc Read Only Memory (CDROM), Hard Disk Drive (HDD), or other magnetic or optical disk; or in or on another machine-readable medium. A product, such as a computer program product, may include a storage medium and Instructions stored in or on the medium, and the instructions when executed by the circuitry in a device may cause the device to implement any of the processing described above or illustrated in the drawings.
[0041] The implementations may be distributed. For instance, the circuitry may include multiple distinct system components, such as multiple processors and memories, and may span multiple distributed processing systems. Parameters, databases, and other data structures may be separately stored and managed, may be incorporated into a single memory or database, may be logically and physically organized in many different ways, and may be implemented in many different ways. Example implementations include linked lists, program variables, hash tables, arrays, records (e.g., database records), objects, and implicit storage mechanisms. Instructions may form parts (e.g., subroutines or other code sections) of a single program, may form multiple separate programs, may be distributed across multiple memories and processors, and may be implemented in many different ways. Example implementations include stand-alone programs, and as part of a library, such as a shared library like a Dynamic Link Library (DLL). The library, for example, may contain shared data and one or more shared programs that include instructions that perform any of the processing described above or Illustrated in the drawings, when executed by the circuitry.
[0042] Various implementations have been specifically described. However, many other implementations are also possible. For instance, any of the components and functionality in the architecture may be hosted in virtual machines managed by a cloud services provider. That is, while some implementations may be completely localized within a given enterprise, other implementations are completely migrated into the cloud, or are hybrid implementations with mixed local and cloud implementation. Regarding querying devices, the smartphones applications and desktop computers noted above are just particular examples, and other querying devices may be used, including hands-free systems in vehicles, digital personal assistants in smartphones or desktop PCs, hands-free control systems for the home, and many other types of devices.
Claims
1. A computer-implemented method for providing hardware security support for software processes that support blockchains, comprising: receiving (902), at an authentication system (112) of a hardware transaction processing system, a transaction request and an enrollment certificate; verifying (904) a sender account linked to the transaction request based upon a private key of the authentication system, wherein the private key is a counterpart of a public key being associated with the enrollment certificate; issuing (908) a first decryption request to a hardware security module, HSM, that supports a peer node for the sender account for hardware decryption of the sender account; issuing a second decryption request to an HSM that supports a peer node for the receiver account for hardware decryption of the receiver account; receiving (910), by a security manager circuitry, a decryption request function call; responsively invoking, by the security manager circuitry, processing chaincode that support an implementation of a data storage layer for each of the peer nodes, wherein the chaincode updates the balances of two accounts including the sender account and the receiver account in the data storage layer in order to transfer value between the accounts, wherein each of the accounts includes an URL for a corresponding peer node of the account, wherein each of the accounts is encrypted with peer node keys for the corresponding peer node of the account and cannot be decrypted by keys of another peer node; mapping (912) the decryption request function call to an API of the HSM that supports the peer node for the sender account; transmitting (914) the HSM specific function call to the HSM that supports the peer node for the sender account; wherein the decrypted data for the sender account is received by the security manager circuitry; receiving (916) decrypted data for the sender account from the HSM that supports the peer node for the sender account; receiving decrypted data for the receiver account from the HSM that supports the peer node for the receiver account; updating (918) the decrypted data for the sender account and the receiver account; issuing (920) an encryption request to the HSM that supports the peer node for the sender account for hardware encryption of the updated data for the sender account; issuing an encryption request to the HSM that supports the peer node for the receiver account for hardware encryption of the updated data for the receiver account; adding (928) the updated data for the sender account and the updated data for the receiver account to a serialized, encrypted blockchain.
2. The method of claim 1, further comprising: returning (906) a verification error message if verifying the sender account fails.
3. The method of claim 1, wherein the security manager circuitry updates the decrypted data.
4. The method of claim 1 or 3, further comprising: receiving (922), by the security manager circuitry, an encryption request function call; mapping (924) the encryption request function call to the HSM API; transmitting (926) an HSM specific function call to the HSM that supports the peer node for the sender account based on the mapping of the encryption request function call to the HSM API.
5. The method of any one of claims 1 to 4, wherein the HSM that supports the peer node for the sender account includes an HSM interface.
6. The method of claim 5, further comprising: loading a configuration file that defines the API-to-API mapping for the encryption request function and the API-to-API mapping for the decryption request function.
7. The method of any one of the preceding claims, wherein decryption and encryption of the sender account are carried out using symmetric cryptography, with all keys remaining in the HSM that supports the peer node for the sender account.
8. The method of any one of the preceding claims, wherein chaincode implemented to support the blockchain issues the encryption request to the HSM that supports the peer node for the sender account, wherein the method further comprises returning encryption results to the chaincode.
9. The method of any one of the preceding claims, wherein receiving (902) the transaction request and the enrollment certificate at the authentication system comprises receiving the transaction request and the enrollment certificate at the peer node and, based on the transaction request, sending request to the authentication system.
10. A computer program product comprising a storage medium storing instructions, which when executed by circuitry in a device, cause the device to implement processing according to any one of the preceding claims.
11. A hardware transaction processing system for providing hardware security support for software processes that support blockchains, comprising: an authentication system configured to: receive a transaction request and an enrollment certificate; verify a sender account linked to the transaction request based upon a private key of the authentication system, wherein the private key is a counterpart of a public key being associated with the enrollment certificate; issue a first decryption request to a hardware security module HSM that supports a peer node for the sender account for hardware description of the sender account; issue a second decryption request to an HSM that supports a peer node for the receiver account for hardware description of the receiver account; receiving (910), by a security manager circuitry, a decryption request function call; responsively invoking, by the security manager circuitry, processing chaincode that support an implementation of a data storage layer for each of the peer nodes, wherein the chaincode updates the balances of two accounts including the sender account and the receiver account in the data storage layer in order to transfer value between the accounts, wherein each of the accounts includes an URL for a corresponding peer node of the account, wherein each of the accounts is encrypted with peer node keys for the corresponding peer node of the account and cannot be decrypted by keys of another peer node; mapping (912) the decryption request function call to an API of the HSM that supports the peer node for the sender account; transmitting (914) the HSM specific function call to the HSM that supports the peer node for the sender account; wherein the decrypted data for the sender account is received by the security manager circuitry; receive decrypted data for the sender account from the HSM that supports the peer node for the sender account; update the decrypted data for the sender account and the receiver account; issue an encryption request to the HSM that supports the peer node for the sender account for hardware encryption of the updated data for the sender account; issue an encryption request to the HSM that supports the peer node for the receiver account for hardware encryption of the updated data for the receiver account; add the updated data for the sender account and the updated data for the receiver account to a serialized, encrypted blockchain.