crypto.createSign(algorithm)
Creates and returns a Sign
object that uses the given algorithm
. On recent OpenSSL releases, openssl list-public-key-algorithms
will display the available signing algorithms. One example is 'RSA-SHA256'
.
crypto.createSign(algorithm)
Creates and returns a Sign
object that uses the given algorithm
. On recent OpenSSL releases, openssl list-public-key-algorithms
will display the available signing algorithms. One example is 'RSA-SHA256'
.
Please login to continue.