sha.h
All headers- SHA-1
- SHA_CBLOCK
- SHA_DIGEST_LENGTH
- SHA1_Init
- SHA1_Update
- SHA1_Final
- SHA1
- SHA1_Transform
- CRYPTO_fips_186_2_prf
SHA-1.
SHA_CBLOCK is the block size of SHA-1.
#define SHA_CBLOCK 64
SHA_DIGEST_LENGTH is the length of a SHA-1 digest.
#define SHA_DIGEST_LENGTH 20
SHA1_Init initialises sha and returns one.
OPENSSL_EXPORT int SHA1_Init(SHA_CTX *sha);
SHA1_Update adds len bytes from data to sha and returns one.
OPENSSL_EXPORT int SHA1_Update(SHA_CTX *sha, const void *data, size_t len);
SHA1_Final adds the final padding to sha and writes the resulting digest to out, which must have at least SHA_DIGEST_LENGTH bytes of space. It returns one.
OPENSSL_EXPORT int SHA1_Final(uint8_t out[SHA_DIGEST_LENGTH], SHA_CTX *sha);
SHA1 writes the digest of len bytes from data to out and returns out. There must be at least SHA_DIGEST_LENGTH bytes of space in out.
OPENSSL_EXPORT uint8_t *SHA1(const uint8_t *data, size_t len, uint8_t out[SHA_DIGEST_LENGTH]);
SHA1_Transform is a low-level function that performs a single, SHA-1 block transformation using the state from sha and SHA_CBLOCK bytes from block.
OPENSSL_EXPORT void SHA1_Transform(SHA_CTX *sha, const uint8_t block[SHA_CBLOCK]);
CRYPTO_fips_186_2_prf derives out_len bytes from xkey using the PRF defined in FIPS 186-2, Appendix 3.1, with change notice 1 applied. The b parameter is 160 and seed, XKEY, is also 160 bits. The optional XSEED user input is all zeros.
The PRF generates a sequence of 320-bit numbers. Each number is encoded as a 40-byte string in big-endian and then concatenated to form out. If out_len is not a multiple of 40, the result is truncated. This matches the construction used in Section 7 of RFC 4186 and Section 7 of RFC 4187.
This PRF is based on SHA-1, a weak hash function, and should not be used in new protocols. It is provided for compatibility with some legacy EAP methods.
OPENSSL_EXPORT void CRYPTO_fips_186_2_prf( uint8_t *out, size_t out_len, const uint8_t xkey[SHA_DIGEST_LENGTH]);
The SHA family of hash functions (SHA-1 and SHA-2).