mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
1.8 KiB
1.8 KiB
AEAD
crypto_aead_xchacha20poly1305_ietf_decrypt
Decrypt a message (and optional associated data) with XChaCha20-Poly1305.
Parameters and their respective types:
{string|Buffer}Ciphertext{string|Buffer}nonce (must be 24 bytes){CryptographyKey}key{string|Buffer}assocData
Returns a Promise that resolves to a Buffer.
Throws a SodiumError on decryption failure.
crypto_aead_xchacha20poly1305_ietf_encrypt
Encrypt a message (and optional associated data) with XChaCha20-Poly1305.
Parameters and their respective types:
{string|Buffer}Plaintext{string|Buffer}nonce (must be 24 bytes){CryptographyKey}key{string|Buffer}assocData
Returns a Promise that resolves to a Buffer.
crypto_aead_xchacha20poly1305_ietf_keygen
Returns a CryptographyKey object containing a key appropriate
for the crypto_aead_xchacha20poly1305_ietf_ API.
Example for crypto_aead_xchacha20poly1305_ietf_*
const { SodiumPlus } = require('sodium-plus');
let sodium;
(async function () {
if (!sodium) sodium = await SodiumPlus.auto();
let plaintext = 'Your message goes here';
let key = await sodium.crypto_aead_xchacha20poly1305_ietf_keygen();
let nonce = await sodium.randombytes_buf(24);
let ciphertext = await sodium.crypto_aead_xchacha20poly1305_ietf_encrypt(
plaintext,
nonce,
key
);
console.log(ciphertext.toString('hex'));
let decrypted = await sodium.crypto_aead_xchacha20poly1305_ietf_decrypt(
ciphertext,
nonce,
key
);
console.log(decrypted.toString());
})();