本项目实现 PKCS#7/加密消息语法的子集(RFC2315、RFC5652),以及相应国密支持《GB/T 35275-2017 信息安全技术 SM2密码算法加密签名消息语法规范》。这是 mozilla-services/pkcs7 的一个分支,目前mozilla-services/pkcs7已经是弃用状态,代码仓库也已经进入存档、只读状态。
数字信封数据,使用对称加密算法加密数据,使用非对称加密加密数据密钥。支持的对称加密算法(以及模式)有
支持的非对称加密算法为:
(是否国密是指OID也使用国密体系)
是否国密 | 加密 | 解密(先调用Parse ) |
---|---|---|
否 | Encrypt | Decrypt |
否 | EncryptUsingPSK | DecryptUsingPSK |
是 | EncryptSM | Decrypt |
是 | EncryptCFCA | DecryptCFCA |
是 | EncryptSMUsingPSK | DecryptUsingPSK |
关于EncryptSM / EncryptCFCA
的区别,请参考CFCA互操作性指南。
带PSK(Pre-shared key)后缀的方法,其对称加密密钥由调用者提供,而非随机生成。
加密:对应本项目的pkcs7.EncryptUsingPSK
和pkcs7.EncryptSMUsingPSK
方法。
解密:对应本项目的pkcs7.DecryptUsingPSK
方法(当然要先调用pkcs7.Parse
)。
签名数据,使用证书对应的私钥进行签名,理论上支持多个签名者,但通常使用场景都是单签。和数字信封数据类似,也分国密和非国密。
(是否国密是指OID也使用国密体系)
是否国密 | 方法 | 默认签名算法 |
---|---|---|
否 | NewSignedData |
SHA1 |
是 | NewSMSignedData |
SM3 |
可选步骤:调用SetDigestAlgorithm
设置想要的签名算法,通常国密不需要修改。
接着调用AddSigner
或AddSignerChain
方法,进行签名;可以通过SignerInfoConfig.SkipCertificates
指定忽略证书项(最终签名数据中不包含证书项);
如果进行Detach签名,则调用Detach
方法;
最后调用Finish
方法,序列化输出结果。
就是外部签名,被签名数据不包含在SignedData中(也就是其ContentInfo.Content为空)。
In PKCS#7 SignedData, attached and detached formats are supported… In detached format, data that is signed is not embedded inside the SignedData package instead it is placed at some external location…
可以参考RFC2315的第7章 注3:
The optional omission of the content field makes it possible to construct “external signatures,” for example, without modification to or replication of the content to which the signatures apply. In the case of external signatures, the content being signed would be omitted from the “inner” encapsulated ContentInfo value included in the signed-data content type.
这种外部签名要验签的话,需要先提供被签名数据。以下代码片段来自sign_test.go中的testSign方法:
p7, err := Parse(signed)
if err != nil {
t.Fatalf("test %s/%s/%s: cannot parse signed data: %s", sigalgroot, sigalginter, sigalgsigner, err)
}
if testDetach {
// Detached signature should not contain the content
// So we should not be able to find the content in the parsed data
// We should suppliment the content to the parsed data before verifying
p7.Content = content
}
if !bytes.Equal(content, p7.Content) {
t.Errorf("test %s/%s/%s: content was not found in the parsed data:\n\tExpected: %s\n\tActual: %s", sigalgroot, sigalginter, sigalgsigner, content, p7.Content)
}
if err := p7.VerifyWithChain(truststore); err != nil {
t.Errorf("test %s/%s/%s: cannot verify signed data: %s", sigalgroot, sigalginter, sigalgsigner, err)
}
而验证的话,流程如下:
Parse
方法;testSign
方法);TestSkipCertificates
);Verify
或VerifyWithChain
方法。DegenerateCertificate
,退化成签名数据中只包含证书,目前没有使用SM2 OID的方法,如果需要可以请求添加。可以参考TestDegenerateCertificate
和TestParseSM2CertificateChain
。
签名和数字信封数据,使用场景较少,有些实现用它来传输私钥(譬如www.gmcert.org)。具体请参考sign_enveloped_test.go
。
The “signed and enveloped data” content type is a part of the Cryptographic Message Syntax (CMS), which is used in various Internet Standards. However, it’s not recommended for use due to several reasons:
Complexity: The “signed and enveloped data” content type combines two operations - signing and enveloping (encryption). This increases the complexity of the implementation and can lead to potential security vulnerabilities if not handled correctly.
Order of Operations: The “signed and enveloped data” content type first signs the data and then encrypts it. This means that to verify the signature, the data must first be decrypted. This could potentially expose sensitive data to unauthorized parties before the signature is verified.
Lack of Flexibility: Combining signing and enveloping into a single operation reduces flexibility. It’s often more useful to be able to perform these operations separately, as it allows for more varied use cases.
Instead of using the “signed and enveloped data” content type, it’s generally recommended to use separate “signed data” and “enveloped data” content types. This allows the operations to be performed in the order that best suits the application’s needs, and also simplifies the implementation.
NewSignedAndEnvelopedData
或者NewSMSignedAndEnvelopedData
创建SignedAndEnvelopedData
数据结构,此过程包含了数据加密过程;AddSigner
或AddSignerChain
方法,进行签名;AddRecipient
方法,用Recipient的公钥加密数据密钥;Finish
方法,序列化输出结果。Parse
方法;DecryptAndVerify
或者DecryptAndVerifyOnlyOne
进行解密和验签。