mirror of
https://github.com/emmansun/gmsm.git
synced 2025-04-26 12:16:20 +08:00
refactoring
This commit is contained in:
parent
18cf7e0e63
commit
64a9f8792e
72
sm2/sm2.go
72
sm2/sm2.go
@ -250,6 +250,17 @@ func calculateC3(curve elliptic.Curve, x2, y2 *big.Int, msg []byte) []byte {
|
|||||||
return md.Sum(nil)
|
return md.Sum(nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func mashalASN1Ciphertext(x1, y1 *big.Int, c2, c3 []byte) ([]byte, error) {
|
||||||
|
var b cryptobyte.Builder
|
||||||
|
b.AddASN1(asn1.SEQUENCE, func(b *cryptobyte.Builder) {
|
||||||
|
b.AddASN1BigInt(x1)
|
||||||
|
b.AddASN1BigInt(y1)
|
||||||
|
b.AddASN1OctetString(c3)
|
||||||
|
b.AddASN1OctetString(c2)
|
||||||
|
})
|
||||||
|
return b.Bytes()
|
||||||
|
}
|
||||||
|
|
||||||
// sm2 encrypt and output ASN.1 result
|
// sm2 encrypt and output ASN.1 result
|
||||||
func EncryptASN1(random io.Reader, pub *ecdsa.PublicKey, msg []byte) ([]byte, error) {
|
func EncryptASN1(random io.Reader, pub *ecdsa.PublicKey, msg []byte) ([]byte, error) {
|
||||||
return Encrypt(random, pub, msg, ASN1EncrypterOpts)
|
return Encrypt(random, pub, msg, ASN1EncrypterOpts)
|
||||||
@ -310,16 +321,9 @@ func Encrypt(random io.Reader, pub *ecdsa.PublicKey, msg []byte, opts *Encrypter
|
|||||||
}
|
}
|
||||||
// c1 || c2 || c3
|
// c1 || c2 || c3
|
||||||
return append(append(c1, c2...), c3...), nil
|
return append(append(c1, c2...), c3...), nil
|
||||||
} else { // ASN.1 format will force C3 C2 order
|
|
||||||
var b cryptobyte.Builder
|
|
||||||
b.AddASN1(asn1.SEQUENCE, func(b *cryptobyte.Builder) {
|
|
||||||
b.AddASN1BigInt(x1)
|
|
||||||
b.AddASN1BigInt(y1)
|
|
||||||
b.AddASN1OctetString(c3)
|
|
||||||
b.AddASN1OctetString(c2)
|
|
||||||
})
|
|
||||||
return b.Bytes()
|
|
||||||
}
|
}
|
||||||
|
// ASN.1 format will force C3 C2 order
|
||||||
|
return mashalASN1Ciphertext(x1, y1, c2, c3)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -344,20 +348,9 @@ func Decrypt(priv *PrivateKey, ciphertext []byte) ([]byte, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func decryptASN1(priv *PrivateKey, ciphertext []byte) ([]byte, error) {
|
func decryptASN1(priv *PrivateKey, ciphertext []byte) ([]byte, error) {
|
||||||
var (
|
x1, y1, c2, c3, err := unmarshalASN1Ciphertext(ciphertext)
|
||||||
x1, y1 = &big.Int{}, &big.Int{}
|
if err != nil {
|
||||||
c2, c3 []byte
|
return nil, err
|
||||||
inner cryptobyte.String
|
|
||||||
)
|
|
||||||
input := cryptobyte.String(ciphertext)
|
|
||||||
if !input.ReadASN1(&inner, asn1.SEQUENCE) ||
|
|
||||||
!input.Empty() ||
|
|
||||||
!inner.ReadASN1Integer(x1) ||
|
|
||||||
!inner.ReadASN1Integer(y1) ||
|
|
||||||
!inner.ReadASN1Bytes(&c3, asn1.OCTET_STRING) ||
|
|
||||||
!inner.ReadASN1Bytes(&c2, asn1.OCTET_STRING) ||
|
|
||||||
!inner.Empty() {
|
|
||||||
return nil, errors.New("SM2: invalid asn1 format ciphertext")
|
|
||||||
}
|
}
|
||||||
return rawDecrypt(priv, x1, y1, c2, c3)
|
return rawDecrypt(priv, x1, y1, c2, c3)
|
||||||
}
|
}
|
||||||
@ -420,11 +413,7 @@ func decrypt(priv *PrivateKey, ciphertext []byte, opts *DecrypterOpts) ([]byte,
|
|||||||
return rawDecrypt(priv, x1, y1, c2, c3)
|
return rawDecrypt(priv, x1, y1, c2, c3)
|
||||||
}
|
}
|
||||||
|
|
||||||
// utility method to convert ASN.1 encoding ciphertext to plain encoding format
|
func unmarshalASN1Ciphertext(ciphertext []byte) (*big.Int, *big.Int, []byte, []byte, error) {
|
||||||
func ASN1Ciphertext2Plain(ciphertext []byte, opts *EncrypterOpts) ([]byte, error) {
|
|
||||||
if opts == nil {
|
|
||||||
opts = defaultEncrypterOpts
|
|
||||||
}
|
|
||||||
var (
|
var (
|
||||||
x1, y1 = &big.Int{}, &big.Int{}
|
x1, y1 = &big.Int{}, &big.Int{}
|
||||||
c2, c3 []byte
|
c2, c3 []byte
|
||||||
@ -438,7 +427,19 @@ func ASN1Ciphertext2Plain(ciphertext []byte, opts *EncrypterOpts) ([]byte, error
|
|||||||
!inner.ReadASN1Bytes(&c3, asn1.OCTET_STRING) ||
|
!inner.ReadASN1Bytes(&c3, asn1.OCTET_STRING) ||
|
||||||
!inner.ReadASN1Bytes(&c2, asn1.OCTET_STRING) ||
|
!inner.ReadASN1Bytes(&c2, asn1.OCTET_STRING) ||
|
||||||
!inner.Empty() {
|
!inner.Empty() {
|
||||||
return nil, errors.New("SM2: invalid asn1 format ciphertext")
|
return nil, nil, nil, nil, errors.New("SM2: invalid asn1 format ciphertext")
|
||||||
|
}
|
||||||
|
return x1, y1, c2, c3, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// ASN1Ciphertext2Plain utility method to convert ASN.1 encoding ciphertext to plain encoding format
|
||||||
|
func ASN1Ciphertext2Plain(ciphertext []byte, opts *EncrypterOpts) ([]byte, error) {
|
||||||
|
if opts == nil {
|
||||||
|
opts = defaultEncrypterOpts
|
||||||
|
}
|
||||||
|
x1, y1, c2, c3, err := unmarshalASN1Ciphertext((ciphertext))
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
}
|
}
|
||||||
curve := P256()
|
curve := P256()
|
||||||
c1 := opts.PointMarshalMode.mashal(curve, x1, y1)
|
c1 := opts.PointMarshalMode.mashal(curve, x1, y1)
|
||||||
@ -450,7 +451,7 @@ func ASN1Ciphertext2Plain(ciphertext []byte, opts *EncrypterOpts) ([]byte, error
|
|||||||
return append(append(c1, c2...), c3...), nil
|
return append(append(c1, c2...), c3...), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// utility method to convert plain encoding ciphertext to ASN.1 encoding format
|
// PlainCiphertext2ASN1 utility method to convert plain encoding ciphertext to ASN.1 encoding format
|
||||||
func PlainCiphertext2ASN1(ciphertext []byte, from ciphertextSplicingOrder) ([]byte, error) {
|
func PlainCiphertext2ASN1(ciphertext []byte, from ciphertextSplicingOrder) ([]byte, error) {
|
||||||
if ciphertext[0] == 0x30 {
|
if ciphertext[0] == 0x30 {
|
||||||
return nil, errors.New("SM2: invalid plain encoding ciphertext")
|
return nil, errors.New("SM2: invalid plain encoding ciphertext")
|
||||||
@ -475,17 +476,10 @@ func PlainCiphertext2ASN1(ciphertext []byte, from ciphertextSplicingOrder) ([]by
|
|||||||
c2 = ciphertext[c3Start : ciphertextLen-sm3.Size]
|
c2 = ciphertext[c3Start : ciphertextLen-sm3.Size]
|
||||||
c3 = ciphertext[ciphertextLen-sm3.Size:]
|
c3 = ciphertext[ciphertextLen-sm3.Size:]
|
||||||
}
|
}
|
||||||
var b cryptobyte.Builder
|
return mashalASN1Ciphertext(x1, y1, c2, c3)
|
||||||
b.AddASN1(asn1.SEQUENCE, func(b *cryptobyte.Builder) {
|
|
||||||
b.AddASN1BigInt(x1)
|
|
||||||
b.AddASN1BigInt(y1)
|
|
||||||
b.AddASN1OctetString(c3)
|
|
||||||
b.AddASN1OctetString(c2)
|
|
||||||
})
|
|
||||||
return b.Bytes()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// utility method
|
// AdjustCiphertextSplicingOrder utility method to change c2 c3 order
|
||||||
func AdjustCiphertextSplicingOrder(ciphertext []byte, from, to ciphertextSplicingOrder) ([]byte, error) {
|
func AdjustCiphertextSplicingOrder(ciphertext []byte, from, to ciphertextSplicingOrder) ([]byte, error) {
|
||||||
curve := P256()
|
curve := P256()
|
||||||
if from == to {
|
if from == to {
|
||||||
|
@ -83,7 +83,7 @@ func Test_encryptDecrypt_ASN1(t *testing.T) {
|
|||||||
plainText string
|
plainText string
|
||||||
}{
|
}{
|
||||||
// TODO: Add test cases.
|
// TODO: Add test cases.
|
||||||
{"less than 32", "emmansun"},
|
{"less than 32", "encryption standard"},
|
||||||
{"equals 32", "encryption standard encryption "},
|
{"equals 32", "encryption standard encryption "},
|
||||||
{"long than 32", "encryption standard encryption standard"},
|
{"long than 32", "encryption standard encryption standard"},
|
||||||
}
|
}
|
||||||
@ -112,7 +112,7 @@ func Test_Ciphertext2ASN1(t *testing.T) {
|
|||||||
plainText string
|
plainText string
|
||||||
}{
|
}{
|
||||||
// TODO: Add test cases.
|
// TODO: Add test cases.
|
||||||
{"less than 32", "emmansun"},
|
{"less than 32", "encryption standard"},
|
||||||
{"equals 32", "encryption standard encryption "},
|
{"equals 32", "encryption standard encryption "},
|
||||||
{"long than 32", "encryption standard encryption standard"},
|
{"long than 32", "encryption standard encryption standard"},
|
||||||
}
|
}
|
||||||
@ -144,7 +144,7 @@ func Test_ASN1Ciphertext2Plain(t *testing.T) {
|
|||||||
plainText string
|
plainText string
|
||||||
}{
|
}{
|
||||||
// TODO: Add test cases.
|
// TODO: Add test cases.
|
||||||
{"less than 32", "emmansun"},
|
{"less than 32", "encryption standard"},
|
||||||
{"equals 32", "encryption standard encryption "},
|
{"equals 32", "encryption standard encryption "},
|
||||||
{"long than 32", "encryption standard encryption standard"},
|
{"long than 32", "encryption standard encryption standard"},
|
||||||
}
|
}
|
||||||
|
@ -264,30 +264,26 @@ func TestSignByHuaweiVerifyAtLocal(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestParsePKIXPublicKey(t *testing.T) {
|
func TestParsePKIXPublicKeyFromExternal(t *testing.T) {
|
||||||
pub, err := getPublicKey([]byte(publicKeyPemFromAliKms))
|
tests := []struct {
|
||||||
if err != nil {
|
name string
|
||||||
t.Fatal(err)
|
pem string
|
||||||
|
}{
|
||||||
|
{"ALI", publicKeyPemFromAliKms},
|
||||||
|
{"HUAWEI", publicKeyPemFromHuaweiKms},
|
||||||
}
|
}
|
||||||
pub1 := pub.(*ecdsa.PublicKey)
|
for _, test := range tests {
|
||||||
encrypted, err := sm2.Encrypt(rand.Reader, pub1, []byte("testfile"), nil)
|
pub, err := getPublicKey([]byte(test.pem))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatalf("%s failed to get public key %v", test.name, err)
|
||||||
}
|
|
||||||
fmt.Printf("encrypted=%s\n", base64.StdEncoding.EncodeToString(encrypted))
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestParsePKIXPublicKeyFromHuawei(t *testing.T) {
|
|
||||||
pub, err := getPublicKey([]byte(publicKeyPemFromHuaweiKms))
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
}
|
||||||
pub1 := pub.(*ecdsa.PublicKey)
|
pub1 := pub.(*ecdsa.PublicKey)
|
||||||
encrypted, err := sm2.Encrypt(rand.Reader, pub1, []byte("encryption standard"), sm2.ASN1EncrypterOpts)
|
encrypted, err := sm2.Encrypt(rand.Reader, pub1, []byte("encryption standard"), sm2.ASN1EncrypterOpts)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatalf("%s failed to encrypt %v", test.name, err)
|
||||||
}
|
}
|
||||||
fmt.Printf("encrypted=%s\n", base64.RawURLEncoding.EncodeToString(encrypted))
|
fmt.Printf("encrypted=%s\n", base64.RawURLEncoding.EncodeToString(encrypted))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestMarshalPKIXPublicKey(t *testing.T) {
|
func TestMarshalPKIXPublicKey(t *testing.T) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user