Position: Home page » Blockchain » Seven ways of blockchain security application

Seven ways of blockchain security application

Publish: 2021-05-18 01:54:46
1.

blockchain instry has great growth potential, and five aspects promote the healthy development of Technology Virtual reality and other technologies are another emerging technology that will have a significant impact on the future, which is expected to promote human beings from the era of information internet to the era of value Internet

some countries and regions in the United States, Japan and the European Union have promoted the development of blockchain as an important national development strategy, and vigorously promoted the development and application of blockchain technology. China also attaches great importance to the technological innovation and instrial development of blockchain. With the joint participation of it and other enterprises, a large number of new enterprises, new procts, new models and new applications have emerged. The application of blockchain in the fields of finance, government affairs, energy, medical and other instries has graally expanded, and is becoming an important force to drive the technological proct innovation and instrial transformation of various instries

the development of blockchain can be divided into three stages, namely, blockchain 1.0, represented by bitcoin and related financial infrastructure applications, and blockchain 2.0, represented by smart contract. At present, it is graally moving towards blockchain 3.0, which is based on blockchain technology and more complex in-depth application of smart contract

statistical analysis of blockchain investment and financing in the first half of the year. According to the statistical data of in depth analysis report on business model innovation and investment opportunities of China's blockchain instry published by foresight Instry Research Institute, in the first half of 2018, the amount of financing in the blockchain field was about 10.7 billion, with a year-on-year growth rate of 1426% compared with the same period in 2017; The number of investment and financing events in the field of blockchain has reached 205, and it is expected that the investment in the field of blockchain will usher in another peak this year

according to the distribution of investment and financing rounds in China's blockchain field, the proportion of investment rounds in the start-up period (before round b) is more than 95%, with the joint investment of many instry pioneers, and most enterprises are still running around

statistics and growth of blockchain investment and financing in the first half of 2014-2018

data source: China attaches great importance to the development and application of blockchain technology. Driven by multiple forces such as policy, technology and market, the pace of blockchain innovation has been accelerating. It has been deeply integrated with cloud computing, big data, Internet of things and other technologies. The scope of exploration and application has also expanded from digital assets to supply chain management, intelligent manufacturing, instrial Internet, social welfare, right protection and other fields

five aspects to promote the healthy development of blockchain technology, promote the high-quality development of digital economy

1, in-depth study and grasp the development trend of blockchain technology and instry. Pay close attention to the international development frontier, jointly promote the research of blockchain related technology and instry, promote the standardization of blockchain development instry behavior, and create a good development environment

2. Strengthen the construction of core technology capacity of blockchain

establish and improve the collaborative promotion mechanism among backbone enterprises, universities and research institutions, guide it enterprises to strengthen technical reserves, accelerate the breakthrough of key core technologies, and improve the performance, efficiency and security of blockchain

3. Support entrepreneurship and innovation in the field of blockchain

encourage cross-border integration between blockchain enterprises and user units, guide instry organizations to establish public service platforms, support third-party organizations to carry out evaluation and detection of blockchain services, promote rich instrial applications of blockchain, and serve the transformation and upgrading of the real economy

4. Actively build and improve the blockchain standard system

accelerate the development and application of key standards, and graally build a perfect standard system. Actively connect with ITU, ISO and other international standards organizations, substantially participate in more international standardization work, and actively contribute more "Chinese power"

5. Accelerate the improvement of the policy environment for blockchain development

support qualified enterprises to carry out application innovation and mode innovation, and guide and encourage enterprises, universities and scientific research institutes to jointly cultivate professional talents needed for blockchain development. Support eligible blockchain enterprises to enjoy the preferential tax policies of the state to support the development of software instry and small and medium-sized enterprises

the instrial scale is small, but the growth potential is huge

the blockchain economy is on the eve of the outbreak period. The financial instry is relatively widely used, and the application of other instries has also entered the stage of exploration and development. It is estimated that from 2017 to 2022, the direct market value of blockchain will increase from US $410 million to US $7.68 billion, with a compound annual growth rate of 79.6%. It is estimated that all kinds of extended business based on blockchain will reach US $100 billion in 2020

instry application areas continue to expand

the financial instry takes the lead in the application of blockchain technology, and many financial applications have been implemented; Medical instry is an important area of blockchain application, which can better protect privacy, improve service quality and management efficiency; The demand of social authentication for blockchain is rising rapidly to solve the proof problem caused by information asymmetry; The application of blockchain technology in communication, supply chain and other fields is expanding rapidly

2.

One of the characteristics of blockchain projects (especially public chains) is open source. Through open source code, to improve the credibility of the project, so that more people can participate. But the open source code also makes it easier for attackers to attack blockchain system. In the past two years, there have been a number of hacker attacks. Recently, the anonymous currency verge (xvg) was attacked again. The attacker locked a vulnerability in the xvg code, which allowed malicious miners to add false timestamps on the block, and then quickly dig out new blocks. In a few hours, the attacker obtained nearly $1.75 million worth of digital currency. Although the subsequent attack was successfully stopped, no one can guarantee whether the attacker will attack again in the future

of course, blockchain developers can also take some measures

one is to use professional code audit services,

the other is to understand the security coding specifications and take preventive measures

the security of cryptographic algorithm

with the development of quantum computer, it will bring a major security threat to the current cryptosystem. Blockchain mainly relies on elliptic curve public key encryption algorithm to generate digital signature for secure transactions. Currently, the most commonly used ECDSA, RSA, DSA, etc. can not withstand quantum attacks in theory, and there will be greater risks. More and more researchers begin to pay attention to cryptographic algorithms that can resist quantum attacks

of course, in addition to changing the algorithm, there is another way to improve the security:

refer to bitcoin's treatment of public key address to rece the potential risk of public key disclosure. As users, especially bitcoin users, the balance after each transaction is stored in a new address to ensure that the public key of the address where bitcoin funds are stored is not leaked

security of consensus mechanism

the current consensus mechanisms include proof of work (POW), proof of stake (POS), delegated proof of stake (dpos), practical Byzantine fault tolerance (pbft), etc

POW faces 51% attack. Because POW depends on computing power, when the attacker has the advantage of computing power, the probability of finding a new block will be greater than that of other nodes. At this time, the attacker has the ability to cancel the existing transaction. It should be noted that even in this case, the attacker can only modify his own transaction, but not the transaction of other users (the attacker does not have the private key of other users)

in POS, attackers can attack successfully only when they hold more than 51% token, which is more difficult than 51% computing power in pow

in pbft, when the malicious nodes are less than 1 / 3 of the total nodes, the system is secure. Generally speaking, any consensus mechanism has its own conditions. As an attacker, we also need to consider that once the attack is successful, the value of the system will return to zero. At this time, the attacker does not get any other valuable return except destruction

for the designers of blockchain projects, they should understand the advantages and disadvantages of each consensus mechanism, so as to select an appropriate consensus mechanism or design a new consensus mechanism according to the needs of the scene

security of smart contract

smart contract has the advantages of low operation cost and low risk of human intervention, but if there are problems in the design of smart contract, it may bring greater losses. In June 2016, the Dao, the most popular funding project of Ethereum, was attacked. The hacker obtained more than 3.5 million Ethereum coins, which later led to the bifurcation of Ethereum into Eth and etc

there are two aspects of the proposed measures:

one is to audit the security of smart contract, and the other is to follow the principle of smart contract security development

the security development principles of smart contract are: to be prepared for possible errors, to ensure that the code can correctly handle the bugs and vulnerabilities; Release smart contracts carefully, do well in function test and security test, and fully consider the boundary; Keep smart contracts simple; Pay attention to the threat intelligence of blockchain and check and update in time; Be clear about the characteristics of blockchain, such as calling external contracts carefully

security of digital wallet

there are three main security risks in digital wallet: first, design defects. At the end of 2014, a user lost hundreds of digital assets e to a serious random number problem (repeated r value). Second, the digital wallet contains malicious code. Third, the loss of assets caused by the loss or damage of computers and mobile phones

there are four main countermeasures:

one is to ensure the randomness of the private key

The second is to check the hash value before installing the software to ensure that the digital wallet software has not been tampered with

The third is to use cold wallet

The fourth is to back up the private key

3.

From the current mainstream blockchain projects, blockchain projects are mainly divided into four categories: the first category: currency; The second is platform; The third category: application category; The fourth type: asset token

currencies mainly act as the "exchange media" in the field of blockchain assets, and the exchange media refer to general equivalents, such as gold and silver bills in the past< (currency exchange on trading blockchain assets)

platform projects refer to the establishment of technical platforms to meet the needs of various blockchain application development, which can rece the threshold of application development on blockchain

application projects cover a wide range of fields, including finance, social networking, games, property rights protection, etc., and are also the fastest growing fields of blockchain assets

asset token project refers to the blockchain mapping of physical assets, that is, the physical assets on the chain. At present, there are no more than 10 varieties

01 currency

the first category is currency project, which is also the earliest blockchain project. Currency projects mainly include bitcoin and lightcoin. In addition, there is another kind of asset with the characteristics of anonymity. Its main functions include protecting the privacy of both sides of payment while realizing payment. The well-known ones are dash, monero and zcash. Currency is mainly used as the "exchange medium" in the field of blockchain assets. The exchange medium is the general equivalent you use to exchange goods. For example, gold, silver and silver bills can be used as the exchange medium in the past. At present, there are more than 2100 types of digital assets in the world, and the number of currency blockchain projects has increased rapidly recently. As of June 2018, bitcoin is still the largest market value

02 platform type

the second type is platform type blockchain project. The main function of platform type blockchain project is to establish a technical platform to meet the technical requirements of various blockchain application development; In short, platform applications allow developers to directly issue digital assets and write smart contracts on the blockchain. Smart contract is a computer program running on the blockchain database, which can be automatically executed under the conditions of its source code setting

for example, you develop a smart contract based on the house rent protocol on the blockchain. When the owner receives the rent, it will trigger the automatic execution and give the security key of the apartment to the tenant

the main function of platform blockchain projects is to establish the underlying technology platform, so that developers can do application development on the underlying technology platform. A considerable number of platforms are still in the development state. As of June 2018, Ethereum has the largest market value

03 application

the third category is application blockchain projects. Application projects are blockchain projects based on blockchain development platform (such as Ethereum), which can solve many problems in various fields of the real economy

for example, augur, Golem, vechain, omisego, which provides asset exchange and transfer services. Using blockchain technology, these projects can better solve the problems of trust and cross-border circulation. At the same time, using smart contracts and tokens on the blockchain, they can better realize automatic execution and greatly improve the efficiency of social and economic activities. Application blockchain projects cover a wide range of fields, including finance, social networking, games, property rights protection and so on. It is also the field with the fastest market value increment of blockchain projects at present

04 asset token

the fourth category is the asset token blockchain project. Asset token refers to linking the blockchain assets to physical assets such as gold and US dollars, which is the blockchain mapping of physical assets. As of February 2018, there are no more than 10 varieties. The typical representatives are usdt against US dollars, digix Dao against gold, Digix each token represents 1 gram of Gold Certified by the London Bullion Market Association. Asset token has the advantages of convenient transaction and safekeeping. First of all, asset token is more convenient for transaction. Because blockchain assets can be split, it has better liquidity

for example, at present, real estate needs to be transferred as a whole. If the real estate can be token, it can be split and purchased, which is more convenient for transaction. Secondly, the token of physical assets is more concive to custody. Gold is easy to wear out and cause losses in physical transactions, but there is no need for physical transfer after the token of physical assets, which is more concive to the custody of physical assets

4.

(1) The underlying platform of the blockchain is a domestic independent and controllable blockchain platform developed by the science and technology of the blockchain. With the characteristics of high performance, high availability, scalability, easy operation and maintenance, strong privacy protection, and hybrid storage, the platform cooperates with the data sharing and security computing platform bitxmesh, the blockchain open service platform filoop, the supply chain finance platform filolink, and other platforms The deposit service platform filoink and the smart contract security R & D platform meshsec can better support the applications of enterprises, governments, instry alliances and other instries, and promote the efficient circulation of value among multiple institutions

(2) JD chain is the underlying framework of enterprise level blockchain independently developed by JD, and its birth marks that JD has started the construction of "Zhizhen ecology" based on the baas platform of blockchain and the underlying chain of "jdchain". Relying on the "one key deployment" capability of multiple optimization implementation, JD Zhizhen chain service platform has achieved the leading second level blockchain node deployment. In addition, it also has the core advantages of open compatibility with a variety of underlying, enterprise level dynamic networking and other mature applications. The timely launch of JD Zhizhen chain will effectively promote the large-scale implementation of enterprise level blockchain applications in various instries, and promote the construction of China's and global trust economy

(3) thunderchain is a blockchain application project independently researched and developed by netxin technology under thunderchain, which has high concurrency and second level confirmation capability of millions of TPS. Based on the research and development of high-performance blockchain procts, Xunlei has built an open platform of Xunlei chain, which helps enterprises or indivial developers to deploy smart contracts, easily realize the proct and service on the chain, and make the application development of blockchain more convenient

(4) Jingtong blockchain

Jingtong blockchain is the core underlying technology of Jingtong technology's blockchain with independent intellectual property rights. It is an effective decentralized Internet trading network based on blockchain technology, which adopts layered design (5 layers) underlying platform and multi language intelligent contract system, and has realized cross chain function. It has multi-level, all-round and one-stop service capabilities such as private chain, cloud chain and alliance chain. The layout of instry and regional ecology has taken shape

in addition to the above blockchain procts, there are community led LTC, cosmos, iota, Neuros, nuls, MOAC, etc., and enterprise led ripple, stellar, Weizhong bcos, network xuperchain, Huawei, Ping'an, Wanxiang, ant financial services, Zhongan, Bubi, matrix element, secret ape, zhongxiangbit, complex beauty, Shanghai Lianjing, etc

extended data:

blockchain is far more than a technology, which involves the spirit of "multi-party cooperation". In modern society, a lot of things must rely on everyone's cooperation to achieve 1 + 1 & gt; But we should try our best to avoid the problem of "information asymmetry" in cooperation

therefore, members of the alliance should keep accounts and share data together, and make everything public to eliminate "information asymmetry", so as to protect everyone's interests and make the business environment develop healthily. Honest work will get e benefits, if cheating will naturally be known to all. Technology is the foundation to help achieve this pattern. This is the more important "blockchain thinking"

5. Blockchain technology is a decentralized distributed ledger database, which is characterized by decentralization, open and transparent data, transparent information and difficult to tamper with
at present, blockchain technology has been applied in many fields such as supply chain, manufacturing instry, social welfare, public service, etc. blockchain technology can be applied in smart contract, securities, record preservation, etc.
6.

A: the main application fields of blockchain technology are finance, Internet of things and logistics, public service, digital right, insurance and public welfare

First, in the field of finance,

blockchain has great potential application value in international exchange, letter of credit, equity registration, stock exchange and other financial fields

Second, the Internet of things and logistics

blockchain can also be naturally combined in the field of Internet of things and logistics. Through blockchain, we can rece logistics costs, trace the proction and delivery process of goods, and improve the efficiency of supply chain management

Third, in the field of public service, blockchain is closely related to people's proction and life in the fields of public management, energy and transportation. However, the centralization of these fields also brings some problems, which can be transformed by blockchain

Fourthly, in the field of digital right, through blockchain technology, works can be authenticated to prove the existence of text, video, audio and other works and ensure the authenticity and uniqueness of ownership

In the field of insurance, insurance institutions are responsible for fund collection, investment and claim settlement, and often have higher management and operation costs

Sixth, the data stored on the public welfare field

blockchain is highly reliable and tamperable, which is naturally suitable for social public welfare scenarios. The relevant information in the public welfare process, such as donation project, collection details, fund flow, recipient feedback, etc., can be stored on the blockchain, and can be made transparent and public, which is convenient for social supervision

7. Application of blockchain technology in voting
kuaishang takes the lead in applying blockchain technology to the voting field nationwide, effectively solving the trust problem of voting data, providing the most real and effective data for the participants, protecting the rights and interests of real voting users, and making blockchain technology "people-friendly", so that the general public can quickly perceive and share the information in the field of life services Enjoy the convenience of blockchain technology
Application of blockchain technology in digital asset registration
Jinzhu digital asset service platform takes the lead in using blockchain technology, which is a global distributed ledger technology with the characteristics of traceability, non tampering and non forgery. The digital assets of the platform come from the standard issuers of digital assets, and the asset value is determined by the open market to avoid overestimation or undervaluation
the application of blockchain technology in the financial instry
ant financial's independent and controllable financial grade commercial blockchain platform has been deployed in multiple social and commercial application scenarios by multiple institutions and countries. Ant blockchain platform supports second level confirmation for transactions, and the consensus mechanism uses efficient parallel consensus algorithm to ensure the high performance of the blockchain platform, Ant blockchain has been applied in many proction level applications, applying leading technologies to people's livelihood, commerce, finance and other fields.
8. Hello, it is reported that the public platform of SMIC blockchain in Changsha is going to launch blockchain + human resource services recently. We can look forward to how they can do blockchain + human resource applications.
9. The French Knight group has developed a verification system to organically connect the "signature" physical file with the blockchain, which is the application of blockchain technology.
Hot content
Inn digger Publish: 2021-05-29 20:04:36 Views: 341
Purchase of virtual currency in trust contract dispute Publish: 2021-05-29 20:04:33 Views: 942
Blockchain trust machine Publish: 2021-05-29 20:04:26 Views: 720
Brief introduction of ant mine Publish: 2021-05-29 20:04:25 Views: 848
Will digital currency open in November Publish: 2021-05-29 19:56:16 Views: 861
Global digital currency asset exchange Publish: 2021-05-29 19:54:29 Views: 603
Mining chip machine S11 Publish: 2021-05-29 19:54:26 Views: 945
Ethereum algorithm Sha3 Publish: 2021-05-29 19:52:40 Views: 643
Talking about blockchain is not reliable Publish: 2021-05-29 19:52:26 Views: 754
Mining machine node query Publish: 2021-05-29 19:36:37 Views: 750