当前位置:网站首页>Function analysis and source code of hash guessing game system development
Function analysis and source code of hash guessing game system development
2022-07-04 20:36:00 【VC_ MrsFu123】
Hash (Hash) Algorithm , Hash function . It's a one-way cryptosystem , That is, it is an irreversible mapping from plaintext to ciphertext , Only the encryption process , No decryption process . meanwhile , Hash function can change the input of any length to get fixed length output . This one-way feature of the hash function and the fixed length of the output data make it possible to generate messages or data .
The hash algorithm ( Hash algorithm or message digest algorithm ) It is a basic technology used in information storage and query , It is based on Hash File construction method of function , Map a given key value of any length to a hash value of fixed length , Generally used for authentication 、 authentication 、 encryption 、 Index, etc. . Its main advantage is that the operation is simple , Short pretreatment time , Low memory consumption , Matching search speed is relatively fast , Easy to maintain and refresh , Support more matching rules .
Hash Methods of constructors
1. direct addressing :
Direct addressing is based on data element keywords k Itself or its linear function as its hash address , namely :H(k)=k or H(k)=a×k+b;( among a,b Constant )
2. Digital analysis :
Suppose that every keyword in the keyword set is created by s Digit composition (u1,u2,…,us), Analyze the whole set of keywords , And a number of evenly distributed bits or their combination are extracted as addresses .
Numerical analysis is a method of taking some digits with uniform values in the keywords of data elements as hash addresses . That is, when there are many digits of keywords , You can analyze the keywords , Lose the unevenly distributed bits , As Hashi is worth . It is only suitable for all cases where the keyword value is known . By analyzing the distribution, the keyword value range is transformed into a smaller keyword value range .
3. Folding method :
Split keywords into parts , Then take the sum of them as the hash address . Two methods of superposition processing : Shift stacking : Align and add the low order of the divided parts ; Boundary overlay : Fold back and forth along the division boundary from one end , And then align and add .
The so-called folding method is to divide keywords into parts with the same number of digits ( The number of digits in the last part can be different ), And then you take the sum of these parts ( Give up the carry ), This method is called folding method . This method is applicable to keywords with many digits , And the number distribution on each digit in the keyword is roughly uniform .
In the folding method, digital folding is divided into two methods: shift superposition and boundary superposition , Shift superposition is to align the lowest bit of each part after segmentation , Then I add ; Boundary superposition is folding back and forth along the division boundary from one end to the other , And then align and add .
Hash property :
(1) One way .That is,given an input number,it is easy to calculate its hash value,but given a hash value,the original input number cannot be obtained according to the same algorithm.
(2) Weak anti-collision .That is,given an input number,it is computationally infeasible to find another hash value to get a given number when using the same method.
(3) Strong collision resistance .That is,for any two different input numbers,it is not feasible to calculate the same hash value according to the same algorithm.
边栏推荐
- 什么是区块哈希竞猜游戏系统开发?哈希竞猜游戏系统开发(案例成熟)
- The problem of the maximum difference between the left and right maxima
- 如何让你的小游戏适配不同尺寸的手机屏幕
- What financial products can you buy with a deposit of 100000 yuan?
- PHP pseudo original API docking method
- Every time I look at the interface documents of my colleagues, I get confused and have a lot of problems...
- Cbcgptabwnd control used by BCG (equivalent to MFC TabControl)
- Application practice | Shuhai supply chain construction of data center based on Apache Doris
- 凌云出海记 | 文华在线&华为云:打造非洲智慧教学新方案
- Wireshark network packet capture
猜你喜欢
如何让你的小游戏适配不同尺寸的手机屏幕
YOLOv5s-ShuffleNetV2
Actual combat simulation │ JWT login authentication
Actual combat simulation │ JWT login authentication
Every time I look at the interface documents of my colleagues, I get confused and have a lot of problems...
QT writing the Internet of things management platform 38- multiple database support
Ziguang zhanrui completed the first 5g R17 IOT NTN satellite on the Internet of things in the world
Qt编写物联网管理平台38-多种数据库支持
Application practice | Shuhai supply chain construction of data center based on Apache Doris
Employment prospects and current situation of Internet of things application technology
随机推荐
Delete the characters with the least number of occurrences in the string [JS, map sorting, regular]
Employment prospects of neural network Internet of things application technology [welcome to add]
Length of the longest integrable subarray
电脑页面不能全屏怎么办?Win11页面不能全屏的解决方法
Kotlin basic data type
什么叫内卷?
如何让你的小游戏适配不同尺寸的手机屏幕
Practice examples to understand JS strong cache negotiation cache
Template_ Large integer subtraction_ Regardless of size
B2B mall system development of electronic components: an example of enabling enterprises to build standardized purchase, sale and inventory processes
What does the neural network Internet of things mean? Popular explanation
Win11系统wifi总掉线怎么办?Win11系统wifi总掉线的解决方法
Actual combat simulation │ JWT login authentication
Six stones programming: about code, there are six triumphs
六石编程学:关于代码,有六个得意
同事的接口文档我每次看着就头大,毛病多多。。。
Flet教程之 07 PopupMenuButton基础入门(教程含源码)
凌云出海记 | 一零跃动&华为云:共助非洲普惠金融服务
针对深度学习的“失忆症”,科学家提出基于相似性加权交错学习,登上PNAS
更强的 JsonPath 兼容性及性能测试之2022版(Snack3,Fastjson2,jayway.jsonpath)