sha.pod 3.7 KB
Newer Older
U
Ulf Möller 已提交
1 2 3 4
=pod

=head1 NAME

M
Matt Caswell 已提交
5 6 7 8
SHA1, SHA1_Init, SHA1_Update, SHA1_Final, SHA224, SHA224_Init, SHA224_Update,
SHA224_Final, SHA256, SHA256_Init, SHA256_Update, SHA256_Final, SHA384,
SHA384_Init, SHA384_Update, SHA384_Final, SHA512, SHA512_Init, SHA512_Update,
SHA512_Final - Secure Hash Algorithm
U
Ulf Möller 已提交
9 10 11 12 13

=head1 SYNOPSIS

 #include <openssl/sha.h>

N
Nils Larsch 已提交
14
 int SHA1_Init(SHA_CTX *c);
M
Matt Caswell 已提交
15
 int SHA1_Update(SHA_CTX *c, const void *data, size_t len);
N
Nils Larsch 已提交
16
 int SHA1_Final(unsigned char *md, SHA_CTX *c);
M
Matt Caswell 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
 unsigned char *SHA1(const unsigned char *d, size_t n,
      unsigned char *md);

 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);

 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);
U
Ulf Möller 已提交
43 44 45

=head1 DESCRIPTION

M
Matt Caswell 已提交
46
Applications should use the higher level functions
R
Rich Salz 已提交
47
L<EVP_DigestInit(3)> etc. instead of calling the hash
M
Matt Caswell 已提交
48 49
functions directly.

U
Ulf Möller 已提交
50 51 52
SHA-1 (Secure Hash Algorithm) is a cryptographic hash function with a
160 bit output.

53 54 55
SHA1() computes the SHA-1 message digest of the B<n>
bytes at B<d> and places it in B<md> (which must have space for
SHA_DIGEST_LENGTH == 20 bytes of output). If B<md> is NULL, the digest
M
Matt Caswell 已提交
56
is placed in a static array. Note: setting B<md> to NULL is B<not thread safe>.
57 58 59 60 61 62 63 64 65 66 67 68

The following functions may be used if the message is not completely
stored in memory:

SHA1_Init() initializes a B<SHA_CTX> structure.

SHA1_Update() can be called repeatedly with chunks of the message to
be hashed (B<len> bytes at B<data>).

SHA1_Final() places the message digest in B<md>, which must have space
for SHA_DIGEST_LENGTH == 20 bytes of output, and erases the B<SHA_CTX>.

M
Matt Caswell 已提交
69 70 71 72 73 74 75 76
The SHA224, SHA256, SHA384 and SHA512 families of functions operate in the
same way as for the SHA1 functions. Note that SHA224 and SHA256 use a
B<SHA256_CTX> object instead of B<SHA_CTX>. SHA384 and SHA512 use B<SHA512_CTX>.
The buffer B<md> must have space for the output from the SHA variant being used
(defined by SHA224_DIGEST_LENGTH, SHA256_DIGEST_LENGTH, SHA384_DIGEST_LENGTH and
SHA512_DIGEST_LENGTH). Also note that, as for the SHA1() function above, the
SHA224(), SHA256(), SHA384() and SHA512() functions are not thread safe if
B<md> is NULL.
77

U
Ulf Möller 已提交
78 79 80
The predecessor of SHA-1, SHA, is also implemented, but it should be
used only when backward compatibility is required.

81 82
=head1 RETURN VALUES

M
Matt Caswell 已提交
83 84
SHA1(), SHA224(), SHA256(), SHA384() and SHA512() return a pointer to the hash
value. 
85

M
Matt Caswell 已提交
86 87
SHA1_Init(), SHA1_Update() and SHA1_Final() and equivalent SHA224, SHA256,
SHA384 and SHA512 functions return 1 for success, 0 otherwise.
88

U
Ulf Möller 已提交
89 90
=head1 CONFORMING TO

M
Matt Caswell 已提交
91
US Federal Information Processing Standard FIPS PUB 180-4 (Secure Hash
B
Bodo Möller 已提交
92 93
Standard),
ANSI X9.30
U
Ulf Möller 已提交
94 95 96

=head1 SEE ALSO

R
Rich Salz 已提交
97
L<EVP_DigestInit(3)>
U
Ulf Möller 已提交
98 99

=cut
R
Rich Salz 已提交
100 101 102 103 104 105 106 107 108 109 110

=head1 COPYRIGHT

Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.

Licensed under the OpenSSL license (the "License").  You may not use
this file except in compliance with the License.  You can obtain a copy
in the file LICENSE in the source distribution or at
L<https://www.openssl.org/source/license.html>.

=cut