Erlang cryptography module - ECDSA, RSA, SHA256, etc.

I need a module that can generate key pairs, calculate safe hashes and crypts and sign data. Is there this module? Or maybe there is an interface for the cryptographic functions of OpenSSL?

+5
source share
2 answers

sha2 modile for sha256

+1
source

Read the cryptographic module first. Now it's NIF with R14A so you can find out what OpenSSL C features are used.

+1
source

All Articles