Extends
Methods
# async static aesDecrypt()
Decrypts the given data with the given secret using AES-GCM.
# async static aesEncrypt()
Encrypts the given data with the given secret using AES-GCM.
# async static bitcoinMessageSign()
Signs the given Bitcoin Message with the given ECDSA private key.
# async static bitcoinMessageVerify()
Verifies the given signature and Bitcoin Message with the given ECDSA public key.
# async static ecdsaSign()
Signs the given data with the given ECDSA private key.
# async static ecdsaVerify()
Verifies the given signature and message with the given ECDSA public key.
# async static eciesDecrypt()
Decrypts the given data with the given ECDSA private key using ECIES.
# async static eciesEncrypt()
Encrypts the given data with the given ECDSA public key using ECIES.
# async static hash()
Hashes the given data using the specified algorithm.
# async static ripemd160()
Hashes the given data using the RIPEMD160 algorithm.
# async static rsaDecrypt()
Decrypts the given data with the given RSA public or private key.
# async static rsaEncrypt()
Encrypts the given data with the given RSA public or private key.
# async static rsaSign()
Signs the given data with the given RSA private key.
# async static rsaVerify()
Verifies the given signature and message with the given RSA public key.