Expand description

sphincs-haraka-192f-robust

These bindings use the clean version from PQClean

Example

use pqcrypto_sphincsplus::sphincsharaka192frobust::*;
let message = vec![0, 1, 2, 3, 4, 5];
let (pk, sk) = keypair();
let sm = sign(&message, &sk);
let verifiedmsg = open(&sm, &pk).unwrap();
assert!(verifiedmsg == message);

Structs

Functions

Create a detached signature on the message

Generate a sphincs-haraka-192f-robust keypair

Open the signed message and if verification succeeds return the message

Get the number of bytes for a public key

Get the number of bytes for a secret key

Sign the message and return the signed message.

Get the number of bytes that a signature occupies

Verify the detached signature