xy-shanghai-20260721-181118/api_key.go

15 lines
254 B
Go

package xyshanghai
// APIKey 存储SM4密钥和SM3盐值
type APIKey struct {
SM4Key []byte
SM3Salt []byte
}
// NewAPIKey 创建APIKey实例
func NewAPIKey(sm4Key, sm3Salt []byte) *APIKey {
return &APIKey{
SM4Key: sm4Key,
SM3Salt: sm3Salt,
}
}