CN113676329A - 一种基于ecdsa算法的电子公文交换加密方法 - Google Patents
一种基于ecdsa算法的电子公文交换加密方法 Download PDFInfo
- Publication number
- CN113676329A CN113676329A CN202110825086.1A CN202110825086A CN113676329A CN 113676329 A CN113676329 A CN 113676329A CN 202110825086 A CN202110825086 A CN 202110825086A CN 113676329 A CN113676329 A CN 113676329A
- Authority
- CN
- China
- Prior art keywords
- information
- ciphertext
- sender
- signature
- official document
- 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.)
- Pending
Links
- 238000000034 method Methods 0.000 title claims abstract description 21
- 230000005540 biological transmission Effects 0.000 abstract description 6
- 230000007547 defect Effects 0.000 description 1
Images
Classifications
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L9/00—Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols
- H04L9/32—Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols including means for verifying the identity or authority of a user of the system or for message authentication, e.g. authorization, entity authentication, data integrity or data verification, non-repudiation, key authentication or verification of credentials
- H04L9/3247—Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols including means for verifying the identity or authority of a user of the system or for message authentication, e.g. authorization, entity authentication, data integrity or data verification, non-repudiation, key authentication or verification of credentials involving digital signatures
- H04L9/3252—Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols including means for verifying the identity or authority of a user of the system or for message authentication, e.g. authorization, entity authentication, data integrity or data verification, non-repudiation, key authentication or verification of credentials involving digital signatures using DSA or related signature schemes, e.g. elliptic based signatures, ElGamal or Schnorr schemes
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L9/00—Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols
- H04L9/32—Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols including means for verifying the identity or authority of a user of the system or for message authentication, e.g. authorization, entity authentication, data integrity or data verification, non-repudiation, key authentication or verification of credentials
- H04L9/3236—Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols including means for verifying the identity or authority of a user of the system or for message authentication, e.g. authorization, entity authentication, data integrity or data verification, non-repudiation, key authentication or verification of credentials using cryptographic hash functions
Landscapes
- Engineering & Computer Science (AREA)
- Computer Security & Cryptography (AREA)
- Computer Networks & Wireless Communication (AREA)
- Signal Processing (AREA)
- Telephonic Communication Services (AREA)
Abstract
本发明提供了一种基于ECDSA算法的电子公文交换加密方法,所述方法包括:发送方利用自身私钥K将需要传输的公文m进行签名运算形成密文s,而后对m进行摘要运算生产r,而后将(s,r)发送给接收方,接收方收到密文后用发送方的公钥Q将密文s解密生成明文v,而后对v进行摘要运算生成v 1,而后对比v 1与r是否一致,若一致,则传输成功。
Description
技术领域
本发明涉及数据安全领域,更具体地,涉及一种基于 ECDSA算法的电子公文交换加密方法。
背景技术
由于传统的电子公文交换加密技术无法验证发送方的身份并且无法验证信息是否在传输过程中被篡改,故而市场需要一种能够保证电子公文安全可靠传输、不被篡改的电子公文交换加密方法。而现有的电子公文交换系统的建设目的,就是保证信息在不同政府部门之间进行电子公文传输时的同时能保证其安全性与高效性。
发明内容
针对现有技术中的不足,本发明的目的在于本发明提供了一种基于 ECDSA算法的电子公文交换加密方法,所提出的方法具有传输安全性高,防篡改等功能。
本发明提供了一种基于 ECDSA算法的电子公文交换加密方法,电子公文发送方利用自身私钥K将需要传输的公文m进行签名运算形成密文s,而后对m进行摘要运算生产r,而后将(s, r)发送给接收方,接收方收到密文后用发送方的公钥Q将密文s解密生成明文v,而后对v进行摘要运算生成v 1,而后对比v 1与r是否一致,若一致,则传输成功。
其中所述私钥签名数据过程应满足以下过程,并最终生成密文(s, r):
公钥解签数据过程应满足下公式,并最终还原数据信息当v 1 = r时认为签名有效:
ECDSA算法的原理是发送方利用私钥将信息加密后再发送,接收方收到信息后需在确认是对方发送的消息后使用公钥对其进行验证后解密,但是椭圆曲线运算的规则更加难以破解。
附图说明
图1示出了根据本发明示例实施例的一种基于ECDSA算法的电子公文交换加密方法的流程图。
具体实施方式
如图1所示,本发明实施例提供一种基于ECDSA算法的电子公文交换加密方法。
首先,在步骤S101发送方使用其私钥K将公文m签名,形成密文s。
在步骤S102判断签名是否成功,若失败,则返回“签名失败”,若成功,则进行下一步。
在步骤S103中,发送方利用摘要算法计算发送公文m的摘要r。
在步骤S104中发送方将计算生成的密文(r, s)发送给接收方,在步骤S102,S103,S104中生成的密文应满足以下步骤:
在步骤S105接收方利用公钥Q,对s进行解密操作,生成v。
在步骤S106若解密失败,则返回“无法验证发送者身份”,若解密成功,则进入下一步。
在步骤S107接收方利用摘要算法计算v的摘要v 1,在步骤S105,S106,S107中生成的密文应满足以下步骤:
在步骤S108对比v 1和r,若v 1≠r则返回“信息传输过程中被篡改”若v 1 = r则进入下一步。
在步骤S109中,程序可判定电子公文交换加密传输成功。
Claims (4)
1.一种基于 ECDSA算法的电子公文交换加密方法,所述方法包括:发送方利用自身私钥K将需要传输的公文m进行签名运算形成密文s,而后对m进行摘要运算生产r,而后将(s,r)发送给接收方,接收方收到密文后用发送方的公钥Q将密文s解密生成明文v,而后对v进行摘要运算生成v 1,而后对比v 1与r是否一致,若一致,则传输成功。
2.根据权利要求1所述的方法,ECDSA算法具备加密和解密的速度快、安全性高、破解复杂程度高等优势,原理是发送方利用私钥将信息加密后再发送,接收方收到信息后需在确认是对方发送的消息后使用公钥对其进行验证后解密,但是椭圆曲线运算的规则更加难以破解。
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN202110825086.1A CN113676329A (zh) | 2021-07-21 | 2021-07-21 | 一种基于ecdsa算法的电子公文交换加密方法 |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN202110825086.1A CN113676329A (zh) | 2021-07-21 | 2021-07-21 | 一种基于ecdsa算法的电子公文交换加密方法 |
Publications (1)
Publication Number | Publication Date |
---|---|
CN113676329A true CN113676329A (zh) | 2021-11-19 |
Family
ID=78539723
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
CN202110825086.1A Pending CN113676329A (zh) | 2021-07-21 | 2021-07-21 | 一种基于ecdsa算法的电子公文交换加密方法 |
Country Status (1)
Country | Link |
---|---|
CN (1) | CN113676329A (zh) |
-
2021
- 2021-07-21 CN CN202110825086.1A patent/CN113676329A/zh active Pending
Similar Documents
Publication | Publication Date | Title |
---|---|---|
CN109743171B (zh) | 一种解决多方数字签名、时间戳及加密的密钥串联方法 | |
CN109672539A (zh) | Sm2算法协同签名及解密方法、装置及系统 | |
US11914754B2 (en) | Cryptographic method for verifying data | |
US8688998B2 (en) | Resilent cryptographic scheme | |
CN110048849B (zh) | 一种多层保护的会话密钥协商方法 | |
CN110113150B (zh) | 基于无证书环境的可否认认证的加密方法和系统 | |
CN111769938B (zh) | 一种区块链传感器的密钥管理系统、数据验证系统 | |
CN104901935A (zh) | 一种基于cpk的双向认证及数据交互安全保护方法 | |
US20200351100A1 (en) | Cryptographic method for verifying data | |
CN114826656A (zh) | 一种数据链路可信传输方法和系统 | |
CN112564906A (zh) | 一种基于区块链的数据安全交互方法及系统 | |
CN114650173A (zh) | 一种加密通讯方法及系统 | |
CN1316405C (zh) | 一种获得数字签名和实现数据安全的方法 | |
CN111049738B (zh) | 基于混合加密的电子邮件数据安全保护方法 | |
CN114826659B (zh) | 一种加密通讯方法及系统 | |
CN114003970A (zh) | 一种基于哈希链的低开销消息完整性保护方法 | |
CN107947939A (zh) | 支持sm3密码杂凑算法和sm2数字签名算法的pdf签名方法和系统 | |
CN114422135A (zh) | 一种基于椭圆曲线的可验证的不经意传输方法 | |
CN113837756A (zh) | 一种电子发票验证方法和系统 | |
WO2008133521A1 (en) | Method for signing and encrypting digital data | |
CN115174085A (zh) | 一种基于rsa加密的数据安全传输方法 | |
CN113676329A (zh) | 一种基于ecdsa算法的电子公文交换加密方法 | |
CN107947938A (zh) | 针对pdf使用sm3算法和sm2算法数字签名的验证方法和系统 | |
CN111641494A (zh) | 全球区块链的实现方法及装置 | |
Wong et al. | E–mail protocols with perfect forward secrecy |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
PB01 | Publication | ||
PB01 | Publication | ||
WD01 | Invention patent application deemed withdrawn after publication |
Application publication date: 20211119 |
|
WD01 | Invention patent application deemed withdrawn after publication |