Serialized encrypted message to be decrypted.
Password for decryption.
Decrypted message.
Decrypts AES256-CBC encrypted hex string message. Result is decrypted string. This decryption is compatible with wallet-cli wallet file export key encryption format.
Message to be decrypted.
Password for decryption.
Decrypted message.
Decrypts message encrypted by CryptoUtils.encryptWithChecksum or memo from DCore network objects.
Encrypted message.
Private key of one of communicating sides. Used to decrypt message.
Public key of other communicating side. Used to decrypt message.
Random number used in decryption. Default ''.
Buffer with decrypted text.
Encrypt message using AES256-CBC. Encrypted text is in string representation of following type { ct: string, iv: string, s: string }
Message to be encrypted.
Password for encryption.
Encrypted serialized message.
Encrypt message with AES256-CBC. Result is encrypted hex string. This encryption is compatible with wallet-cli wallet file export key encryption format.
Message to be encrypted.
Password for encryption.
Encrypted message.
Encrypts message with given private-pubic key pair
Message to encrypt.
Private of one side of communication, to encrypt message with.
Public key of other side of communication, used in encryption.
String in HEX format with encrypted message.
Calculates MD5 hash out of input.
Input message.
Hashed input.
Calculate RIPEMD160 hash from input. Used as 'hash' parameter when submitting content.
Input to calculate buffer from.
RIPEMD160 hashed text.
Calculates SHA256 hash of input.
Input message.
Hashed input.
Calculates SHA512 hash of input.
Input message.
Hashed input.
Powered by DECENT
Decrypt AES256-CBC encrypted message in form of string representation of following type { ct: string, iv: string, s: string }