CN111866134B - Method and system for generating hash value and address of block chain transaction and storage medium - Google Patents

Method and system for generating hash value and address of block chain transaction and storage medium Download PDF

Info

Publication number
CN111866134B
CN111866134B CN202010699622.3A CN202010699622A CN111866134B CN 111866134 B CN111866134 B CN 111866134B CN 202010699622 A CN202010699622 A CN 202010699622A CN 111866134 B CN111866134 B CN 111866134B
Authority
CN
China
Prior art keywords
code
address
hash value
generating
prefix
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.)
Active
Application number
CN202010699622.3A
Other languages
Chinese (zh)
Other versions
CN111866134A (en
Inventor
翟红鹰
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Unicom Lingjing Video Jiangxi Technology Co ltd
Original Assignee
Unicom Lingjing Video Jiangxi Technology Co ltd
Priority date (The priority date 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 date listed.)
Filing date
Publication date
Application filed by Unicom Lingjing Video Jiangxi Technology Co ltd filed Critical Unicom Lingjing Video Jiangxi Technology Co ltd
Priority to CN202010699622.3A priority Critical patent/CN111866134B/en
Publication of CN111866134A publication Critical patent/CN111866134A/en
Application granted granted Critical
Publication of CN111866134B publication Critical patent/CN111866134B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/01Protocols
    • H04L67/10Protocols in which an application is distributed across nodes in the network
    • H04L67/1097Protocols in which an application is distributed across nodes in the network for distributed storage of data in networks, e.g. transport arrangements for network file system [NFS], storage area networks [SAN] or network attached storage [NAS]
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES; SYSTEMS OR METHODS SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES, NOT OTHERWISE PROVIDED FOR
    • G06Q40/00Finance; Insurance; Tax strategies; Processing of corporate or income taxes
    • G06Q40/04Trading; Exchange, e.g. stocks, commodities, derivatives or currency exchange
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L9/00Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols
    • H04L9/50Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols using hash chains, e.g. blockchains or hash trees

Abstract

The invention discloses a method and a system for generating a hash value and an address of a block chain transaction and a storage medium. The method for generating the hash value and the address of the blockchain transaction comprises the following steps: acquiring a prefix code, a check code, a mechanism code and an address code and/or a hash value code; generating a user address according to the prefix code, the check code, the mechanism code and the address code; and/or; and generating a block chain transaction hash value according to the prefix code, the check code, the mechanism code and the hash value code. The technical scheme of the invention solves the technical problems that in the related technology, transaction hash values and addresses generated by a blockchain system cannot be traced and the number of bits is too long, which easily causes transfer risks and wastes storage space.

Description

Method and system for generating hash value and address of block chain transaction and storage medium
Technical Field
The present invention relates to the field of blockchain technologies, and in particular, to a method and a system for generating a hash value and an address for a blockchain transaction, and a computer-readable storage medium.
Background
1. Block chain storage
Blockchains are a distributed ledger technique for recording transactions between two or more parties. The blockchain ledger acts as a decentralized database for maintaining detailed information for each transaction. These transactions are added to the ledger in chronological order and stored in the form of a set of data blocks. Each block references a preceding block to form an interconnected chain.
Ledgers are distributed across multiple nodes, with each node maintaining a complete copy. The blockchain automatically synchronizes and validates transactions on all nodes. The ledger is transparent to all participating members and can be checked by all members, thereby eliminating the need for a central authority or third party checking services.
As the number of blocks in the blockchain increases and the number of transactions stored in the blocks increases, the blockchain account is larger and larger, and as a node in the blockchain, it is necessary to prepare a large amount of storage and bandwidth, and the time for synchronizing the latest block in the blockchain system is longer and longer.
2. Block chain user address
Public keys (public keys for short) and private keys (private keys for short) are contents of asymmetric encryption algorithms in cryptography. As the name implies, the public key is made public, while the private key is kept secure. The private key is generated from a random seed, and the public key is derived from the private key through an algorithm. Since the public key is too long, an "address" appears for simplicity and practicality, and the address is derived from the public key. These deductions are one-way irreversible. I.e., the address cannot derive the public key, and the public key cannot derive the private key.
In the prior art, in a block chain system popular in the market, addresses are all generated by simply performing Keccak256 operation on public keys to generate 32-bit hash, and then 20 bytes are intercepted from the 32-bit hash to serve as a user address. The bit coin address is that base58 is carried out on 20 bytes and then a prefix is added, the Etheng directly carries out hexadecimal conversion on the 20 bytes, the total length of the generated address reaches 42 bits, the purpose that the address is difficult to repeat can be realized, however, the longer bit number occupies too much space capacity of a server, and in the actual using process, the transfer operation between users has huge risk because the address is unidentifiable (the transaction source can not be known through the address), if the transfer address is wrong, the users can not trace the source and check the mistake, and the transaction amount can be lost forever.
3. Block chain transaction hash
A hash function is a method of creating a small digital "fingerprint" from any kind of data. The hash function compresses a message or data into a digest so that the amount of data becomes small, fixing the format of the data. This function mixes the data in a hash, recreating a fingerprint called a hash value (hash sums, or hashes). The hash value is typically represented by a short string of random letters and numbers.
The transaction hash is to combine the main transaction information from, to, value, gas, etc. in the transaction structure and calculate a feature value with the same length, and the calculated hash length is 256 bits, that is, a 256-bit binary number is finally calculated no matter what the original content of the transaction. Moreover, it can be ensured that corresponding hashes are necessarily different as long as the original content is different.
The popular block chain system in the market, the trade hash is all simple carries out the Keccak256 operation back to information in the structure of trading, generate 32 bit hashes, change 32 bit hashes hexadecimal again, the trade hash length of generation is 64 bits, the trade hash that generates like this is in the in-service use process, because length can occupy a large amount of block chain storage space too greatly, and the trade hash degree of distinguishing is low, can't judge out the trade that is that chain through the trade hash, also do not be favorable to block chain historical data to file the back, quick inquiry retrieval transaction.
Therefore, there is a need to provide a method, a system and a computer-readable storage medium for generating a new hash value and address of blockchain transaction to solve the above technical problems.
Disclosure of Invention
The invention mainly aims to provide a method for generating a block chain transaction hash value and an address, and aims to solve the technical problems that in the related technology, the transaction hash value and the address generated by a block chain system cannot be traced and the number of bits is too long, so that transfer risks and storage space waste are easily caused.
In order to achieve the above object, the present invention provides a method for generating a hash value and an address of a blockchain transaction, including the following steps:
acquiring a prefix code, a check code, a mechanism code and an address code and/or a hash value code;
generating a user address according to the prefix code, the check code, the mechanism code and the address code; and/or;
and generating a block chain transaction hash value according to the prefix code, the check code, the mechanism code and the hash value code.
Preferably, when the address code is acquired, the prefix code includes an address prefix corresponding to the address code;
when the hash value code is acquired, the prefix code includes a hash value prefix corresponding to the hash value code.
Preferably, before the step of obtaining the prefix code, the check code, the mechanism code, and the address code and/or the hash value code, the method further includes the following steps:
and generating the check code according to a preset standard.
Preferably, the mechanism code is generated according to a preset method of the user account generation mechanism.
Preferably, before the step of obtaining the prefix code, the check code, the mechanism code, and the address code and/or the hash value code, the method further includes the following steps:
and carrying out Keccak256 operation on the public key, converting 20-bit byte into a 10-system large integer, and converting into a 36-system large integer to generate the address code of the number plus the lower case letters.
Preferably, before the step of obtaining the prefix code, the check code, the mechanism code, and the address code and/or the hash value code, the method further includes the following steps:
and performing Keccak256 operation on the transaction structure, converting 20-bit byte into a 10-system large integer, and converting into a 36-system large integer to generate the hash value code of the number plus the lower case letters.
In order to solve the above technical problem, the present invention further provides a system for generating a hash value and an address for a blockchain transaction, including: a memory, a processor, and a computer program stored on the memory and executable on the processor; the computer program when executed by the processor implements the steps of the method of generating a blockchain transaction hash value and address as described.
In order to solve the above technical problem, the present invention further provides a computer-readable storage medium, where a computer program is stored, and when the computer program is executed by a processor, the steps of the method for generating a hash value and an address of a blockchain transaction are implemented.
The invention provides a block chain transaction hash value and address generation method, which comprises the steps of obtaining a prefix code, a check code, a mechanism code and an address code and/or hash value code; generating a user address according to the prefix code, the check code, the mechanism code and the address code; and/or; and generating a block chain transaction hash value according to the prefix code, the check code, the mechanism code and the hash value code.
Compared with the prior art, the user address and the block chain transaction hash value generated by the invention have the advantages that the digit is reduced, and the storage space of a block chain system can be greatly saved; moreover, through the combination of the mechanism code and the address code or the hash value code, the source can be traced accurately, so that the technical problems of high transfer error risk of the user account transfer and low identification degree of the transaction hash value are solved.
Drawings
Fig. 1 is a flowchart of a first embodiment of a method for generating a hash value and an address of a blockchain transaction according to the present invention;
fig. 2 is a flowchart illustrating a method for generating a hash value and an address of a blockchain transaction according to a second embodiment of the present invention;
fig. 3 is a flowchart illustrating a method for generating a hash value and an address of a blockchain transaction according to a third embodiment of the present invention;
fig. 4 is an architecture diagram of a system for generating a hash value and an address of a blockchain transaction according to the present invention.
The objects, features and advantages of the present invention will be further explained with reference to the accompanying drawings.
Detailed Description
It should be understood that the specific embodiments described herein are merely illustrative of the invention and are not intended to limit the invention.
First embodiment
Referring to fig. 1, to achieve the above object, in a first embodiment of the present invention, a method 100 for generating a hash value and an address of a blockchain transaction includes the following steps:
s10, acquiring a prefix code, a check code, a mechanism code and an address code;
when the address code is acquired, the prefix code comprises an address prefix corresponding to the address code; for example, the bitcoin address prefix is 1 or 3 and the wavefield address prefix is T.
And S20, generating a user address according to the prefix code, the check code, the mechanism code and the address code.
Before the step S10, the following steps are further included:
and generating the check code according to a preset standard.
Specifically, the check code is generated according to ISO/IEC 7064, 2003, international Bank Account Number (IBAN) MOD-97-10 standard.
And the mechanism code is generated according to a preset method of the user account generating mechanism. Wherein the institution code contains the institution number where the user initiated the transaction.
Before the step S10, the following steps are further included:
and carrying out Keccak256 operation on the public key, converting 20-bit byte into a 10-system large integer, and converting into a 36-system large integer to generate the address code of the number plus the lower case letters.
For ease of understanding, the following are illustrated:
the user address is generated according to the components, such as 1 bit of prefix, 2 bits of check code, 2 bits of mechanism code, 31 bits of address and 36 bits of total length of the user address, thereby saving 6 bits of storage space compared with the Ethengfang address.
Taking a bitcoin as an example, the address of the user address coming out according to the coding design rule can be b79013hrjdjw6ki5gd5ihn fzhyf3p4el26s.
Wherein, b is the prefix of the representative bit currency, and 79 is the check code calculated by the mod-97-10 algorithm; and 01 represents the exchange of the fire money, and 3hrjdjw6ki5gd5ihn0fzhyf3p4el26s is the address code converted by the user public key.
Compared with the prior art, the user address generated by the invention has reduced digit number, and can greatly save the storage space of a block chain system; and moreover, through the combination of the mechanism code and the address code, the source can be traced accurately, so that the technical problems that the transfer of the user is wrong and the source tracing correction cannot be carried out are solved.
Second embodiment
Referring to fig. 2, to achieve the above object, in a second embodiment of the present invention, a method 200 for generating a hash value and an address of a blockchain transaction includes the following steps:
s11, acquiring a prefix code, a check code, a mechanism code and a hash value code;
when the hash value code is acquired, the prefix code includes a hash value prefix corresponding to the hash value code; to indicate the particular blockchain to which the transaction hash value corresponds.
And S21, generating a block chain transaction hash value according to the prefix code, the check code, the mechanism code and the hash value code.
Before the step S11, the following steps are further included:
and generating the check code according to a preset standard.
Specifically, the check code is generated according to ISO/IEC 7064, 2003, international Bank Account Number (IBAN) MOD-97-10 standard.
And the mechanism code is generated according to a preset method of the user account generating mechanism. Wherein the institution code contains the institution number where the user initiated the transaction.
Before step S11, the following steps are also included:
and performing Keccak256 operation on the transaction structure, converting 20-bit byte into a large integer with a 10 system scale, and converting the large integer into a 36 system scale to generate the hash value code of the number plus the lower case letters.
For ease of understanding, the following are illustrated:
and generating a transaction hash according to the components, such as 2 bits of prefix, 2 bits of check code, 2 bits of mechanism code, 31 bits of hash, and 37 bits of total length of the transaction hash, thereby saving 27 bits of storage space compared with the transaction hash of other block chain systems.
Taking a bitcoin as an example, the address of the user address according to the coding design rule may be bt7601snrrd7 durhsdspobyh 28u2 fmorf 5yr5.
Wherein bt represents the transaction prefix of the bitcoin, 76 is the check code calculated by the mod-97-10 algorithm, 01 represents the fire coin exchange, and snrrd7 durhsgpobyh 28u2 fmorf 5yr5 is the hash value code converted from the transaction.
Compared with the prior art, the block chain transaction hash value generated by the invention has the advantages that the digit is reduced, and the storage space of a block chain system can be greatly saved; moreover, the mechanism code and the hash value code are combined to accurately trace the source, so that the technical problem of low transaction hash value identification degree is solved.
Third embodiment
Referring to fig. 3, to achieve the above object, in a third embodiment of the present invention, a method 300 for generating a hash value and an address of a blockchain transaction includes the following steps:
s12, acquiring a prefix code, a check code, a mechanism code, an address code and a hash value code;
wherein the principle of step S12 is the same as that of step S10 and step S11.
S22, generating a user address according to the prefix code, the check code, the mechanism code and the address code;
the step S22 is the same in principle as the step S20.
And S30, generating a block chain transaction hash value according to the prefix code, the check code, the mechanism code and the hash value code.
The principle of step S30 is the same as that of step S21.
Compared with the prior art, the user address and the block chain transaction hash value generated by the invention have the advantages that the digit is reduced, and the storage space of a block chain system can be greatly saved; moreover, through the combination of the mechanism code and the address code or the hash value code, the source can be traced accurately, so that the technical problems of high transfer error risk of the user account transfer and low identification degree of the transaction hash value are solved.
The invention also provides a system for generating the hash value and the address of the blockchain transaction.
Referring to fig. 4, the system for generating the hash value and address of the blockchain transaction includes: a memory, a processor, and a computer program stored on the memory and executable on the processor; the computer program, when executed by the processor, implements the steps of the method for generating a blockchain transaction hash value and address.
The specific steps of the method for generating a hash value and an address for blockchain transaction refer to the above embodiments, and since the system for generating a hash value and an address for blockchain transaction adopts all technical solutions of all the above embodiments, at least all the beneficial effects brought by the technical solutions of the above embodiments are achieved, and details are not repeated here.
The invention also provides a computer readable storage medium.
The computer-readable storage medium has stored thereon a computer program which, when executed by a processor, implements the steps of the method of generating a blockchain transaction hash value and address as described.
The specific steps of the method for generating a hash value and an address of a blockchain transaction refer to the above embodiments, and since the computer-readable storage medium adopts all technical solutions of all the above embodiments, at least all beneficial effects brought by the technical solutions of the above embodiments are achieved, and are not described in detail herein.
Through the above description of the embodiments, those skilled in the art will clearly understand that the method of the above embodiments can be implemented by software plus a necessary general hardware platform, and certainly can also be implemented by hardware, but in many cases, the former is a better implementation manner. Based on such understanding, the technical solution of the present invention or the portions contributing to the prior art may be embodied in the form of a software product, which is stored in a computer readable storage medium (such as ROM/RAM, magnetic disk, optical disk) as described above, and includes several instructions for causing a terminal device to enter the method according to the embodiments of the present invention.
In the description herein, references to the description of the term "one embodiment," "another embodiment," or "first through xth embodiments," etc., mean that a particular feature, structure, material, or characteristic described in connection with the embodiment or example is included in at least one embodiment or example of the invention. In this specification, the schematic representations of the terms used above do not necessarily refer to the same embodiment or example. Furthermore, the particular features, structures, materials, method steps, or characteristics described may be combined in any suitable manner in any one or more embodiments or examples.
It should be noted that, in this document, the terms "comprises," "comprising," or any other variation thereof, are intended to cover a non-exclusive inclusion, such that a process, method, article, or system that comprises a list of elements does not include only those elements but may include other elements not expressly listed or inherent to such process, method, article, or system. Without further limitation, an element defined by the phrase "comprising a … …" does not exclude the presence of another identical element in a process, method, article, or system that comprises the element.
The above-mentioned serial numbers of the embodiments of the present invention are merely for description and do not represent the merits of the embodiments.
The above description is only a preferred embodiment of the present invention, and is not intended to limit the scope of the present invention, and all equivalent structures or equivalent processes performed by the present invention or directly or indirectly applied to other related technical fields are also included in the scope of the present invention.

Claims (3)

1. A method for generating a hash value and an address of a blockchain transaction is characterized by comprising the following steps:
acquiring a prefix code, a check code, a mechanism code and an address code and/or a hash value code;
performing Keccak256 operation on the transaction structure, converting 20-bit byte into a 10-system large integer, and converting the 10-system large integer into a 36-system large integer to generate the hash value code of the number and the lower case letters;
performing Keccak256 operation on the public key, converting 20-bit byte into a 10-system large integer, and converting the large integer into a 36-system large integer to generate the address code of the number plus the lower case letters;
the mechanism code is generated according to a preset method of a user account generating mechanism; the organization code contains an organization number where the user initiates the transaction;
generating the check code according to a preset standard, and generating the check code according to ISO/IEC 7064, 2003, international Bank Account Number (IBAN) MOD-97-10 standard;
when the address code is acquired, the prefix code comprises an address prefix corresponding to the address code;
when the hash value code is acquired, the prefix code includes a hash value prefix corresponding to the hash value code;
generating a user address according to the prefix code, the check code, the mechanism code and the address code; and/or;
and generating a block chain transaction hash value according to the prefix code, the check code, the mechanism code and the hash value code.
2. A system for generating a blockchain transaction hash value and address, comprising: a memory, a processor, and a computer program stored on the memory and executable on the processor; the computer program when executed by the processor implements the steps of the method of generating blockchain transaction hash values and addresses of claim 1.
3. A computer-readable storage medium, having stored thereon a computer program which, when executed by a processor, carries out the steps of the method of generating a blockchain transaction hash value and address of any one of claim 1.
CN202010699622.3A 2020-07-20 2020-07-20 Method and system for generating hash value and address of block chain transaction and storage medium Active CN111866134B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202010699622.3A CN111866134B (en) 2020-07-20 2020-07-20 Method and system for generating hash value and address of block chain transaction and storage medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202010699622.3A CN111866134B (en) 2020-07-20 2020-07-20 Method and system for generating hash value and address of block chain transaction and storage medium

Publications (2)

Publication Number Publication Date
CN111866134A CN111866134A (en) 2020-10-30
CN111866134B true CN111866134B (en) 2023-01-13

Family

ID=73001223

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202010699622.3A Active CN111866134B (en) 2020-07-20 2020-07-20 Method and system for generating hash value and address of block chain transaction and storage medium

Country Status (1)

Country Link
CN (1) CN111866134B (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112749208A (en) * 2020-12-30 2021-05-04 普华云创科技(北京)有限公司 Distributed storage searching method and system based on secondary routing

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107911216A (en) * 2017-10-26 2018-04-13 矩阵元技术(深圳)有限公司 A kind of block chain transaction method for secret protection and system
AU2018100478A4 (en) * 2016-10-26 2018-06-07 Black Gold Coin, Inc. Systems and methods for providing a universal decentralized solution for verification of users with cross-verification features
CN109040341A (en) * 2018-08-27 2018-12-18 深圳前海益链网络科技有限公司 Intelligent contract address generating method, device, computer equipment and readable storage medium storing program for executing
CN110223075A (en) * 2019-05-22 2019-09-10 深圳壹账通智能科技有限公司 Identity identifying method, device, computer equipment and storage medium
CN110766384A (en) * 2019-09-06 2020-02-07 安徽高山科技有限公司 Method for tracking digital currency flow direction in block chain

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
AU2018100478A4 (en) * 2016-10-26 2018-06-07 Black Gold Coin, Inc. Systems and methods for providing a universal decentralized solution for verification of users with cross-verification features
CN107911216A (en) * 2017-10-26 2018-04-13 矩阵元技术(深圳)有限公司 A kind of block chain transaction method for secret protection and system
CN109040341A (en) * 2018-08-27 2018-12-18 深圳前海益链网络科技有限公司 Intelligent contract address generating method, device, computer equipment and readable storage medium storing program for executing
CN110223075A (en) * 2019-05-22 2019-09-10 深圳壹账通智能科技有限公司 Identity identifying method, device, computer equipment and storage medium
CN110766384A (en) * 2019-09-06 2020-02-07 安徽高山科技有限公司 Method for tracking digital currency flow direction in block chain

Also Published As

Publication number Publication date
CN111866134A (en) 2020-10-30

Similar Documents

Publication Publication Date Title
JP7266638B2 (en) DATA TRANSFER CONTROL METHOD AND SYSTEM BASED ON INTEGRATED BLOCKCHAIN
TWI810410B (en) Systems and methods for efficient and secure processing, accessing and transmission of data via a blockchain network
Yang et al. Blockchain-based publicly verifiable data deletion scheme for cloud storage
CA3058225C (en) Updating blockchain world state merkle patricia trie subtree
CN109902086B (en) Index creation method, device and equipment
US11233657B2 (en) Method and system for registering digital documents
US20210192512A1 (en) Method and apparatus for storing and obtaining merchant authentication data in blockchain network
CN109902071B (en) Service log storage method, system, device and equipment
JP2022119949A (en) Method and system for efficient transfer of cryptocurrency associated with salary payment on block chain that leads to automated salary payment method and system based on smart contracts
Garg et al. RITS-MHT: Relative indexed and time stamped Merkle hash tree based data auditing protocol for cloud computing
CN105760781B (en) The storage method, restoration methods and operating method of large data files can be deduced in order
CN107181797B (en) Block compression method and system of block chain
US10700850B2 (en) System and method for information protection
CN110689349B (en) Transaction hash value storage and searching method and device in blockchain
US11153097B1 (en) Systems and methods for distributed extensible blockchain structures
AU2018322507A1 (en) System and method for information protection
CN109493054B (en) Multi-chain information management method, device, storage medium and block chain identity analyzer
Camacho et al. Strong accumulators from collision-resistant hashing
CN113094334B (en) Digital service method, device, equipment and storage medium based on distributed storage
Gao et al. A decentralized trusted timestamping based on blockchains
Zhang et al. A secure cloud storage system based on discrete logarithm problem
CN111866134B (en) Method and system for generating hash value and address of block chain transaction and storage medium
Camacho et al. Strong accumulators from collision-resistant hashing
Jezek Ethereum Data Structures
CN112529550A (en) Anonymous transfer method and device based on block chain and electronic equipment

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
TA01 Transfer of patent application right

Effective date of registration: 20221222

Address after: 330200 Zone C, Mass Entrepreneurship Incubation Center, Xiaolan VR Industrial Base, No. 1888, Jinsha Third Road, Nanchang County, Nanchang City, Jiangxi Province

Applicant after: Unicom Lingjing Video (Jiangxi) Technology Co.,Ltd.

Address before: 100123 Room 202, 2 / F, building F1, Dongyi International Media Industrial Park, No.8, Gaojing Cultural Park Road, Chaoyang District, Beijing

Applicant before: Puhua Yunchuang Technology (Beijing) Co.,Ltd.

TA01 Transfer of patent application right
GR01 Patent grant
GR01 Patent grant