Erlang中的RSA签名

Posted 云彩草原

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Erlang中的RSA签名相关的知识,希望对你有一定的参考价值。

RSA签名校验

-spec check_rsa_sign(DataBin, Sign, RSAPublicKeyBin, DigestType) -> boolean when
    DataBin :: binary(), 
    Sign :: binary(),
    RSAPublicKeyBin :: binary()
    DigestType :: ‘md5‘ | ‘sha‘ | ‘sha224‘ | ‘sha256‘ | ‘sha384‘ | ‘sha512‘.
check_rsa_sign(DataBin, Sign, RSAPublicKeyBin, DigestType) ->
    PemEntries = public_key:pem_decode(RSAPublicKeyBin),
    RSAPubKey = public_key:pem_entry_decode(hd(PemEntries)),
    Base64Sign = base64:decode(Sign),
    public_key:verify(DataBin, DigestType, Base64Sign, RSAPubKey).

产生RSA签名

-spec gen_rsa_sign(MsgBin, DigestType, KeyBin) -> binary() when
    MsgBin :: binary(),
    DigestType :: ‘md5‘ | ‘sha‘ | ‘sha224‘ | ‘sha256‘ | ‘sha384‘ | ‘sha512‘,
    KeyBin :: binary().
gen_rsa_sign(MsgBin, DigestType, KeyBin) ->
    [Entry] = public_key:pem_decode(KeyBin),
    RSAPriKey = public_key:pem_entry_decode(Entry),
    SignBin = public_key:sign(MsgBin, DigestType, RSAPriKey),
    base64:encode(SignBin).

示例

-define(RSA_PUBLIC_KEY, <<"-----BEGIN PUBLIC KEY-----\nXXXRSA_PUBLIC_KEYXXX\n-----END PUBLIC KEY-----">>).
-define(RSA_PRIVATE_KEY, <<"-----BEGIN RSA PRIVATE KEY-----\nXXXRSA_PRIVATE_KEYXXX\n-----END RSA PRIVATE KEY-----">>).

test() ->
    DataBin = make_data(),
    gen_rsa_sign(DataBin, ‘md5‘, ?RSA_PRIVATE_KEY),
    check_rsa_sign(DataBin, Sign, ?RSA_PUBLIC_KEY, ‘md5‘).

 

以上是关于Erlang中的RSA签名的主要内容,如果未能解决你的问题,请参考以下文章

Go-数字签名详解与Rsa数字签名代码

为 Erlang 提取 C 函数签名

非对称加密Rsa数字签名Go实战

没有密钥对(RSA 私钥)的 aws cloudfront 中的签名 cookie

Java数字签名算法--RSA

密码技术应用--RSA文件签名验签