mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
1.3 KiB
1.3 KiB
One-time authentication
See also: Libsodium's documentation on its one-time authentication features.
crypto_onetimeauth
Get an authenticator for a message for a given key.
Important: In order to be secure, keys must be:
- Secret.
- Unpredictable.
- Unique.
Parameters and their respective types:
{string|Buffer}message{CryptographyKey}key
Return a Promise that resolves to a Buffer.
crypto_onetimeauth_verify
Verify an authenticator for a message for a given key.
Parameters and their respective types:
{string|Buffer}message{CryptographyKey}key{Buffer}tag
Return a Promise that resolves to a boolean.
crypto_onetimeauth_keygen
Returns a CryptographyKey object containing a key appropriate
for the crypto_auth API.
Example for crypto_onetimeauth
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_onetimeauth_keygen();
let tag = await sodium.crypto_onetimeauth(plaintext, key);
console.log(await sodium.crypto_onetimeauth_verify(plaintext, key, tag));
})();