SHA3_Selftest - Man Page

NIST FIPS PUB 202: SHA-3 Standard: Permutation-Based Hash and Extendable-Output Functions

Library

Message Digest (MD4, MD5, etc.) Support Library (libmd, -lmd)

Synopsis

#include <sha3.h>

int
SHA3_Selftest(void);

Description

The SHA3_Selftest function automatically tests a number of SHA-3 computations on fixed inputs with with known outputs to make sure the sha3(3) library is not catastrophically broken. Applications should call SHA3_Selftest() and confirm that it succeeded before using the sha3(3), or shake(3) functions.

SHA3_Selftest() returns 0 if successful, or -1 if the self-test failed.

The SHA3_Selftest() function costs a few hundred thousand cycles on most CPUs, since it involves a little over a hundred calls to the Keccak permutation, which usually take one or two thousand cycles each.

See Also

sha3(3), shake(3)

Standards

National Institute of Standards and Technology, SHA-3 Standard: Permutation-Based Hash and Extendable-Output Functions, August 2015, FIPS PUB 202.

Authors

Taylor R Campbell ⟨campbell+sha3@mumble.net⟩

Referenced By

sha3(3), shake(3).

October 14, 2015