RT992: RSA_check_key should have a callback arg
[openssl.git] / doc / crypto / EVP_DigestInit.pod
1 =pod
2
3 =head1 NAME
4
5 EVP_MD_CTX_init, EVP_MD_CTX_create, EVP_DigestInit_ex, EVP_DigestUpdate,
6 EVP_DigestFinal_ex, EVP_MD_CTX_cleanup, EVP_MD_CTX_destroy, EVP_MAX_MD_SIZE,
7 EVP_MD_CTX_copy_ex, EVP_DigestInit, EVP_DigestFinal, EVP_MD_CTX_copy, EVP_MD_type,
8 EVP_MD_pkey_type, EVP_MD_size, EVP_MD_block_size, EVP_MD_CTX_md, EVP_MD_CTX_size,
9 EVP_MD_CTX_block_size, EVP_MD_CTX_type, EVP_md_null, EVP_md2, EVP_md5, EVP_sha, EVP_sha1,
10 EVP_sha224, EVP_sha256, EVP_sha384, EVP_sha512, EVP_dss, EVP_dss1, EVP_mdc2,
11 EVP_ripemd160, EVP_get_digestbyname, EVP_get_digestbynid, EVP_get_digestbyobj -
12 EVP digest routines
13
14 =head1 SYNOPSIS
15
16  #include <openssl/evp.h>
17
18  void EVP_MD_CTX_init(EVP_MD_CTX *ctx);
19  EVP_MD_CTX *EVP_MD_CTX_create(void);
20
21  int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *impl);
22  int EVP_DigestUpdate(EVP_MD_CTX *ctx, const void *d, size_t cnt);
23  int EVP_DigestFinal_ex(EVP_MD_CTX *ctx, unsigned char *md,
24         unsigned int *s);
25
26  int EVP_MD_CTX_cleanup(EVP_MD_CTX *ctx);
27  void EVP_MD_CTX_destroy(EVP_MD_CTX *ctx);
28
29  int EVP_MD_CTX_copy_ex(EVP_MD_CTX *out,const EVP_MD_CTX *in);
30
31  int EVP_DigestInit(EVP_MD_CTX *ctx, const EVP_MD *type);
32  int EVP_DigestFinal(EVP_MD_CTX *ctx, unsigned char *md,
33         unsigned int *s);
34
35  int EVP_MD_CTX_copy(EVP_MD_CTX *out,EVP_MD_CTX *in);
36
37  #define EVP_MAX_MD_SIZE 64     /* SHA512 */
38
39  int EVP_MD_type(const EVP_MD *md);
40  int EVP_MD_pkey_type(const EVP_MD *md);        
41  int EVP_MD_size(const EVP_MD *md);
42  int EVP_MD_block_size(const EVP_MD *md);
43
44  const EVP_MD *EVP_MD_CTX_md(const EVP_MD_CTX *ctx);
45  #define EVP_MD_CTX_size(e)             EVP_MD_size(EVP_MD_CTX_md(e))
46  #define EVP_MD_CTX_block_size(e)       EVP_MD_block_size((e)->digest)
47  #define EVP_MD_CTX_type(e)             EVP_MD_type((e)->digest)
48
49  const EVP_MD *EVP_md_null(void);
50  const EVP_MD *EVP_md2(void);
51  const EVP_MD *EVP_md5(void);
52  const EVP_MD *EVP_sha(void);
53  const EVP_MD *EVP_sha1(void);
54  const EVP_MD *EVP_dss(void);
55  const EVP_MD *EVP_dss1(void);
56  const EVP_MD *EVP_mdc2(void);
57  const EVP_MD *EVP_ripemd160(void);
58
59  const EVP_MD *EVP_sha224(void);
60  const EVP_MD *EVP_sha256(void);
61  const EVP_MD *EVP_sha384(void);
62  const EVP_MD *EVP_sha512(void);
63
64  const EVP_MD *EVP_get_digestbyname(const char *name);
65  #define EVP_get_digestbynid(a) EVP_get_digestbyname(OBJ_nid2sn(a))
66  #define EVP_get_digestbyobj(a) EVP_get_digestbynid(OBJ_obj2nid(a))
67
68 =head1 DESCRIPTION
69
70 The EVP digest routines are a high level interface to message digests,
71 and should be used instead of the cipher-specific functions.
72
73 EVP_MD_CTX_init() initializes digest context B<ctx>.
74
75 EVP_MD_CTX_create() allocates, initializes and returns a digest context.
76
77 EVP_DigestInit_ex() sets up digest context B<ctx> to use a digest
78 B<type> from ENGINE B<impl>. B<ctx> must be initialized before calling this
79 function. B<type> will typically be supplied by a functionsuch as EVP_sha1().
80 If B<impl> is NULL then the default implementation of digest B<type> is used.
81
82 EVP_DigestUpdate() hashes B<cnt> bytes of data at B<d> into the
83 digest context B<ctx>. This function can be called several times on the
84 same B<ctx> to hash additional data.
85
86 EVP_DigestFinal_ex() retrieves the digest value from B<ctx> and places
87 it in B<md>. If the B<s> parameter is not NULL then the number of
88 bytes of data written (i.e. the length of the digest) will be written
89 to the integer at B<s>, at most B<EVP_MAX_MD_SIZE> bytes will be written.
90 After calling EVP_DigestFinal_ex() no additional calls to EVP_DigestUpdate()
91 can be made, but EVP_DigestInit_ex() can be called to initialize a new
92 digest operation.
93
94 EVP_MD_CTX_cleanup() cleans up digest context B<ctx>, it should be called
95 after a digest context is no longer needed.
96
97 EVP_MD_CTX_destroy() cleans up digest context B<ctx> and frees up the
98 space allocated to it, it should be called only on a context created
99 using EVP_MD_CTX_create().
100
101 EVP_MD_CTX_copy_ex() can be used to copy the message digest state from
102 B<in> to B<out>. This is useful if large amounts of data are to be
103 hashed which only differ in the last few bytes. B<out> must be initialized
104 before calling this function.
105
106 EVP_DigestInit() behaves in the same way as EVP_DigestInit_ex() except
107 the passed context B<ctx> does not have to be initialized, and it always
108 uses the default digest implementation.
109
110 EVP_DigestFinal() is similar to EVP_DigestFinal_ex() except the digest
111 context B<ctx> is automatically cleaned up.
112
113 EVP_MD_CTX_copy() is similar to EVP_MD_CTX_copy_ex() except the destination
114 B<out> does not have to be initialized.
115
116 EVP_MD_size() and EVP_MD_CTX_size() return the size of the message digest
117 when passed an B<EVP_MD> or an B<EVP_MD_CTX> structure, i.e. the size of the
118 hash.
119
120 EVP_MD_block_size() and EVP_MD_CTX_block_size() return the block size of the
121 message digest when passed an B<EVP_MD> or an B<EVP_MD_CTX> structure.
122
123 EVP_MD_type() and EVP_MD_CTX_type() return the NID of the OBJECT IDENTIFIER
124 representing the given message digest when passed an B<EVP_MD> structure.
125 For example EVP_MD_type(EVP_sha1()) returns B<NID_sha1>. This function is
126 normally used when setting ASN1 OIDs.
127
128 EVP_MD_CTX_md() returns the B<EVP_MD> structure corresponding to the passed
129 B<EVP_MD_CTX>.
130
131 EVP_MD_pkey_type() returns the NID of the public key signing algorithm associated
132 with this digest. For example EVP_sha1() is associated with RSA so this will
133 return B<NID_sha1WithRSAEncryption>. Since digests and signature algorithms
134 are no longer linked this function is only retained for compatibility
135 reasons.
136
137 EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), EVP_sha224(), EVP_sha256(),
138 EVP_sha384(), EVP_sha512(), EVP_mdc2() and EVP_ripemd160() return B<EVP_MD>
139 structures for the MD2, MD5, SHA, SHA1, SHA224, SHA256, SHA384, SHA512, MDC2
140 and RIPEMD160 digest algorithms respectively.
141
142 EVP_dss() and EVP_dss1() return B<EVP_MD> structures for SHA and SHA1 digest
143 algorithms but using DSS (DSA) for the signature algorithm. Note: there is
144 no need to use these pseudo-digests in OpenSSL 1.0.0 and later, they are
145 however retained for compatibility.
146
147 EVP_md_null() is a "null" message digest that does nothing: i.e. the hash it
148 returns is of zero length.
149
150 EVP_get_digestbyname(), EVP_get_digestbynid() and EVP_get_digestbyobj()
151 return an B<EVP_MD> structure when passed a digest name, a digest NID or
152 an ASN1_OBJECT structure respectively. The digest table must be initialized
153 using, for example, OpenSSL_add_all_digests() for these functions to work.
154
155 =head1 RETURN VALUES
156
157 EVP_DigestInit_ex(), EVP_DigestUpdate() and EVP_DigestFinal_ex() return 1 for
158 success and 0 for failure.
159
160 EVP_MD_CTX_copy_ex() returns 1 if successful or 0 for failure.
161
162 EVP_MD_type(), EVP_MD_pkey_type() and EVP_MD_type() return the NID of the
163 corresponding OBJECT IDENTIFIER or NID_undef if none exists.
164
165 EVP_MD_size(), EVP_MD_block_size(), EVP_MD_CTX_size() and
166 EVP_MD_CTX_block_size() return the digest or block size in bytes.
167
168 EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), EVP_dss(),
169 EVP_dss1(), EVP_mdc2() and EVP_ripemd160() return pointers to the
170 corresponding EVP_MD structures.
171
172 EVP_get_digestbyname(), EVP_get_digestbynid() and EVP_get_digestbyobj()
173 return either an B<EVP_MD> structure or NULL if an error occurs.
174
175 =head1 NOTES
176
177 The B<EVP> interface to message digests should almost always be used in
178 preference to the low level interfaces. This is because the code then becomes
179 transparent to the digest used and much more flexible.
180
181 New applications should use the SHA2 digest algorithms such as SHA256.
182 The other digest algorithms are still in common use.
183
184 For most applications the B<impl> parameter to EVP_DigestInit_ex() will be
185 set to NULL to use the default digest implementation.
186
187 The functions EVP_DigestInit(), EVP_DigestFinal() and EVP_MD_CTX_copy() are
188 obsolete but are retained to maintain compatibility with existing code. New
189 applications should use EVP_DigestInit_ex(), EVP_DigestFinal_ex() and
190 EVP_MD_CTX_copy_ex() because they can efficiently reuse a digest context
191 instead of initializing and cleaning it up on each call and allow non default
192 implementations of digests to be specified.
193
194 In OpenSSL 0.9.7 and later if digest contexts are not cleaned up after use
195 memory leaks will occur.
196
197 Stack allocation of EVP_MD_CTX structures is common, for example:
198
199  EVP_MD_CTX mctx;
200  EVP_MD_CTX_init(&mctx);
201
202 This will cause binary compatibility issues if the size of EVP_MD_CTX
203 structure changes (this will only happen with a major release of OpenSSL).
204 Applications wishing to avoid this should use EVP_MD_CTX_create() instead:
205
206  EVP_MD_CTX *mctx;
207  mctx = EVP_MD_CTX_create();
208
209
210 =head1 EXAMPLE
211
212 This example digests the data "Test Message\n" and "Hello World\n", using the
213 digest name passed on the command line.
214
215  #include <stdio.h>
216  #include <openssl/evp.h>
217
218  main(int argc, char *argv[])
219  {
220  EVP_MD_CTX *mdctx;
221  const EVP_MD *md;
222  char mess1[] = "Test Message\n";
223  char mess2[] = "Hello World\n";
224  unsigned char md_value[EVP_MAX_MD_SIZE];
225  int md_len, i;
226
227  OpenSSL_add_all_digests();
228
229  if(!argv[1]) {
230         printf("Usage: mdtest digestname\n");
231         exit(1);
232  }
233
234  md = EVP_get_digestbyname(argv[1]);
235
236  if(!md) {
237         printf("Unknown message digest %s\n", argv[1]);
238         exit(1);
239  }
240
241  mdctx = EVP_MD_CTX_create();
242  EVP_DigestInit_ex(mdctx, md, NULL);
243  EVP_DigestUpdate(mdctx, mess1, strlen(mess1));
244  EVP_DigestUpdate(mdctx, mess2, strlen(mess2));
245  EVP_DigestFinal_ex(mdctx, md_value, &md_len);
246  EVP_MD_CTX_destroy(mdctx);
247
248  printf("Digest is: ");
249  for(i = 0; i < md_len; i++)
250         printf("%02x", md_value[i]);
251  printf("\n");
252
253  /* Call this once before exit. */
254  EVP_cleanup();
255  exit(0);
256  }
257
258 =head1 SEE ALSO
259
260 L<dgst(1)|dgst(1)>,
261 L<evp(3)|evp(3)>
262
263 =head1 HISTORY
264
265 EVP_DigestInit(), EVP_DigestUpdate() and EVP_DigestFinal() are
266 available in all versions of SSLeay and OpenSSL.
267
268 EVP_MD_CTX_init(), EVP_MD_CTX_create(), EVP_MD_CTX_copy_ex(),
269 EVP_MD_CTX_cleanup(), EVP_MD_CTX_destroy(), EVP_DigestInit_ex()
270 and EVP_DigestFinal_ex() were added in OpenSSL 0.9.7.
271
272 EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(),
273 EVP_dss(), EVP_dss1(), EVP_mdc2() and EVP_ripemd160() were
274 changed to return truly const EVP_MD * in OpenSSL 0.9.7.
275
276 The link between digests and signing algorithms was fixed in OpenSSL 1.0 and
277 later, so now EVP_sha1() can be used with RSA and DSA; there is no need to
278 use EVP_dss1() any more.
279
280 OpenSSL 1.0 and later does not include the MD2 digest algorithm in the
281 default configuration due to its security weaknesses.
282
283 =cut