Erlang에서 ed25519를 사용하여 서명/검증
Erlang/OTP 24 [RELEASE CANDIDATE 2] [erts-12.0] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [jit]
Eshell V12.0 (abort with ^G)
1> {PubKey, PrivKey} = crypto:generate_key(eddsa, ed25519).
{<<184,46,247,95,51,237,199,16,53,26,179,236,67,32,216,
166,215,236,97,90,244,28,24,161,239,6,82,99,...>>,
<<86,122,18,144,17,142,65,238,204,99,8,74,168,240,94,215,
203,73,2,77,229,177,94,126,185,252,190,...>>}
2> {Algorithm, CryptoKey} = {eddsa, [PrivKey, ed25519]}.
{eddsa,[<<86,122,18,144,17,142,65,238,204,99,8,74,168,240,
94,215,203,73,2,77,229,177,94,126,185,252,...>>,
ed25519]}
3> DigestType = sha384.
sha384
4> PlainText = <<"abcd">>.
<<"abcd">>
5> Options = [].
[]
6> Signature = crypto:sign(Algorithm, DigestType, PlainText, CryptoKey, Options).
<<116,140,19,21,30,207,166,59,163,84,8,42,166,29,125,229,
60,207,82,101,211,157,57,170,95,33,27,234,162,...>>
7> {Algorithm, CryptoKey1} = {eddsa, [PubKey, ed25519]}.
{eddsa,[<<184,46,247,95,51,237,199,16,53,26,179,236,67,32,
216,166,215,236,97,90,244,28,24,161,239,6,...>>,
ed25519]}
8> crypto:verify(Algorithm, DigestType, PlainText, Signature, CryptoKey1, Options).
true
Reference
이 문제에 관하여(Erlang에서 ed25519를 사용하여 서명/검증), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/voluntas/articles/erlang-ed25519-sign-veirfy텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)