An Alternative to the Merkle Tree

Total Page:16

File Type:pdf, Size:1020Kb

An Alternative to the Merkle Tree CRYPTOLOGY EPRINT ARCHIVE, VOL. 00, NO. 00, MONTH 20YY 1 HEX-BLOOM: An Efficient Method for Authenticity and Integrity Verification in Privacy-preserving Computing Ripon Patgiri, Senior Member, IEEE, and Malaya Dutta Borah, Member, IEEE Abstract—Merkle tree is applied in diverse applications, Merkle tree is a time-consuming data structure that wastes namely, Blockchain, smart grid, IoT, Biomedical, financial trans- computational resources significantly. It is used to verify data actions, etc., to verify authenticity and integrity. Also, the blocks’ authenticity and integrity. It allows verification of Merkle tree is used in privacy-preserving computing. However, the Merkle tree is a computationally costly data structure. It the data block’s authenticity and integrity after successfully uses cryptographic string hash functions to partially verify the downloading a particular data block using Merkle root. It data integrity and authenticity of a data block. However, the requires a few hash values, but it does not require the entire verification process creates unnecessary network traffic because Merkle tree. Moreover, the time complexity of the Merkle tree it requires partial hash values to verify a particular block. is high. In addition, the Merkle tree (server) requires high Moreover, the performance of the Merkle tree also depends on the network latency. Therefore, it is not feasible for most memory to store entire hash values; however, a user does not of the applications. To address the above issue, we proposed require to store the whole Merkle tree. Each block requires a an alternative model to replace the Merkle tree, called HEX- few hash values, which require network access. This process BLOOM, and it is implemented using hash, Exclusive-OR, creates enormous network traffics cumulatively. Therefore, it and Bloom Filter. Our proposed model does not depends on degrades the performance of the Merkle tree and increases the network latency for verification of data block’s authenticity and integrity. HEX-BLOOM uses an approximation model, Bloom network traffic. The Merkle tree’s performance depends not Filter. Moreover, it employs a deterministic model for final only on the time complexity of the data structures but also on verification of the correctness. In this article, we show that our the network latency and network traffic. Also, verification of proposed model outperforms the state-of-the-art Merkle tree in a particular block is costly due to network access. It impacts every aspect. the entire process to verify each block using the Merkle tree Index Terms—Merkle tree, Blockchain, Bitcoin, verification, from the network, by which the entire process is slowed down authentication, integrity, privacy, Hash, Security. dramatically. Notably, the partial verification process of the Merkle tree I. INTRODUCTION is a disadvantage, and it should be obviated. The verification ERKLE tree [1] is widely used nowadays due to process of each block creates unnecessary network traffic, M the diverse requirements of security. Recent devel- which can easily be avoided. Also, the time complexity can opments suggest that Merkle tree is adapted in numerous further be reduced. Therefore, we propose an alternative model research domains including privacy-preserving computation of the Merkle tree to address the above issue. Our proposed [2], Blockchain [3], [4], [5], [6], [7], [8], [2], [9], cryptography model uses Hash, Exclusive-OR and Bloom Filter, HEX- [10], [11], agriculture [12], Healthcare [13], [14], financial BLOOM for short. It is two-fold; first, LinkedHashX, and transactions [15], [16], [17], Smart Grid [18], [19], Cloud second, Bloom Filter. We construct a deterministic model Computing [20], [18], Big Data [21], and Wireless networking called LinkedHashX to verify the entire process’s correctness. [22]. Therefore, the Merkle tree is modified to enhances its LinkedHashX uses a cryptographic hash function and XOR performance. Jakobsson et al. [23] presents fractal Merkle operation to provide an alternative model to the Merkle tree. tree to enhance the time and space. Similarly, M. Szydlo LinkedHashX performs a hash on all data blocks and merges [24] enhances Jakobsson’s fractal Merkle tree. Buchmann the data blocks’ hashes into a single data block using XOR et al. [25] improves the Merkle tree. Moreover, We have operation to create LinkedHashX root. User or creator of already witnessed diverse variants of the Merkle tree [8], [20], LinkedHashX does not maintain the entire process; instead, [22], [26], [27]. It shows that the Merkle tree is adapted LinkedHashX root is maintained for future use. A user needs in diverse applications and modified Merkle tree as per the to reconstruct the LinkedHashX root and compares it with requirements of the applications. Therefore, the Merkle tree the original root. Secondly, we use Bloom Filter to verify has met wider applications in the diverse domain, demanding the block’s authenticity and integrity, an approximation data an efficient alternative to the Merkle tree, which features low structure. All data blocks are inserted into Bloom Filter space consumption, fewer network accesses, and low time during the construction of the LinkedHashX. A user requires complexity. LinkedHashX root and Bloom Filter to download to verify a data block’s authenticity and integrity. Ripon Patgiri, Department of Computer Science & Engineering, National Institute of Technology Silchar, Cachar-788010, Assam, India Our key contributions are outlined below- Manuscript received Month DD, 20YY; revised Month DD, 20YY. • HEX-BLOOM uses Bloom Filter to verify a data block’s CRYPTOLOGY EPRINT ARCHIVE, VOL. 00, NO. 00, MONTH 20YY 2 authenticity and integrity in $¹:º time complexity for : the SHA2 hash function, and these hash values are used to distinct hash functions. In contrast, the Merkle tree takes build the Merkle tree. Therefore, there are L leaf nodes in $¹;>6=º time complexity, = is the total number of nodes the tree. Theorem 1 shows that an <-ary Merkle tree has ¹ L−1º of the Merkle tree, and : < ;>6=. I = ¹<−1º internal nodes. It shows that there is an overhead • The total verification time complexity for data authen- of I hash functions. Alternatively, Lemma 1 shows the total ticity and integrity is $¹:Lº and L is the total number cost in terms of the number of leaf nodes. The cryptographic of blocks whereas Merkle tree takes $¹L ;>6Lº time hash functions are slower than the non-cryptographic hash complexity and :L L ;>6L. functions. Its cryptographic hash functions impact the Merkle • The construction cost of HEX-BLOOM is two-folded, tree’s performance, for instance, SHA2. firstly, the construction cost of Bloom Filter, and sec- ondly, the construction cost of LinkedHashX. The con- A. Construction struction cost of Bloom Filter and LinkedHashX are $¹:Lº and $¹Lº, respectively for L data blocks. The Merkle tree takes $¹=º and :L =. • The extra space complexity of Bloom Filter is ` which is derived in Equation (12). The extra space complexity of LinkedHashX is $¹1º. Therefore, the total extra space complexity is $¹`º, whereas the Merkle tree takes $¹=º. • The total communication cost of our proposed model is $¹1º whereas a Merkle tree requires $¹Lº communica- tions for all blocks. • Moreover, the time complexity of insertion and deletion is $¹:º whereas the insertion or deletion time complexity of Merkle tree is $¹;>6Lº and : ;>6L. The article is organized as follows- Section II analyzes the advantages and disadvantages of the Merkle tree. Section IV demonstrates the architecture of Bloom Filter and also analyzes the memory consumption and false positive proba- Fig. 1: Construction of the conventional binary Merkle Tree. bility. Section V presents the first part of the proposed system, LinkedHashX, and elaborates its working principles. Section Figure 1 demonstrates the construction of the Merkle tree. VI combines LinkedHashX and Bloom Filter to provide partial Initially, all blocks are hashed using cryptographic string hash verification on data blocks. Finally, Section VIII concludes the functions, for instance, SHA256. Then, the two consecutive proposed system. hash values are concatenated, and the concatenated hash value is hashed using the same hash function to form their parents. II. MERKLE TREE Again, the same procedure is applied to the subsequent consec- Most of the Merkle tree implementation is binary; however, utive blocks. This process is rerun repeatedly until it becomes we assume <-ary Merkle tree for generalization. Definitions a single node, i.e., it repeats the process to get the Merkle 1 and 2 define the <-ary tree. root. Finally, the Merkle root is published publicly and can be distributed to peers. The creator of the Merkle tree maintains Definition 1. The <-ary or <-way tree is a tree of order < where a) it is a rooted tree, b) each node can have at most the tree, and the peers do not require the entire Merkle tree. ¹< − 1º keys, c) each node can have at most < children, and d) Keys are not in ordered. B. Verification Definition 2. An <-ary Merkle tree has leaf nodes, internal Figure 2 shows the process of verifying a particular block. node and Merkle root which are as follows- a) the direct hash Merkle tree verifies the authenticity of a specific block. For value of data blocks are known as leaf nodes in the Merkle instance, a user has downloaded a block and needs to verify tree, b) the Merkle tree concatenates < hash values and hashes the block for its authenticity and integrity. In this case, the user the concatenated hash value to form a single value is called does not require the entire Merkle tree to verify the block. It a parent node or an internal node, and c) the Merkle root is requires only a few hash values to verify the authenticity of a root node of the tree that contains a hash value of its child the block, as shown in the dashed circle for block 13 in Figure nodes. 2.
Recommended publications
  • Angela: a Sparse, Distributed, and Highly Concurrent Merkle Tree
    Angela: A Sparse, Distributed, and Highly Concurrent Merkle Tree Janakirama Kalidhindi, Alex Kazorian, Aneesh Khera, Cibi Pari Abstract— Merkle trees allow for efficient and authen- with high query throughput. Any concurrency overhead ticated verification of data contents through hierarchical should not destroy the system’s performance when the cryptographic hashes. Because the contents of parent scale of the merkle tree is very large. nodes in the trees are the hashes of the children nodes, Outside of Key Transparency, this problem is gen- concurrency in merkle trees is a hard problem. The eralizable to other applications that have the need current standard for merkle tree updates is a naive locking of the entire tree as shown in Google’s merkle tree for efficient, authenticated data structures, such as the implementation, Trillian. We present Angela, a concur- Global Data Plane file system. rent and distributed sparse merkle tree implementation. As a result of these needs, we have developed a novel Angela is distributed using Ray onto Amazon EC2 algorithm for updating a batch of updates to a merkle clusters and uses Amazon Aurora to store and retrieve tree concurrently. Run locally on a MacBook Pro with state. Angela is motivated by Google Key Transparency a 2.2GHz Intel Core i7, 16GB of RAM, and an Intel and inspired by it’s underlying merkle tree, Trillian. Iris Pro1536 MB, we achieved a 2x speedup over the Like Trillian, Angela assumes that a large number of naive algorithm mentioned earlier. We expanded this its 2256 leaves are empty and publishes a new root after algorithm into a distributed merkle tree implementation, some amount of time.
    [Show full text]
  • Enabling Authentication of Sliding Window Queries on Streams
    Proof­Infused Streams: Enabling Authentication of Sliding Window Queries On Streams Feifei Li† Ke Yi‡ Marios Hadjieleftheriou‡ George Kollios† †Computer Science Department Boston University ‡AT&T Labs Inc. lifeifei, gkollios @cs.bu.edu yike, marioh @research.att.com { } { } ABSTRACT As computer systems are essential components of many crit- ical commercial services, the need for secure online transac- . tions is now becoming evident. The demand for such appli- cations, as the market grows, exceeds the capacity of individ- 0110..011 ual businesses to provide fast and reliable services, making Provider Servers outsourcing technologies a key player in alleviating issues Clients of scale. Consider a stock broker that needs to provide a real-time stock trading monitoring service to clients. Since Figure 1: The outsourced stream model. the cost of multicasting this information to a large audi- ence might become prohibitive, the broker could outsource providers, who would be in turn responsible for forwarding the stock feed to third-party providers, who are in turn re- the appropriate sub-feed to clients (see Figure 1). Evidently, sponsible for forwarding the appropriate sub-feed to clients. especially in critical applications, the integrity of the third- Evidently, in critical applications the integrity of the third- party should not be taken for granted, as the latter might party should not be taken for granted. In this work we study have malicious intent or might be temporarily compromised a variety of authentication algorithms for selection and ag- by other malicious entities. Deceiving clients can be at- gregation queries over sliding windows. Our algorithms en- tempted for gaining business advantage over the original able the end-users to prove that the results provided by the service provider, for competition purposes against impor- third-party are correct, i.e., equal to the results that would tant clients, or for easing the workload on the third-party have been computed by the original provider.
    [Show full text]
  • Providing Authentication and Integrity in Outsourced Databases Using Merkle Hash Tree’S
    Providing Authentication and Integrity in Outsourced Databases using Merkle Hash Tree's Einar Mykletun Maithili Narasimha University of California Irvine University of California Irvine [email protected] [email protected] Gene Tsudik University of California Irvine [email protected] 1 Introduction In this paper we intend to describe and summarize results relating to the use of authenticated data structures, specifically Merkle Hash Tree's, in the context of the Outsourced Database Model (ODB). In ODB, organizations outsource their data management needs to an external untrusted service provider. The service provider hosts clients' databases and offers seamless mechanisms to create, store, update and access (query) their databases. Due to the service provider being untrusted, it becomes imperative to provide means to ensure authenticity and integrity in the query replies returned by the provider to clients. It is therefore the goal of this paper to outline an applicable data structure that can support authenticated query replies from the service provider to the clients (who issue the queries). Merkle Hash Tree's (introduced in section 3) is such a data structure. 1.1 Outsourced Database Model (ODB) The outsourced database model (ODB) is an example of the well-known Client-Server model. In ODB, the Database Service Provider (also referred to as the Server) has the infrastructure required to host outsourced databases and provides efficient mechanisms for clients to create, store, update and query the database. The owner of the data is identified as the entity who has to access to add, remove, and modify tuples in the database. The owner and the client may or may not be the same entity.
    [Show full text]
  • The SCADS Toolkit Nick Lanham, Jesse Trutna
    The SCADS Toolkit Nick Lanham, Jesse Trutna (it’s catching…) SCADS Overview SCADS is a scalable, non-relational datastore for highly concurrent, interactive workloads. Scale Independence - as new users join No changes to application Cost per user doesn’t increase Request latency doesn’t change Key Innovations 1. Performance safe query language 2. Declarative performance/consistency tradeoffs 3. Automatic scale up and down using machine learning Toolkit Motivation Investigated other open-source distributed key-value stores Cassandra, Hypertable, CouchDB Monolithic, opaque point solutions Make many decisions about how to architect the system a -prori Want set of components to rapidly explore the space of systems’ design Extensible components communicate over established APIs Understand the implications and performance bottlenecks of different designs SCADS Components Component Responsibilities Storage Layer Persist and serve data for a specified key responsibility Copy and sync data between storage nodes Data Placement Layer Assign node key responsibilities Manage replication and partition factors Provide clients with key to node mapping Provides mechanism for machine learning policies Client Library Hides client interaction with distributed storage system Provides higher-level constructs like indexes and query language Storage Layer Key-value store that supports range queries built on BDB API Record get(NameSpace ns, RecordKey key) list<Record> get_set (NameSpace ns, RecordSet rs ) bool put(NameSpace ns, Record rec) i32 count_set(NameSpace ns, RecordSet rs) bool set_responsibility_policy(NameSpace ns,RecordSet policy) RecordSet get_responsibility_policy(NameSpace ns) bool sync_set(NameSpace ns, RecordSet rs, Host h, ConflictPolicy policy) bool copy_set(NameSpace ns, RecordSet rs, Host h) bool remove_set(NameSpace ns, RecordSet rs) Storage Layer Storage Layer Storage Layer: Synchronize Replicas may diverge during network partitions (in order to preserve availability).
    [Show full text]
  • Authentication of Moving Range Queries
    Authentication of Moving Range Queries Duncan Yung Eric Lo Man Lung Yiu ∗ Department of Computing Hong Kong Polytechnic University {cskwyung, ericlo, csmlyiu}@comp.polyu.edu.hk ABSTRACT the user leaves the safe region, Thus, safe region is a powerful op- A moving range query continuously reports the query result (e.g., timization for significantly reducing the communication frequency restaurants) that are within radius r from a moving query point between the user and the service provider. (e.g., moving tourist). To minimize the communication cost with The query results and safe regions returned by LBS, however, the mobile clients, a service provider that evaluates moving range may not always be accurate. For instance, a hacker may infiltrate queries also returns a safe region that bounds the validity of query the LBS’s servers [25] so that results of queries all include a partic- results. However, an untrustworthy service provider may report in- ular location (e.g., the White House). Furthermore, the LBS may be correct safe regions to mobile clients. In this paper, we present effi- self-compromised and thus ranks sponsored facilities higher than cient techniques for authenticating the safe regions of moving range actual query result. The LBS may also return an overly large safe queries. We theoretically proved that our methods for authenticat- region to the clients for the sake of saving computing resources and ing moving range queries can minimize the data sent between the communication bandwidth [22, 16, 30]. On the other hand, the LBS service provider and the mobile clients. Extensive experiments are may opt to return overly small safe regions so that the clients have carried out using both real and synthetic datasets and results show to request new safe regions more frequently, if the LBS charges fee that our methods incur small communication costs and overhead.
    [Show full text]
  • Executing Large Scale Processes in a Blockchain
    The current issue and full text archive of this journal is available on Emerald Insight at: www.emeraldinsight.com/2514-4774.htm JCMS 2,2 Executing large-scale processes in a blockchain Mahalingam Ramkumar Department of Computer Science and Engineering, Mississippi State University, 106 Starkville, Mississippi, USA Received 16 May 2018 Revised 16 May 2018 Abstract Accepted 1 September 2018 Purpose – The purpose of this paper is to examine the blockchain as a trusted computing platform. Understanding the strengths and limitations of this platform is essential to execute large-scale real-world applications in blockchains. Design/methodology/approach – This paper proposes several modifications to conventional blockchain networks to improve the scale and scope of applications. Findings – Simple modifications to cryptographic protocols for constructing blockchain ledgers, and digital signatures for authentication of transactions, are sufficient to realize a scalable blockchain platform. Originality/value – The original contributions of this paper are concrete steps to overcome limitations of current blockchain networks. Keywords Cryptography, Blockchain, Scalability, Transactions, Blockchain networks Paper type Research paper 1. Introduction A blockchain broadcast network (Bozic et al., 2016; Croman et al., 2016; Nakamoto, 2008; Wood, 2014) is a mechanism for creating a distributed, tamper-proof, append-only ledger. Every participant in the broadcast network maintains a copy, or some representation, of the ledger. Ledger entries are made by consensus on the states of a process “executed” on the blockchain. As an example, in the Bitcoin (Nakamoto, 2008) process: (1) Bitcoin transactions transfer Bitcoins from a wallet to one or more other wallets. (2) Bitcoins created by “mining” are added to the miner’s wallet.
    [Show full text]
  • IB Case Study Vocabulary a Local Economy Driven by Blockchain (2020) Websites
    IB Case Study Vocabulary A local economy driven by blockchain (2020) Websites Merkle Tree: https://blockonomi.com/merkle-tree/ Blockchain: https://unwttng.com/what-is-a-blockchain Mining: https://www.buybitcoinworldwide.com/mining/ Attacks on Cryptocurrencies: https://blockgeeks.com/guides/hypothetical-attacks-on-cryptocurrencies/ Bitcoin Transaction Life Cycle: https://ducmanhphan.github.io/2018-12-18-Transaction-pool-in- blockchain/#transaction-pool 51 % attack - a potential attack on a blockchain network, where a single entity or organization can control the majority of the hash rate, potentially causing a network disruption. In such a scenario, the attacker would have enough mining power to intentionally exclude or modify the ordering of transactions. Block - records, which together form a blockchain. ... Blocks hold all the records of valid cryptocurrency transactions. They are hashed and encoded into a hash tree or Merkle tree. In the world of cryptocurrencies, blocks are like ledger pages while the whole record-keeping book is the blockchain. A block is a file that stores unalterable data related to the network. Blockchain - a data structure that holds transactional records and while ensuring security, transparency, and decentralization. You can also think of it as a chain or records stored in the forms of blocks which are controlled by no single authority. Block header – main way of identifying a block in a blockchain is via its block header hash. The block hash is responsible for block identification within a blockchain. In short, each block on the blockchain is identified by its block header hash. Each block is uniquely identified by a hash number that is obtained by double hashing the block header with the SHA256 algorithm.
    [Show full text]
  • Efficient Verification of Shortest Path Search Via Authenticated Hints Man Lung YIU Hong Kong Polytechnic University
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Institutional Knowledge at Singapore Management University Singapore Management University Institutional Knowledge at Singapore Management University Research Collection School Of Information Systems School of Information Systems 3-2010 Efficient Verification of Shortest Path Search Via Authenticated Hints Man Lung YIU Hong Kong Polytechnic University Yimin LIN Singapore Management University, [email protected] Kyriakos MOURATIDIS Singapore Management University, [email protected] DOI: https://doi.org/10.1109/ICDE.2010.5447914 Follow this and additional works at: https://ink.library.smu.edu.sg/sis_research Part of the Databases and Information Systems Commons, and the Numerical Analysis and Scientific omputC ing Commons Citation YIU, Man Lung; LIN, Yimin; and MOURATIDIS, Kyriakos. Efficient Verification of Shortest Path Search Via Authenticated Hints. (2010). ICDE 2010: IEEE 26th International Conference on Data Engineering: Long Beach, California, USA, 1 - 6 March 2010. 237-248. Research Collection School Of Information Systems. Available at: https://ink.library.smu.edu.sg/sis_research/507 This Conference Proceeding Article is brought to you for free and open access by the School of Information Systems at Institutional Knowledge at Singapore Management University. It has been accepted for inclusion in Research Collection School Of Information Systems by an authorized administrator of Institutional Knowledge at Singapore Management University.
    [Show full text]
  • Redactable Hashing for Time Verification
    Technical Disclosure Commons Defensive Publications Series January 2021 Redactable Hashing for Time Verification Jan Schejbal Follow this and additional works at: https://www.tdcommons.org/dpubs_series Recommended Citation Schejbal, Jan, "Redactable Hashing for Time Verification", Technical Disclosure Commons, (January 24, 2021) https://www.tdcommons.org/dpubs_series/3999 This work is licensed under a Creative Commons Attribution 4.0 License. This Article is brought to you for free and open access by Technical Disclosure Commons. It has been accepted for inclusion in Defensive Publications Series by an authorized administrator of Technical Disclosure Commons. Schejbal: Redactable Hashing for Time Verification REDACTABLE HASHING FOR TIME VERIFICATION Cryptographic hashes (outputs of cryptographically secure hash functions) are used to uniquely identify secret information without making such information public. A cryptographic hash function is a deterministic computation that produces the same outputs for the same inputs while ensuring that even a small change of the input (e.g., a change of only one or several bits) results in an unpredictable output that has little resemblance to the original (unmodified) input. Furthermore, it is not possible to efficiently find an input matching a certain hash value or two different inputs having the same hash value; an attacker that attempts to do so would need to test numerous values until one matches, which is computationally infeasible for a sufficiently large space of possible values. The quasi-randomness property of hashes makes them useful for mapping protected information while ensuring that the information is not easily discoverable by a malicious attacker or an unauthorized viewer. Hashes can be used to derive cryptographic keys from other (strong or even weak) cryptographic material.
    [Show full text]
  • "On Merkle Trees", Dr Craig S Wright
    On Merkle Trees Dr Craig S Wright By now, it should be well understood that Bitcoin utilises the concept of a Merkle tree to its advantage; by way of background, we provide an explanation in this post. The following aids as a technical description and definition of similar concepts used more generally in Bitcoin and specifically within SPV. Merkle trees are hierarchical data structures that enable secure verification of collections of data. In a Merkle tree, each node in the tree has been given an index pair (i, j) and is represented as N(i, j). The indices i, j are simply numerical labels that are related to a specific position in the tree. An important feature of the Merkle tree is that the construction of each of its nodes is governed by the following (simplified) equations: 퐻(퐷 ) 푖 = 푗 푁(푖, 푗) = { 푖 , 퐻(푁(푖, 푘) ∥ 푁(푘 + 1, 푗)) 푖 ≠ 푗 where 푘 = (푖 + 푗 − 1)⁄2 and H is a cryptographic hash function. A labelled, binary Merkle tree constructed according to the equations is shown in figure 1, from which we can see that the i = j case corresponds to a leaf node, which is simply the hash of the th corresponding i packet of data Di. The 푖 ≠ 푗 case corresponds to an internal or parent node, which is generated by recursively hashing and concatenating child nodes, until one parent (the Merkle root) is found. Figure 1. A Merkle tree. For example, the node 푁(1,4) is constructed from the four data packets 퐷1, … , 퐷4 as 푁(1,4) = 퐻(푁(1,2) ∥ 푁(3,4)) .
    [Show full text]
  • Practical Authenticated Pattern Matching with Optimal Proof Size
    Practical Authenticated Pattern Matching with Optimal Proof Size Dimitrios Papadopoulos Charalampos Papamanthou Boston University University of Maryland [email protected] [email protected] Roberto Tamassia Nikos Triandopoulos Brown University RSA Laboratories & Boston University [email protected] [email protected] ABSTRACT otherwise. More elaborate models for pattern matching involve We address the problem of authenticating pattern matching queries queries expressed as regular expressions over Σ or returning multi- over textual data that is outsourced to an untrusted cloud server. By ple occurrences of p, and databases allowing search over multiple employing cryptographic accumulators in a novel optimal integrity- texts or other (semi-)structured data (e.g., XML data). This core checking tool built directly over a suffix tree, we design the first data-processing problem has numerous applications in a wide range authenticated data structure for verifiable answers to pattern match- of topics including intrusion detection, spam filtering, web search ing queries featuring fast generation of constant-size proofs. We engines, molecular biology and natural language processing. present two main applications of our new construction to authen- Previous works on authenticated pattern matching include the ticate: (i) pattern matching queries over text documents, and (ii) schemes by Martel et al. [28] for text pattern matching, and by De- exact path queries over XML documents. Answers to queries are vanbu et al. [16] and Bertino et al. [10] for XML search. In essence, verified by proofs of size at most 500 bytes for text pattern match- these works adopt the same general framework: First, by hierarchi- ing, and at most 243 bytes for exact path XML search, indepen- cally applying a cryptographic hash function (e.g., SHA-2) over the dently of the document or answer size.
    [Show full text]
  • A New Blockchain-Based Multi-Level Location Secure Sharing Scheme
    applied sciences Article A New Blockchain-Based Multi-Level Location Secure Sharing Scheme Qiuhua Wang 1,* , Tianyu Xia 1, Yizhi Ren 1, Lifeng Yuan 1 and Gongxun Miao 2 1 School of Cyberspace, Hangzhou Dianzi University, Hangzhou 310018, China; [email protected] (T.X.); [email protected] (Y.R.); [email protected] (L.Y.) 2 Zhongfu Information Co., Ltd., Jinan 250101, China; [email protected] * Correspondence: [email protected]; Tel.: +86-0571-868-73820 Abstract: Currently, users’ location information is collected to provide better services or research. Using a central server to collect, store and share location information has inevitable defects in terms of security and efficiency. Using the point-to-point sharing method will result in high computation overhead and communication overhead for users, and the data are hard to be verified. To resolve these issues, we propose a new blockchain-based multi-level location secure sharing scheme. In our proposed scheme, the location data are set hierarchically and shared with the requester according to the user’s policy, while the received data can be verified. For this, we design a smart contract to implement attribute-based access control and establish an incentive and punishment mechanism. We evaluate the computation overhead and the experimental results show that the computation overhead of our proposed scheme is much lower than that of the existing scheme. Finally, we analyze the performances of our proposed scheme and demonstrate that our proposed scheme is, overall, better than existing schemes. Keywords: location sharing; privacy preserving; blockchain; Merkle tree; smart contract; attribute- Citation: Wang, Q.; Xia, T.; Ren, Y.; based access control Yuan, L.; Miao, G.
    [Show full text]