123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- #ifndef HEADER_SHA_H
- #define HEADER_SHA_H
- #include "e_os2.h"
- #include <stddef.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- #if defined(OPENSSL_NO_SHA) || (defined(OPENSSL_NO_SHA0) && defined(OPENSSL_NO_SHA1))
- #error SHA is disabled.
- #endif
- #if defined(OPENSSL_FIPS)
- #define FIPS_SHA_SIZE_T size_t
- #endif
- #if defined(__LP32__)
- #define SHA_LONG unsigned long
- #elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__)
- #define SHA_LONG unsigned long
- #define SHA_LONG_LOG2 3
- #else
- #define SHA_LONG unsigned int
- #endif
- #define SHA_LBLOCK 16
- #define SHA_CBLOCK (SHA_LBLOCK*4)
- #define SHA_LAST_BLOCK (SHA_CBLOCK-8)
- #define SHA_DIGEST_LENGTH 20
- typedef struct SHAstate_st
- {
- SHA_LONG h0,h1,h2,h3,h4;
- SHA_LONG Nl,Nh;
- SHA_LONG data[SHA_LBLOCK];
- unsigned int num;
- } SHA_CTX;
- #ifndef OPENSSL_NO_SHA0
- #ifdef OPENSSL_FIPS
- int private_SHA_Init(SHA_CTX *c);
- #endif
- int SHA_Init(SHA_CTX *c);
- int SHA_Update(SHA_CTX *c, const void *data, size_t len);
- int SHA_Final(unsigned char *md, SHA_CTX *c);
- unsigned char *SHA(const unsigned char *d, size_t n, unsigned char *md);
- void SHA_Transform(SHA_CTX *c, const unsigned char *data);
- #endif
- #ifndef OPENSSL_NO_SHA1
- #ifdef OPENSSL_FIPS
- int private_SHA1_Init(SHA_CTX *c);
- #endif
- int SHA1_Init(SHA_CTX *c);
- int SHA1_Update(SHA_CTX *c, const void *data, size_t len);
- int SHA1_Final(unsigned char *md, SHA_CTX *c);
- unsigned char *SHA1(const unsigned char *d, size_t n, unsigned char *md);
- void SHA1_Transform(SHA_CTX *c, const unsigned char *data);
- #endif
- #define SHA256_CBLOCK (SHA_LBLOCK*4)
- #define SHA224_DIGEST_LENGTH 28
- #define SHA256_DIGEST_LENGTH 32
- typedef struct SHA256state_st
- {
- SHA_LONG h[8];
- SHA_LONG Nl,Nh;
- SHA_LONG data[SHA_LBLOCK];
- unsigned int num,md_len;
- } SHA256_CTX;
- #ifndef OPENSSL_NO_SHA256
- #ifdef OPENSSL_FIPS
- int private_SHA224_Init(SHA256_CTX *c);
- int private_SHA256_Init(SHA256_CTX *c);
- #endif
- int SHA224_Init(SHA256_CTX *c);
- int SHA224_Update(SHA256_CTX *c, const void *data, size_t len);
- int SHA224_Final(unsigned char *md, SHA256_CTX *c);
- unsigned char *SHA224(const unsigned char *d, size_t n,unsigned char *md);
- int SHA256_Init(SHA256_CTX *c);
- int SHA256_Update(SHA256_CTX *c, const void *data, size_t len);
- int SHA256_Final(unsigned char *md, SHA256_CTX *c);
- unsigned char *SHA256(const unsigned char *d, size_t n,unsigned char *md);
- void SHA256_Transform(SHA256_CTX *c, const unsigned char *data);
- #endif
- #define SHA384_DIGEST_LENGTH 48
- #define SHA512_DIGEST_LENGTH 64
- #ifndef OPENSSL_NO_SHA512
- #define SHA512_CBLOCK (SHA_LBLOCK*8)
- #if (defined(_WIN32) || defined(_WIN64)) && !defined(__MINGW32__)
- #define SHA_LONG64 unsigned __int64
- #define U64(C) C##UI64
- #elif defined(__arch64__)
- #define SHA_LONG64 unsigned long
- #define U64(C) C##UL
- #else
- #define SHA_LONG64 unsigned long long
- #define U64(C) C##ULL
- #endif
- typedef struct SHA512state_st
- {
- SHA_LONG64 h[8];
- SHA_LONG64 Nl,Nh;
- union {
- SHA_LONG64 d[SHA_LBLOCK];
- unsigned char p[SHA512_CBLOCK];
- } u;
- unsigned int num,md_len;
- } SHA512_CTX;
- #endif
- #ifndef OPENSSL_NO_SHA512
- #ifdef OPENSSL_FIPS
- int private_SHA384_Init(SHA512_CTX *c);
- int private_SHA512_Init(SHA512_CTX *c);
- #endif
- int SHA384_Init(SHA512_CTX *c);
- int SHA384_Update(SHA512_CTX *c, const void *data, size_t len);
- int SHA384_Final(unsigned char *md, SHA512_CTX *c);
- unsigned char *SHA384(const unsigned char *d, size_t n,unsigned char *md);
- int SHA512_Init(SHA512_CTX *c);
- int SHA512_Update(SHA512_CTX *c, const void *data, size_t len);
- int SHA512_Final(unsigned char *md, SHA512_CTX *c);
- unsigned char *SHA512(const unsigned char *d, size_t n,unsigned char *md);
- void SHA512_Transform(SHA512_CTX *c, const unsigned char *data);
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif
|