WO2010094685A1 - System and method for efficient trust preservation in data stores - Google Patents
System and method for efficient trust preservation in data stores Download PDFInfo
- Publication number
- WO2010094685A1 WO2010094685A1 PCT/EP2010/051931 EP2010051931W WO2010094685A1 WO 2010094685 A1 WO2010094685 A1 WO 2010094685A1 EP 2010051931 W EP2010051931 W EP 2010051931W WO 2010094685 A1 WO2010094685 A1 WO 2010094685A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- data
- root
- tcb
- hash
- trustworthiness
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Ceased
Links
Classifications
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F21/00—Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
- G06F21/50—Monitoring users, programs or devices to maintain the integrity of platforms, e.g. of processors, firmware or operating systems
- G06F21/57—Certifying or maintaining trusted computer platforms, e.g. secure boots or power-downs, version controls, system software checks, secure updates or assessing vulnerabilities
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F21/00—Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
- G06F21/60—Protecting data
- G06F21/64—Protecting data integrity, e.g. using checksums, certificates or signatures
- G06F21/645—Protecting data integrity, e.g. using checksums, certificates or signatures using a third party
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L63/00—Network architectures or network communication protocols for network security
- H04L63/12—Applying verification of the received information
- H04L63/123—Applying verification of the received information received data contents, e.g. message integrity
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L9/00—Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols
- H04L9/008—Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols involving homomorphic encryption
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L9/00—Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols
- H04L9/32—Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols including means for verifying the identity or authority of a user of the system or for message authentication, e.g. authorization, entity authentication, data integrity or data verification, non-repudiation, key authentication or verification of credentials
- H04L9/3236—Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols including means for verifying the identity or authority of a user of the system or for message authentication, e.g. authorization, entity authentication, data integrity or data verification, non-repudiation, key authentication or verification of credentials using cryptographic hash functions
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F2221/00—Indexing scheme relating to security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
- G06F2221/21—Indexing scheme relating to G06F21/00 and subgroups addressing additional information or applications relating to security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
- G06F2221/2105—Dual mode as a secondary aspect
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F2221/00—Indexing scheme relating to security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
- G06F2221/21—Indexing scheme relating to G06F21/00 and subgroups addressing additional information or applications relating to security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
- G06F2221/2145—Inheriting rights or properties, e.g., propagation of permissions or restrictions within a hierarchy
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L2209/00—Additional information or applications relating to cryptographic mechanisms or cryptographic arrangements for secret or secure communication H04L9/00
- H04L2209/30—Compression, e.g. Merkle-Damgard construction
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L2209/00—Additional information or applications relating to cryptographic mechanisms or cryptographic arrangements for secret or secure communication H04L9/00
- H04L2209/60—Digital content management, e.g. content distribution
Definitions
- the present invention relates generally to data authentication, and in particular, to storing data on an untrusted machine and preserving the trustworthiness efficiently by minimizing the resource usage on a trusted computing base.
- Vendors have provided a number of WORM (Write-Once Read-Many) solutions to help manage data.
- WORM Write-Once Read-Many
- Earlier versions rely on physical WORM media, such as CD-R and optical- magnetic technology. Due to performance and cost considerations, they have been replaced by recent WORM offerings which use standard rewritable hard drives but enforce the WORM properties through software.
- the protection offered by these systems is often limited, especially in the regulatory compliance environment where chances for insider attacks are quite high.
- Previous high-profile industry scandals have shown that the ones who are motivated to tamper with existing data are often high level executives trying to erase evidence or cover up their wrongdoings. Not only do they have physical and administrative access to the data systems, the high stakes involved provide incentives for launching sophisticated and resourceful attacks.
- Preserving the trustworthiness of fixed-content data records is typically straight-forward.
- One simple approach is to compute a secure one-way hash of the content and attributes of the data record, and have the trusted computing base (TCB) sign it using its private key, for example, Sign( H(data), H(metadata), timestamp).
- TDB trusted computing base
- the metadata typically includes some retention attributes that specifies when the object will expire so the signature can be used to verify whether the object is deleted legitimately. If we want to minimize the information that needs to be maintained after an object is removed, the signature can be slightly modified to be: Sign( H(data), H(metadata - retention attr), retention attr, timestamp).
- Better efficiency can be achieved by grouping hashes of newly created data records together and have the TCB generate one signature for the whole batch.
- Metadata structure such as directories and search indexes.
- these meta-data structures need to be updated frequently as data objects are inserted or removed. This introduces additional vulnerability since now instead of tampering with the data directly, an adversary could also tamper with the metadata structure to hide information or point the auditor in the wrong direction.
- Recent research works have proposed efficient append-only metadata structures that are suitable to be stored on WORM storage.
- the dynamic nature of metadata structures makes it much more challenging to preserve their trustworthiness efficiently.
- a simple example of an append-only data structure is an audit log which is organized based on file IDs (or file names). The whole log can be divided into many append-only segments, one for each file.
- a common type of query for audit logs in regulatory compliance environments is to retrieve all the log entries corresponding to a specified file. To meet the integrity to completeness requirements in such a query, we need to be able to prove the number of log entries contained is correct and up-to-date, and the integrity of each log entry.
- the number of hashes required by such metadata structures would far exceed the capacity of the secure storage inside the TCB and therefore would have to be stored on the main system which is untrusted.
- the TCB could encrypt or sign these hashes to prevent them from being tampered with.
- the TCB would be presented with the current content of the page, the current signature and the update.
- the TCB would then verify that the content matches the signature and the update, and would then verify that the update is legitimate.
- this does not prevent an adversary from launching a "replay" attack by submitting an earlier version of the page content/signature with an update, effectively hiding existing data. Therefore, although the TCB does not have room to store individual state information for each page, it has to somehow "remember" the current version of each page.
- a conventional approach to authenticate a large dynamic data structure is to use a Merkle hash tree.
- the Merkle hash tree is a binary tree, where each leaf of the tree contains the hash of a data value, and each internal node of the tree contains the hash of its two children.
- the verification of data values is based on the fact that the root of the Merkle hash tree is authenticated either through a trusted party or a digital signature.
- the prover has to send the verifier the data value itself together with values stored in the siblings of nodes on the path from the data value to the root of the Merkle tree.
- the verifier can iteratively compute the hash values of nodes on the path from the data value to the root.
- the verifier can then check if the computer root value matches the authenticated root value.
- the security of the Merkle tree is based on the collision resistance of the hash function; an adversary who can successfully authenticate a bogus data value must have a hash collision in at least one node on the path from the data value to the root.
- the TCB only needs to maintain the root of the tree in its secure memory. The price for solving the storage problem, however, is higher computation and communication overhead for the TCB.
- the amount of computation and the size of the verification object (VO) is now log(N), where N is the total number of pages. In a large archive system with high object ingestion rate and where each object insertion could trigger a number of metadata updates (e.g., full-text indexes), the TCB could easily be overwhelmed.
- the invention provides a method and system for preserving trustworthiness of data, the method includes storing data on an untrusted system, and committing the data to a trusted computing base (TCB).
- the committing includes upon an end of a predetermined time interval, transmitting a constant size authentication data from the untrusted system to the TLB.
- TCB TCB
- TCB TCB
- the TCB preserving trustworthiness of the authentication data based on performing a single hash operation of a first root and a second root of a general hash tree representing authenticated data.
- Another embodiment involves a system for preserving trustworthiness of data.
- the system comprising: at least one untrusted module configured to store data, and a trusted computing base (TCB) module coupled to the untrusted module.
- the TCB configured to authenticate the data, wherein upon an end of a predetermined time interval, the untrusted module transmits a constant size authentication data to the TCB for commitment, and the TCB preserves trustworthiness of the authentication data based on performing a single hash operation of a first root and a second root of a general hash tree representing authenticated data.
- Yet another embodiment involves a computer program product for preserving trustworthiness of data that causes a computer to store data on an untrusted system, and commit the data to a trusted computing base (TCB).
- the commit further causes the computer to: upon an end of a predetermined time interval, transmit constant size authentication data from the untrusted system to the TCB, and the TCB preserves trustworthiness of the authentication data based on performing a single hash operation of a first root and a second root of a general hash tree representing authenticated data.
- the present invention provides a method for preserving trustworthiness of data, the method comprising: storing data on an untrusted system; and committing the data to a trusted computing base (TCB), wherein said committing comprises: upon an end of a predetermined time interval, transmitting a constant size authentication data from the untrusted system to the TCB; and the TCB preserving trustworthiness of the authentication data based on performing a single hash operation of a first root and a second root of a general hash tree representing authenticated data.
- the present invention provides a method wherein the committing comprises computing a third root of the general hash tree based on the hash of the first root and the second root.
- the present invention provides a method wherein the committing further comprises generating the third root and comparing the third root with a computed root value.
- the present invention provides a method wherein the hash tree including a plurality of leaves each storing information relating to a corresponding metadata page.
- the present invention provides a method wherein each internal node of the tree is computed as a hash of its children nodes.
- the present invention provides a method wherein different hash functions are applied at different internal nodes.
- the present invention provides a method wherein the different hash functions belong to a homomorphic hashing family.
- the present invention provides a method further comprising: computing a tag value and an exponent value for each internal node.
- the present invention provides a method wherein the tag value is a product of tag values of the tag's two children, and the exponent value is the tag value of the node's sibling.
- the present invention provides a system for preserving trustworthiness of data, comprising: at least one untrusted module configured to store data; and a trusted computing base (TCB) module coupled to the untrusted module, the TCB configured to authenticate the data, wherein upon an end of a predetermined time interval, the untrusted module transmits a constant size authentication data to the TCB for commitment, and the TCB preserves trustworthiness of the authentication data based on performing a single hash operation of a first root and a second root of a general hash tree representing authenticated data.
- TDB trusted computing base
- the present invention provides a system wherein the TCB preserves trustworthiness by further computing a third root of the general hash tree based on the hash of the first root and the second root.
- the present invention provides a system wherein each internal node of the tree is computed as a hash of its children nodes.
- the present invention provides a system wherein different hash functions are applied at different internal nodes.
- the present invention provides a system wherein the different hash functions belong to a homomorphic hashing family.
- the present invention provides a system further comprising: a distributed network including a plurality of untrusted module sub-systems, wherein the TCB module is further configured to preserve trustworthiness of data stored on each untrusted module sub-system.
- the present invention provides a computer program product for preserving trustworthiness of data comprising a computer usable medium including a computer readable program, wherein the computer readable program when executed on a computer causes the computer to: store data on an untrusted system; and commit the data to a trusted computing base (TCB), wherein said commit further causes the computer to: upon an end of a predetermined time interval, transmit constant size authentication data from the untrusted system to the TCB; and the TCB preserves trustworthiness of the authentication data based on performing a single hash operation of a first root and a second root of a general hash tree representing authenticated data.
- the present invention provides a computer program product wherein the TCB verifies trustworthiness by comparing a third root of the general hash tree with a computed root value.
- the present invention provides a computer program product wherein different hash functions are applied at different internal nodes of the general hash tree.
- the present invention provides a computer program product wherein each internal node of the tree is computed as a hash of its children nodes, and different hash functions are applied at different internal nodes.
- the present invention provides a computer program product wherein the different hash functions belong to a homomorphic hashing family.
- FIG. 1 illustrates a trusted system according to one embodiment of the invention
- FIG. 2 illustrates a distributed trusted system according to an embodiment of the invention
- FIG. 3 illustrates a general tree structure for representing authenticated data according to an embodiment of the invention.
- FIG. 4 illustrates a block diagram of a process for authenticating data according to an embodiment of the invention. DESCRIPTION OF THE PREFERRED EMBODIMENTS
- the description may disclose several preferred embodiments for preserving trustworthiness of data while reducing the computations required by a trusted computing base, as well as operation and/or component parts thereof. While the following description will be described in terms of authentication of data and devices for clarity and to place the invention in context, it should be kept in mind that the teachings herein may have broad application to all types of systems, devices and applications.
- the invention provides a method and system for preserving trustworthiness of data, the method includes storing data on an untrusted system, and committing the data to a trusted computing base (TCB).
- the committing includes, upon an end of a predetermined time interval, transmitting a constant size authentication data from the untrusted system to the TCB, and the TCB preserving trustworthiness of the authentication data based on performing a single hash operation of a first root and a second root of a general hash tree representing authenticated data.
- FIG. 1 illustrates a system 100 including a separate Trusted Computing Base (TCB) 110 and an untrusted system module 120.
- System 100 reduces the storage, computation and communication overhead on the TCB 110 as ⁇ ( ⁇ ) (having a single operation overhead).
- ⁇ ( ⁇ ) having a single operation overhead
- ⁇ m • log N ⁇ m • log N
- a general hash tree (GHT) is used as an authenticated data structure (shown in FIG. 3) on TCB 110.
- the total number of pages in the metadata structure is represented as N (in FIG.
- N 4
- Each internal node of the GHT is computed as the hash of its two children nodes.
- different hash functions are applied at different internal nodes in the GHT according to one embodiment.
- the value of an internal node is represented as y . . and the hash function for
- the hash functions used for computing the internal nodes belong to a homomorphic hashing family [H) that satisfies the following homomorphic property:
- a homomorphic hash function based on the Rivest-Shamir algorithm (RSA) assumption where n is the RSA modulus. It is straight-forward to prove that such a hashing family satisfies the above homomorphic property.
- a tag value and an exponent value are defined for each node in the GHT.
- the tag value of an internal node is defined as the product of the tag values of its two children.
- the exponent value of a node is defined as the tag value of its sibling.
- the tag values of Vi and V 2 are ei and 62 respectively, and the tag value for Vn is eie2.
- the exponent values of Vi and V2 are 62 and ei respectively, and the exponent value of Vi 2 is e ⁇ .
- Next, /; is defined as the exponent value of y . . 's
- the exponents of the siblings of nodes on the path from the leaf Vi to the root are defined as Ei, E 2 , ..., E M , respectively.
- the greatest common denominator (gcd) gcd (E 1, E 2 , ..., Eu) e t .
- n(i) denote the number of data blocks relating to the z-th metadata page up to the end of an interval and that data entries are D 1 I, D 12 , ..., D 1n ⁇ .
- V 1 The value stored at the z-th leaf is V 1 , which is computed as
- the untrusted system module 120 needs to submit only a constant size of authentication data to the TCB 110 at the end of each interval.
- Vi h(di)
- V 2 h(d 2 ).
- the new parent is computed as:
- the new root R t+ i is computed based on the old root R t and the root r t of a new GHT, where the leaves are the hashes of the new log entries.
- the work of computing r t is handled by the untrusted system module 120.
- the untrusted system module 120 computes r t and transmits to the TCB 110.
- the TCB 110 then removes the old root R t and stores the new
- the construction of the verification object (VO) is similar to that in the Merkle tree.
- the untrusted system module 120 returns the siblings of all nodes on the path from V 1 to the root, together with the data relating to the z-th metadata page.
- a verifier in the untrusted system module 120 can reconstruct the general hash tree and compute the root of the general hash tree. The verifier can then obtain the value of the root obtained from the TCB 110 and compare it with the computed root value. The verifier accepts if and only if these two values match.
- Table I shows the complexity of one embodiment (in the "our app.” row) compared with that of the Merkle tree based approach (in the "MT app.” row), assuming that updates can be batched and the number of updates in a batch is m, the total number of pages in the data structure is N.
- the verification time and VO size refer to the computation and communication overhead for verifying the correctness of a single page.
- FIG. 2 illustrates a distributed system 200 according to one embodiment.
- the system 200 is a distributed network, including a plurality of untrusted system modules 1 210 to N 220, and a TCB 110 that authenticates data on all untrusted system modules in system 200.
- FIG. 4 illustrates a block diagram of an authentication process 400.
- Process 400 begins with block 410 where data is first stored on an untrusted system module, such as system module 120.
- authentication data is transmitted to a TCB, such as TCB 110.
- a commit operation (as described above) is performed for the authentication data between an untrusted system module and a TCB, such as TCB 110. Therefore data and metadata are stored and the trustworthiness is preserved efficiently by minimizing the resource usage on the TCB. In this embodiment, most of the computations are handled by the untrusted system module.
- the embodiments of the invention can take the form of an entirely hardware embodiment, an entirely software embodiment or an embodiment containing both hardware and software elements.
- the invention is implemented in software, which includes but is not limited to firmware, resident software, microcode, etc.
- the embodiments of the invention can take the form of a computer program product accessible from a computer-usable or computer-readable medium providing program code for use by or in connection with a computer, processing device, or any instruction execution system.
- a computer-usable or computer readable medium can be any apparatus that can contain, store, communicate, or transport the program for use by or in connection with the instruction execution system, apparatus, or device.
- the medium can be electronic, magnetic, optical, or a semiconductor system (or apparatus or device).
- Examples of a computer-readable medium include, but are not limited to, a semiconductor or solid state memory, magnetic tape, a removable computer diskette, a
- RAM random access memory
- ROM read-only memory
- rigid magnetic disk a magnetic disk
- optical disk etc.
- Current examples of optical disks include compact disk-read only memory (CD-ROM), compact disk-read/write (CD-R/W) and DVD.
- I/O devices can be connected to the system either directly or through intervening controllers.
- Network adapters may also be connected to the system to enable the data processing system to become connected to other data processing systems or remote printers or storage devices through intervening private or public networks. Modems, cable modem and Ethernet cards are just a few of the currently available types of network adapters.
Landscapes
- Engineering & Computer Science (AREA)
- Computer Security & Cryptography (AREA)
- Computer Hardware Design (AREA)
- General Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Signal Processing (AREA)
- Software Systems (AREA)
- Computer Networks & Wireless Communication (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Computing Systems (AREA)
- Health & Medical Sciences (AREA)
- Bioethics (AREA)
- General Health & Medical Sciences (AREA)
- Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
- Storage Device Security (AREA)
Abstract
The invention provides a method and system for preserving trustworthiness of data, the method includes storing data on an untrusted system, and committing the data to a trusted computing base (TCB). The committing includes upon an end of a predetermined time interval, transmitting a constant size authentication data from the untrusted system to the TCB, and the TCB preserving trustworthiness of the authentication data based on performing a single hash operation of a first root and a second root of a general hash tree representing authenticated data.
Description
SYSTEM AND METHOD FOR EFFICIENT TRUST PRESERVATION IN DATA STORES
BACKGROUND OF THE INVENTION
Field of the Invention
The present invention relates generally to data authentication, and in particular, to storing data on an untrusted machine and preserving the trustworthiness efficiently by minimizing the resource usage on a trusted computing base.
Background Information
Today's information is increasingly stored electronically. While digital data records are easy to store and convenient to retrieve, they are also relatively easy to be tampered with without being detected. Given the amount of critical information stored in digital form, the importance of ensuring that such information is trustworthy and credible can never be overestimated. One area where being able to preserve and verify the trustworthiness is of particular importance is regulatory compliance. As the number and scope of recordkeeping regulations such as SEC rule 17-4a and HIPAA (Health Insurance Portability and
Accountability Act) grow, today's businesses are facing a higher degree of regulation and accountability than ever. Failure to comply with such regulations could result in hefty fines and jail sentences.
Vendors have provided a number of WORM (Write-Once Read-Many) solutions to help manage data. Earlier versions rely on physical WORM media, such as CD-R and optical- magnetic technology. Due to performance and cost considerations, they have been replaced by recent WORM offerings which use standard rewritable hard drives but enforce the WORM properties through software. However, the protection offered by these systems is often limited, especially in the regulatory compliance environment where chances for insider attacks are quite high. Previous high-profile industry scandals have shown that the ones who are motivated to tamper with existing data are often high level executives trying to erase
evidence or cover up their wrongdoings. Not only do they have physical and administrative access to the data systems, the high stakes involved provide incentives for launching sophisticated and resourceful attacks.
Existing solutions are not secure because: (1) software protection is based on the assumption that the adversary can not break into the system, and securing a large/complicated software system is difficult; (2) having physical access means that the attacker may access the storage device directly, bypassing all the protection mechanisms; (3) data migration, which is needed in cases such as upgrading to new systems or disaster recovery, may create windows of vulnerability; (4) solutions based on CAS (Content Addressed Storage) technology are simply pushing the problem to a higher level since the CAS are often managed by untrusted systems; (5) existing solutions focus on protecting reference data, but not metadata structures, and (6) even if the systems are secure, they do not provide a means for an auditor to verify the correctness of data, therefore unless the auditor has direct access to the data system, which is often not the case, the result produced by a query could be altered before it reaches the requester.
Preserving the trustworthiness of fixed-content data records is typically straight-forward. One simple approach is to compute a secure one-way hash of the content and attributes of the data record, and have the trusted computing base (TCB) sign it using its private key, for example, Sign( H(data), H(metadata), timestamp). Such a signature can then be used later to verify the integrity of the data record and its creation time. For regulatory compliance, the metadata typically includes some retention attributes that specifies when the object will expire so the signature can be used to verify whether the object is deleted legitimately. If we want to minimize the information that needs to be maintained after an object is removed, the signature can be slightly modified to be: Sign( H(data), H(metadata - retention attr), retention attr, timestamp). Better efficiency can be achieved by grouping hashes of newly created data records together and have the TCB generate one signature for the whole batch.
However, given the huge amount of data in today's information systems, data are typically accessed through some form of metadata structure such as directories and search indexes. Unlike fixed-content data objects, these meta-data structures need to be updated frequently
as data objects are inserted or removed. This introduces additional vulnerability since now instead of tampering with the data directly, an adversary could also tamper with the metadata structure to hide information or point the auditor in the wrong direction. Recent research works have proposed efficient append-only metadata structures that are suitable to be stored on WORM storage. However, the dynamic nature of metadata structures makes it much more challenging to preserve their trustworthiness efficiently. Simply computing a one-way hash for the whole metadata structure would be prohibitively expensive as each update has to be verified by the TCB (unlike with fixed-content objects, the TCB cannot blindly sign or store a new hash for a dynamic metadata structure without verifying the legitimacy of the update).
A simple example of an append-only data structure is an audit log which is organized based on file IDs (or file names). The whole log can be divided into many append-only segments, one for each file. A common type of query for audit logs in regulatory compliance environments is to retrieve all the log entries corresponding to a specified file. To meet the integrity to completeness requirements in such a query, we need to be able to prove the number of log entries contained is correct and up-to-date, and the integrity of each log entry.
Using an append-only data structure such as the ones mentioned above, we can break down a metadata structure into many small pieces (called pages), each being append-only. While this allows the TCB to more efficiently verify whether an update on an individual piece is valid by checking whether the update overwrites any existing data in the page by maintaining a separate hash for each unit, this approach is not storage-efficient for the TCB.
Given the size of today's data set, the number of hashes required by such metadata structures would far exceed the capacity of the secure storage inside the TCB and therefore would have to be stored on the main system which is untrusted. The TCB could encrypt or sign these hashes to prevent them from being tampered with. During each update, the TCB would be presented with the current content of the page, the current signature and the update. The TCB would then verify that the content matches the signature and the update, and would then verify that the update is legitimate. However, this does not prevent an adversary from launching a "replay" attack by submitting an earlier version of the page content/signature
with an update, effectively hiding existing data. Therefore, although the TCB does not have room to store individual state information for each page, it has to somehow "remember" the current version of each page.
A conventional approach to authenticate a large dynamic data structure is to use a Merkle hash tree. The Merkle hash tree is a binary tree, where each leaf of the tree contains the hash of a data value, and each internal node of the tree contains the hash of its two children. The verification of data values is based on the fact that the root of the Merkle hash tree is authenticated either through a trusted party or a digital signature. To verify the authenticity of a data value, the prover has to send the verifier the data value itself together with values stored in the siblings of nodes on the path from the data value to the root of the Merkle tree. The verifier can iteratively compute the hash values of nodes on the path from the data value to the root. The verifier can then check if the computer root value matches the authenticated root value. The security of the Merkle tree is based on the collision resistance of the hash function; an adversary who can successfully authenticate a bogus data value must have a hash collision in at least one node on the path from the data value to the root. Using a Merkle tree, the TCB only needs to maintain the root of the tree in its secure memory. The price for solving the storage problem, however, is higher computation and communication overhead for the TCB. Now for each page update, the amount of computation and the size of the verification object (VO) is now log(N), where N is the total number of pages. In a large archive system with high object ingestion rate and where each object insertion could trigger a number of metadata updates (e.g., full-text indexes), the TCB could easily be overwhelmed.
SUMMARY OF THE INVENTION
The invention provides a method and system for preserving trustworthiness of data, the method includes storing data on an untrusted system, and committing the data to a trusted computing base (TCB). The committing includes upon an end of a predetermined time interval, transmitting a constant size authentication data from the untrusted system to the
TCB, and the TCB preserving trustworthiness of the authentication data based on performing
a single hash operation of a first root and a second root of a general hash tree representing authenticated data.
Another embodiment involves a system for preserving trustworthiness of data. The system comprising: at least one untrusted module configured to store data, and a trusted computing base (TCB) module coupled to the untrusted module. The TCB configured to authenticate the data, wherein upon an end of a predetermined time interval, the untrusted module transmits a constant size authentication data to the TCB for commitment, and the TCB preserves trustworthiness of the authentication data based on performing a single hash operation of a first root and a second root of a general hash tree representing authenticated data.
Yet another embodiment involves a computer program product for preserving trustworthiness of data that causes a computer to store data on an untrusted system, and commit the data to a trusted computing base (TCB). The commit further causes the computer to: upon an end of a predetermined time interval, transmit constant size authentication data from the untrusted system to the TCB, and the TCB preserves trustworthiness of the authentication data based on performing a single hash operation of a first root and a second root of a general hash tree representing authenticated data.
Other aspects and advantages of the present invention will become apparent from the following detailed description, which, when taken in conjunction with the drawings, illustrate by way of example the principles of the invention.
Viewed from a first aspect, the present invention provides a method for preserving trustworthiness of data, the method comprising: storing data on an untrusted system; and committing the data to a trusted computing base (TCB), wherein said committing comprises: upon an end of a predetermined time interval, transmitting a constant size authentication data from the untrusted system to the TCB; and the TCB preserving trustworthiness of the authentication data based on performing a single hash operation of a first root and a second root of a general hash tree representing authenticated data.
Preferably, the present invention provides a method wherein the committing comprises computing a third root of the general hash tree based on the hash of the first root and the second root.
Preferably, the present invention provides a method wherein the committing further comprises generating the third root and comparing the third root with a computed root value.
Preferably, the present invention provides a method wherein the hash tree including a plurality of leaves each storing information relating to a corresponding metadata page.
Preferably, the present invention provides a method wherein each internal node of the tree is computed as a hash of its children nodes.
Preferably, the present invention provides a method wherein different hash functions are applied at different internal nodes.
Preferably, the present invention provides a method wherein the different hash functions belong to a homomorphic hashing family.
Preferably, the present invention provides a method further comprising: computing a tag value and an exponent value for each internal node.
Preferably, the present invention provides a method wherein the tag value is a product of tag values of the tag's two children, and the exponent value is the tag value of the node's sibling.
Viewed from another aspect, the present invention provides a system for preserving trustworthiness of data, comprising: at least one untrusted module configured to store data; and a trusted computing base (TCB) module coupled to the untrusted module, the TCB configured to authenticate the data, wherein upon an end of a predetermined time interval, the untrusted module transmits a constant size authentication data to the TCB for commitment, and the TCB preserves trustworthiness of the authentication data based on
performing a single hash operation of a first root and a second root of a general hash tree representing authenticated data.
Preferably, the present invention provides a system wherein the TCB preserves trustworthiness by further computing a third root of the general hash tree based on the hash of the first root and the second root.
Preferably, the present invention provides a system wherein each internal node of the tree is computed as a hash of its children nodes.
Preferably, the present invention provides a system wherein different hash functions are applied at different internal nodes.
Preferably, the present invention provides a system wherein the different hash functions belong to a homomorphic hashing family.
Preferably, the present invention provides a system further comprising: a distributed network including a plurality of untrusted module sub-systems, wherein the TCB module is further configured to preserve trustworthiness of data stored on each untrusted module sub-system.
Viewed from another aspect, the present invention provides a computer program product for preserving trustworthiness of data comprising a computer usable medium including a computer readable program, wherein the computer readable program when executed on a computer causes the computer to: store data on an untrusted system; and commit the data to a trusted computing base (TCB), wherein said commit further causes the computer to: upon an end of a predetermined time interval, transmit constant size authentication data from the untrusted system to the TCB; and the TCB preserves trustworthiness of the authentication data based on performing a single hash operation of a first root and a second root of a general hash tree representing authenticated data.
Preferably, the present invention provides a computer program product wherein the TCB verifies trustworthiness by comparing a third root of the general hash tree with a computed root value.
Preferably, the present invention provides a computer program product wherein different hash functions are applied at different internal nodes of the general hash tree.
Preferably, the present invention provides a computer program product wherein each internal node of the tree is computed as a hash of its children nodes, and different hash functions are applied at different internal nodes.
Preferably, the present invention provides a computer program product wherein the different hash functions belong to a homomorphic hashing family.
BRIEF DESCRIPTION OF THE DRAWINGS
For a fuller understanding of the nature and advantages of the invention, as well as a preferred mode of use, reference should be made to the following detailed description read in conjunction with the accompanying drawings, in which:
FIG. 1 illustrates a trusted system according to one embodiment of the invention;
FIG. 2 illustrates a distributed trusted system according to an embodiment of the invention;
FIG. 3 illustrates a general tree structure for representing authenticated data according to an embodiment of the invention; and
FIG. 4 illustrates a block diagram of a process for authenticating data according to an embodiment of the invention.
DESCRIPTION OF THE PREFERRED EMBODIMENTS
The following description is made for the purpose of illustrating the general principles of the invention and is not meant to limit the inventive concepts claimed herein. Further, particular features described herein can be used in combination with other described features in each of the various possible combinations and permutations. Unless otherwise specifically defined herein, all terms are to be given their broadest possible interpretation including meanings implied from the specification as well as meanings understood by those skilled in the art and/or as defined in dictionaries, treatises, etc.
The description may disclose several preferred embodiments for preserving trustworthiness of data while reducing the computations required by a trusted computing base, as well as operation and/or component parts thereof. While the following description will be described in terms of authentication of data and devices for clarity and to place the invention in context, it should be kept in mind that the teachings herein may have broad application to all types of systems, devices and applications.
The invention provides a method and system for preserving trustworthiness of data, the method includes storing data on an untrusted system, and committing the data to a trusted computing base (TCB). The committing includes, upon an end of a predetermined time interval, transmitting a constant size authentication data from the untrusted system to the TCB, and the TCB preserving trustworthiness of the authentication data based on performing a single hash operation of a first root and a second root of a general hash tree representing authenticated data.
FIG. 1 illustrates a system 100 including a separate Trusted Computing Base (TCB) 110 and an untrusted system module 120. System 100 reduces the storage, computation and communication overhead on the TCB 110 as θ(\) (having a single operation overhead). Assuming that there are m updates to N unique metadata pages in a batch (multiple updates to the same page within a batch can be combined as one), where a straight-forward Merkle tree approach incurs computation and communication overhead of θ{m • log N)on the TCB 110.
In one embodiment, a general hash tree (GHT) is used as an authenticated data structure (shown in FIG. 3) on TCB 110. The total number of pages in the metadata structure is represented as N (in FIG. 3, N = 4) and the metadata pages are represented as Pi , P2, • • • , Pw- TCB 110 builds a general hash tree (GHT) where the z-th leaf stores information relating to the i-th metadata page (J = 1, 2, ... , N). The height of the general hash tree is denoted as ht = log N. Each internal node of the GHT is computed as the hash of its two children nodes. However, unlike a Merkle tree where the same hash function is used throughout the tree, different hash functions are applied at different internal nodes in the GHT according to one embodiment. The value of an internal node is represented as y . . and the hash function for
In one embodiment, the hash functions used for computing the internal nodes belong to a homomorphic hashing family [H) that satisfies the following homomorphic property:
one embodiment, we define }Jγ{x, y)= J lλ{x)j TiG7)' wnere f (x) = X m°d n , a homomorphic hash function based on the Rivest-Shamir algorithm (RSA) assumption where n is the RSA modulus. It is straight-forward to prove that such a hashing family satisfies the above homomorphic property.
Next it is shown how the parameters [I1, T1] used in a particular hash function H1 are generated. In one embodiment a tag value and an exponent value are defined for each node in the GHT. The tag value of the z'-th leaf is defined to be ei (i = 1, 2, ..., N), where ei belongs to a set of distinct prime numbers [ei, e2, ..., e^} . The tag value of an internal node is defined as the product of the tag values of its two children. Finally, the exponent value of a node is defined as the tag value of its sibling.
In the example illustrated in FIG. 3, the tag values of Vi and V 2 are ei and 62 respectively, and the tag value for Vn is eie2. The exponent values of Vi and V2 are 62 and ei respectively,
and the exponent value of Vi2 is e^. Next, /; is defined as the exponent value of y . . 's
left child and V1 as the exponent of 's right child. The way the exponent values are
generated has the following property. In one embodiment, the exponents of the siblings of nodes on the path from the leaf Vi to the root are defined as Ei, E2, ..., EM, respectively. In one embodiment, the greatest common denominator (gcd) gcd (E 1, E2, ..., Eu) = et.
Finally, we determine the values stored at the leaves of the general hash tree. The time is divided into time intervals. The untrusted system module 120 communicates with the TCB 110 at the end of each interval. Let n(i) denote the number of data blocks relating to the z-th metadata page up to the end of an interval and that data entries are D1I, D12, ..., D1n^. The value stored at the z-th leaf is V1, which is computed as
J-[ϋ [x, y) = xy mod n and eo is a distinct prime number from {ei, e2, ..., e^) . Therefore, that H0 S H.
In one embodiment, the untrusted system module 120 needs to submit only a constant size of authentication data to the TCB 110 at the end of each interval. In one embodiment, two leaves of the general hash tree are defined as Vi and V2 with their parent being Vi2 = Hi{Vi,V2). For two new data di and d2 and the new parent of the two leaves is computed. We denote vi = h(di) and V2 = h(d2). The new parent is computed as:
The root of the GHT is iteratively computed in this manner and the new root of the GHT is computed as Rt+i = Ho(Rt,rt) where Rt+i is the root of the GHT and the end of the interval t + 1, Rt is the root of the GHT at the end of interval t, and rt is the root of the general hash tree where the leaves are the new data (i.e., vi, V2, ...).
In other words, the new root Rt+i is computed based on the old root Rt and the root rt of a new GHT, where the leaves are the hashes of the new log entries. In one embodiment, the work of computing rt is handled by the untrusted system module 120. At the end of each interval, the untrusted system module 120 computes rt and transmits to the TCB 110. The TCB 110 can then compute the new root through one single hash operation; the new root is computed as Rt+i = Ho (Rt, rt). The TCB 110 then removes the old root Rt and stores the new
The construction of the verification object (VO) is similar to that in the Merkle tree. To prove the authenticity of the data relating to the z-th metadata page, the untrusted system module 120 returns the siblings of all nodes on the path from V1 to the root, together with the data relating to the z-th metadata page.
To verify the authenticity of the data relating to the z-th metadata page, a verifier in the untrusted system module 120 can reconstruct the general hash tree and compute the root of the general hash tree. The verifier can then obtain the value of the root obtained from the TCB 110 and compare it with the computed root value. The verifier accepts if and only if these two values match.
Table I below shows the complexity of one embodiment (in the "our app." row) compared with that of the Merkle tree based approach (in the "MT app." row), assuming that updates can be batched and the number of updates in a batch is m, the total number of pages in the data structure is N. The verification time and VO size refer to the computation and communication overhead for verifying the correctness of a single page.
Table I
FIG. 2 illustrates a distributed system 200 according to one embodiment. In one embodiment, the system 200 is a distributed network, including a plurality of untrusted system modules 1 210 to N 220, and a TCB 110 that authenticates data on all untrusted system modules in system 200.
FIG. 4 illustrates a block diagram of an authentication process 400. Process 400 begins with block 410 where data is first stored on an untrusted system module, such as system module 120. Next, in block 420 authentication data is transmitted to a TCB, such as TCB 110. In block 430, a commit operation (as described above) is performed for the authentication data between an untrusted system module and a TCB, such as TCB 110. Therefore data and metadata are stored and the trustworthiness is preserved efficiently by minimizing the resource usage on the TCB. In this embodiment, most of the computations are handled by the untrusted system module.
The embodiments of the invention can take the form of an entirely hardware embodiment, an entirely software embodiment or an embodiment containing both hardware and software elements. In a preferred embodiment, the invention is implemented in software, which includes but is not limited to firmware, resident software, microcode, etc.
Furthermore, the embodiments of the invention can take the form of a computer program product accessible from a computer-usable or computer-readable medium providing program code for use by or in connection with a computer, processing device, or any instruction execution system. For the purposes of this description, a computer-usable or computer readable medium can be any apparatus that can contain, store, communicate, or transport the program for use by or in connection with the instruction execution system, apparatus, or device.
The medium can be electronic, magnetic, optical, or a semiconductor system (or apparatus or device). Examples of a computer-readable medium include, but are not limited to, a semiconductor or solid state memory, magnetic tape, a removable computer diskette, a
RAM, a read-only memory (ROM), a rigid magnetic disk, an optical disk, etc. Current
examples of optical disks include compact disk-read only memory (CD-ROM), compact disk-read/write (CD-R/W) and DVD.
I/O devices (including but not limited to keyboards, displays, pointing devices, etc.) can be connected to the system either directly or through intervening controllers. Network adapters may also be connected to the system to enable the data processing system to become connected to other data processing systems or remote printers or storage devices through intervening private or public networks. Modems, cable modem and Ethernet cards are just a few of the currently available types of network adapters.
In the description above, numerous specific details are set forth. However, it is understood that embodiments of the invention may be practiced without these specific details. For example, well-known equivalent components and elements may be substituted in place of those described herein, and similarly, well-known equivalent techniques may be substituted in place of the particular techniques disclosed. In other instances, well-known structures and techniques have not been shown in detail to avoid obscuring the understanding of this description.
Reference in the specification to "an embodiment," "one embodiment," "some embodiments," or "other embodiments" means that a particular feature, structure, or characteristic described in connection with the embodiments is included in at least some embodiments, but not necessarily all embodiments. The various appearances of "an embodiment," "one embodiment," or "some embodiments" are not necessarily all referring to the same embodiments. If the specification states a component, feature, structure, or characteristic "may", "might", or "could" be included, that particular component, feature, structure, or characteristic is not required to be included. If the specification or claim refers to "a" or "an" element, that does not mean there is only one of the element. If the specification or claims refer to "an additional" element, that does not preclude there being more than one of the additional element.
While certain exemplary embodiments have been described and shown in the accompanying drawings, it is to be understood that such embodiments are merely illustrative of, and not
restrictive on, the broad invention, and that this invention not be limited to the specific constructions and arrangements shown and described, since various other modifications may occur to those ordinarily skilled in the art.
Claims
1. A method for preserving the trustworthiness of data, the method comprising: storing data on an untrusted system; and committing the data to a trusted computing base (TCB), wherein said committing comprises: transmitting a constant size authentication data from the untrusted system to the TCB on detection of an end of a predetermined time interval; and the TCB preserving trustworthiness of the authentication data based on performing a single hash operation of a first root and a second root of a general hash tree representing authenticated data.
2. The method of claim 1, wherein the committing comprises computing a third root of the general hash tree based on the hash of the first root and the second root.
3. The method of claim 1, wherein the committing further comprises generating the third root and comparing the third root with a computed root value.
4. The method of claim 3, wherein the hash tree including a plurality of leaves each storing information relating to a corresponding metadata page.
5. The method of claim 3, wherein each internal node of the tree is computed as a hash of its children nodes.
6. The method of claim 5, wherein different hash functions are applied at different internal nodes.
7. The method of claim 6, wherein the different hash functions belong to a homomorphic hashing family.
8. The method of claim 5, further comprising: computing a tag value and an exponent value for each internal node.
9. The method of claim 8, wherein the tag value is a product of tag values of the tag's two children, and the exponent value is the tag value of the node's sibling.
10. A system for preserving trustworthiness of data, comprising: at least one untrusted module configured to store data; and a trusted computing base (TCB) module coupled to the untrusted module, the TCB configured to authenticate the data, wherein upon an end of a predetermined time interval, the untrusted module transmits a constant size authentication data to the TCB for commitment, and the TCB preserves trustworthiness of the authentication data based on performing a single hash operation of a first root and a second root of a general hash tree representing authenticated data.
11. The system of claim 10, wherein the TCB preserves trustworthiness by further computing a third root of the general hash tree based on the hash of the first root and the second root.
12. The system of claim 11, wherein each internal node of the tree is computed as a hash of its children nodes.
13. The system of claim 12, wherein different hash functions are applied at different internal nodes.
14. The system of claim 13, wherein the different hash functions belong to a homomorphic hashing family.
15. The system of claim 10, further comprising: a distributed network including a plurality of untrusted module sub-systems, wherein the TCB module is further configured to preserve trustworthiness of data stored on each untrusted module sub-system.
16. A computer program comprising computer program code to, when loaded into a computer system and executed, perform all the steps of the method according to any one of claims 1 to 9.
Priority Applications (1)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| CN2010800068678A CN102308300A (en) | 2009-02-18 | 2010-02-16 | System and method for efficient trust preservation in data stores |
Applications Claiming Priority (2)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| US12/388,422 | 2009-02-18 | ||
| US12/388,422 US20100212017A1 (en) | 2009-02-18 | 2009-02-18 | System and method for efficient trust preservation in data stores |
Publications (1)
| Publication Number | Publication Date |
|---|---|
| WO2010094685A1 true WO2010094685A1 (en) | 2010-08-26 |
Family
ID=42124593
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| PCT/EP2010/051931 Ceased WO2010094685A1 (en) | 2009-02-18 | 2010-02-16 | System and method for efficient trust preservation in data stores |
Country Status (3)
| Country | Link |
|---|---|
| US (1) | US20100212017A1 (en) |
| CN (1) | CN102308300A (en) |
| WO (1) | WO2010094685A1 (en) |
Families Citing this family (30)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US8621222B1 (en) | 2008-05-30 | 2013-12-31 | Adobe Systems Incorporated | Archiving electronic content having digital signatures |
| US8510566B1 (en) * | 2009-09-29 | 2013-08-13 | Emc Corporation | Authentic time-stamping for archival storage |
| KR101533876B1 (en) * | 2010-03-05 | 2015-07-03 | 인터디지탈 패튼 홀딩스, 인크 | Method and apparatus for providing security to devices |
| WO2012023122A2 (en) * | 2010-08-20 | 2012-02-23 | Nxp B.V. | Authentication device and system |
| US8538938B2 (en) * | 2010-12-02 | 2013-09-17 | At&T Intellectual Property I, L.P. | Interactive proof to validate outsourced data stream processing |
| US9026474B2 (en) * | 2011-03-07 | 2015-05-05 | Google Inc. | Generating printable certificates to verify log authenticity |
| US9424432B2 (en) * | 2012-09-20 | 2016-08-23 | Nasdaq, Inc. | Systems and methods for secure and persistent retention of sensitive information |
| US9473306B2 (en) * | 2013-08-05 | 2016-10-18 | Guardtime IP Holdings, Ltd. | Document verification with ID augmentation |
| CN103441845B (en) * | 2013-08-07 | 2016-05-25 | 北京交通大学 | A kind of new method for generation of Merkle tree signature scheme certification path |
| US9178708B2 (en) * | 2013-12-02 | 2015-11-03 | Guardtime Ip Holdings Limited | Non-deterministic time systems and methods |
| US11783898B2 (en) * | 2014-09-18 | 2023-10-10 | Jonker Llc | Ephemeral storage elements, circuits, and systems |
| US9846642B2 (en) * | 2014-10-21 | 2017-12-19 | Samsung Electronics Co., Ltd. | Efficient key collision handling |
| US10303887B2 (en) | 2015-09-14 | 2019-05-28 | T0.Com, Inc. | Data verification methods and systems using a hash tree, such as a time-centric merkle hash tree |
| US10396991B2 (en) * | 2016-06-30 | 2019-08-27 | Microsoft Technology Licensing, Llc | Controlling verification of key-value stores |
| EP3491605A1 (en) * | 2016-08-01 | 2019-06-05 | Cryptowerk Corp. | Computer-implemented method and system of tamper-evident recording of a plurality of service data items |
| WO2019010228A1 (en) | 2017-07-03 | 2019-01-10 | Medici Ventures, Inc. | Decentralized trading system for fair ordering and matching of trades received at multiple network nodes and matched by multiple network nodes within decentralized trading system |
| US10733313B2 (en) | 2018-02-09 | 2020-08-04 | Arm Limited | Counter integrity tree for memory security |
| US10540297B2 (en) | 2017-08-03 | 2020-01-21 | Arm Limited | Memory organization for security and reliability |
| CN110945509B (en) * | 2017-08-03 | 2023-08-11 | Arm有限公司 | Apparatus and method for controlling access to data in a protected memory region |
| WO2019168557A1 (en) * | 2018-02-27 | 2019-09-06 | Visa International Service Association | High-throughput data integrity via trusted computing |
| US11080433B2 (en) * | 2018-04-29 | 2021-08-03 | Cryptowerk Corp. | Cryptographic data storage |
| CN109492425B (en) * | 2018-09-30 | 2021-12-28 | 南京中铁信息工程有限公司 | Method for applying work write-once read-many technology on distributed file system |
| US10880260B1 (en) | 2019-06-19 | 2020-12-29 | Etherweb Technologies LLC | Distributed domain name resolution and method for use of same |
| US11526477B2 (en) * | 2019-07-31 | 2022-12-13 | Myndshft Technologies, Inc. | System and method for on-demand data cleansing |
| US11394749B2 (en) | 2019-11-15 | 2022-07-19 | Ent. Services Development Corporation Lp | Systems and methods for automated determination of trust levels associated with regions and securely transporting data between the regions |
| US11449548B2 (en) | 2019-11-27 | 2022-09-20 | Elasticsearch B.V. | Systems and methods for enriching documents for indexing |
| US11609898B2 (en) * | 2020-06-18 | 2023-03-21 | Apple Inc. | Ensuring consistent metadata across computing devices |
| CN115033551B (en) * | 2021-12-30 | 2026-01-13 | 天翼云科技有限公司 | Database migration method and device, electronic equipment and storage medium |
| DE102022205719B3 (en) * | 2022-06-03 | 2023-11-09 | Siemens Healthcare Gmbh | Method and device for trustworthy provision of data elements and method for checking a data record with multiple data elements |
| CN119691821B (en) * | 2025-02-25 | 2025-04-29 | 成都星辰数创科技有限公司 | System, method and apparatus for constructing trusted data resources and tradable data assets |
Citations (2)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20080172562A1 (en) * | 2007-01-12 | 2008-07-17 | Christian Cachin | Encryption and authentication of data and for decryption and verification of authenticity of data |
| US20090037491A1 (en) * | 2007-07-30 | 2009-02-05 | International Business Machines Corporation | Storage system and method for updating a hash tree |
Family Cites Families (28)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US4309569A (en) * | 1979-09-05 | 1982-01-05 | The Board Of Trustees Of The Leland Stanford Junior University | Method of providing digital signatures |
| US6484182B1 (en) * | 1998-06-12 | 2002-11-19 | International Business Machines Corporation | Method and apparatus for publishing part datasheets |
| US6218302B1 (en) * | 1998-07-21 | 2001-04-17 | Motorola Inc. | Method for forming a semiconductor device |
| US6411957B1 (en) * | 1999-06-30 | 2002-06-25 | Arm Limited | System and method of organizing nodes within a tree structure |
| US6961855B1 (en) * | 1999-12-16 | 2005-11-01 | International Business Machines Corporation | Notification of modifications to a trusted computing base |
| US6961858B2 (en) * | 2000-06-16 | 2005-11-01 | Entriq, Inc. | Method and system to secure content for distribution via a network |
| US7107462B2 (en) * | 2000-06-16 | 2006-09-12 | Irdeto Access B.V. | Method and system to store and distribute encryption keys |
| US7150045B2 (en) * | 2000-12-14 | 2006-12-12 | Widevine Technologies, Inc. | Method and apparatus for protection of electronic media |
| US20020184504A1 (en) * | 2001-03-26 | 2002-12-05 | Eric Hughes | Combined digital signature |
| US7080049B2 (en) * | 2001-09-21 | 2006-07-18 | Paymentone Corporation | Method and system for processing a transaction |
| US7020635B2 (en) * | 2001-11-21 | 2006-03-28 | Line 6, Inc | System and method of secure electronic commerce transactions including tracking and recording the distribution and usage of assets |
| KR100979770B1 (en) * | 2002-09-16 | 2010-09-02 | 야후! 인크. | On-line software rental |
| US6890851B2 (en) * | 2003-05-29 | 2005-05-10 | United Microelectronics Corp. | Interconnection structure and fabrication method thereof |
| JP4809766B2 (en) * | 2003-08-15 | 2011-11-09 | 株式会社エヌ・ティ・ティ・ドコモ | Data stream authentication method and apparatus adaptively controlling loss |
| US7090128B2 (en) * | 2003-09-08 | 2006-08-15 | Systems And Software Enterprises, Inc. | Mobile electronic newsstand |
| CN100452026C (en) * | 2003-12-08 | 2009-01-14 | 李嫚 | Data once writing method and database safety management method based on the same method |
| US7395244B1 (en) * | 2004-06-23 | 2008-07-01 | Symantec Corporation | Criticality classification system and method |
| EP1784943A4 (en) * | 2004-08-31 | 2011-08-03 | Ntt Docomo Inc | REVOCATION OF CRYPTOGRAPHIC DIGITAL CERTIFICATES |
| US7711586B2 (en) * | 2005-02-24 | 2010-05-04 | Rearden Corporation | Method and system for unused ticket management |
| US7422979B2 (en) * | 2005-03-11 | 2008-09-09 | Freescale Semiconductor, Inc. | Method of forming a semiconductor device having a diffusion barrier stack and structure thereof |
| US20060218176A1 (en) * | 2005-03-24 | 2006-09-28 | International Business Machines Corporation | System, method, and service for organizing data for fast retrieval |
| US7361993B2 (en) * | 2005-05-09 | 2008-04-22 | International Business Machines Corporation | Terminal pad structures and methods of fabricating same |
| US7587502B2 (en) * | 2005-05-13 | 2009-09-08 | Yahoo! Inc. | Enabling rent/buy redirection in invitation to an online service |
| US7447698B2 (en) * | 2005-12-13 | 2008-11-04 | International Business Machines Corporation | Method for balancing binary search trees |
| US7680937B2 (en) * | 2005-12-22 | 2010-03-16 | Microsoft Corporation | Content publication |
| WO2007087363A2 (en) * | 2006-01-24 | 2007-08-02 | Brown University | Efficient content authentication in peer-to-peer networks |
| US7926043B2 (en) * | 2006-06-20 | 2011-04-12 | Microsoft Corporation | Data structure path profiling |
| US7485564B2 (en) * | 2007-02-12 | 2009-02-03 | International Business Machines Corporation | Undercut-free BLM process for Pb-free and Pb-reduced C4 |
-
2009
- 2009-02-18 US US12/388,422 patent/US20100212017A1/en not_active Abandoned
-
2010
- 2010-02-16 CN CN2010800068678A patent/CN102308300A/en active Pending
- 2010-02-16 WO PCT/EP2010/051931 patent/WO2010094685A1/en not_active Ceased
Patent Citations (2)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20080172562A1 (en) * | 2007-01-12 | 2008-07-17 | Christian Cachin | Encryption and authentication of data and for decryption and verification of authenticity of data |
| US20090037491A1 (en) * | 2007-07-30 | 2009-02-05 | International Business Machines Corporation | Storage system and method for updating a hash tree |
Non-Patent Citations (4)
| Title |
|---|
| BELLARE M ET AL: "Advances in Cryptology - EUROCRYPT '97", 1 January 1997, ADVANCES IN CRYPTOLOGY ; PROCEEDINGS / EUROCRYPT '97, INTERNATIONAL CONFERENCE ON THE THEORY AND APPLICATION OF CRYPTOGRAPHIC TECHNIQUES, KONSTANZ, GERMANY, MAY 11 - 15, 1997; [LECTURE NOTES IN COMPUTER SCIENCE ; 1233], SPRINGER, HEIDELBERG, GERMANY,, ISBN: 9783540629757, XP002552805 * |
| BELLARE M ET AL: "Incremental cryptography: the case of hashing and signing", ADVANCES IN CRYPTOLOGY - CRYPTO '94. 14TH ANNUAL INTERNATIONAL CRYPTOLOGY CONFERENCE. PROCEEDINGS SPRINGER-VERLAG BERLIN, GERMANY, 1994, pages 216 - 233, XP007913027, ISBN: 3-540-58333-5 * |
| MAHESHWARI U ET AL: "HOW TO BUILD A TRUSTED DATABASE SYSTEM ON UNTRUSTED STORAGE", 4TH SYMPOSIUM ON OPERATING SYSTEMS DESIGN AND IMPLEMENTATION. OCT. 23-25, 2000, SAN DIEGO, CA, USENIX ASSOCIATION, US, 1 January 2000 (2000-01-01), XP001544778 * |
| TIANCHENG LI ET AL: "WORM-SEAL: Trustworthy Data Retention and Verification for Regulatory Compliance", 21 September 2009, COMPUTER SECURITY ESORICS 2009, SPRINGER BERLIN HEIDELBERG, BERLIN, HEIDELBERG, PAGE(S) 472 - 488, ISBN: 9783642044434, XP019129299 * |
Also Published As
| Publication number | Publication date |
|---|---|
| CN102308300A (en) | 2012-01-04 |
| US20100212017A1 (en) | 2010-08-19 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| US20100212017A1 (en) | System and method for efficient trust preservation in data stores | |
| US8055635B2 (en) | System and method for verifying the integrity and completeness of records | |
| Yuan et al. | Blockchain-based public auditing and secure deduplication with fair arbitration | |
| US7996679B2 (en) | System and method for performing a trust-preserving migration of data objects from a source to a target | |
| RU2351978C2 (en) | Method for provision of data records set integrity | |
| US11907199B2 (en) | Blockchain based distributed file systems | |
| US20080059420A1 (en) | System and Method for Providing a Trustworthy Inverted Index to Enable Searching of Records | |
| US20050234909A1 (en) | Method, computer program product, and data processing system for source verifiable audit logging | |
| US11256662B2 (en) | Distributed ledger system | |
| US11868339B2 (en) | Blockchain based distributed file systems | |
| Uroz et al. | On challenges in verifying trusted executable files in memory forensics | |
| CN115081031A (en) | Tamper-proof block chain data storage method and system | |
| US10725767B2 (en) | Systems and methods for reinforced update package authenticity | |
| CN118568130A (en) | A user data protection method for a secure computer | |
| Yeh et al. | Integrity coded databases-protecting data integrity for outsourced databases | |
| CN115659417A (en) | Audit log storage method, audit log verification method, audit log storage device, audit log verification device and computer equipment | |
| Burns et al. | Verifiable audit trails for a versioning file system | |
| Hwang et al. | Proof of violation for trust and accountability of cloud database systems | |
| US12530477B2 (en) | Authenticating a file system within untrusted storage | |
| US20250209199A1 (en) | Hybrid segment reference filter system to prevent access to files encrypted with a compromised key | |
| Sion et al. | Fighting mallory the insider: Strong write-once read-many storage assurances | |
| US20240111889A1 (en) | Methods and systems for managing data in a database management system | |
| US20250209198A1 (en) | Disallowing reads on files encrypted with a compromised key using a hybrid segment reference filter system | |
| Li et al. | Worm-seal: Trustworthy data retention and verification for regulatory compliance | |
| Morovat et al. | Verifying integrity of big data in cloud databases |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| WWE | Wipo information: entry into national phase |
Ref document number: 201080006867.8 Country of ref document: CN |
|
| 121 | Ep: the epo has been informed by wipo that ep was designated in this application |
Ref document number: 10711604 Country of ref document: EP Kind code of ref document: A1 |
|
| NENP | Non-entry into the national phase |
Ref country code: DE |
|
| 122 | Ep: pct application non-entry in european phase |
Ref document number: 10711604 Country of ref document: EP Kind code of ref document: A1 |