Skip to main content
Version: v0.83.1

poseidon2

Standalone Functions

poseidon2_encrypt

poseidon2_encrypt(msg, shared_secret, nonce, );

/// @param nonce is only needed if your use case needs to protect against replay attacks.

Parameters

NameType
msg[Field; L]
shared_secretPoint
nonceField

poseidon2_decrypt

poseidon2_decrypt(ciphertext);

Parameters

NameType
ciphertext[Field; ((L + 3 - 1

encrypt_then_decrypt

encrypt_then_decrypt(msg);

Helper function that allows us to test encryption, then decryption, for various sizes of message.

Parameters

NameType
msg[Field; N]

poseidon2_encryption

poseidon2_encryption();

Takes no parameters.

test_poseidon2_decryption_with_bad_secret_fails

test_poseidon2_decryption_with_bad_secret_fails();

Takes no parameters.

encrypt_and_return_ct_length

encrypt_and_return_ct_length(msg);

Helper function with encryption boilerplate

Parameters

NameType
msg[Field; N]

test_ciphertext_lengths

test_ciphertext_lengths();

Takes no parameters.

test_2_pow_128

test_2_pow_128();

Takes no parameters.