1 .\" $NetBSD: libcrypto.pl,v 1.3 2007/11/27 22:16:03 christos Exp $
3 .\" Automatically generated by Pod::Man 2.16 (Pod::Simple 3.05)
6 .\" ========================================================================
7 .de Sh \" Subsection heading
15 .de Sp \" Vertical space (when we can't use .PP)
19 .de Vb \" Begin verbatim text
24 .de Ve \" End verbatim text
28 .\" Set up some character translations and predefined strings. \*(-- will
29 .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
30 .\" double quote, and \*(R" will give a right double quote. \*(C+ will
31 .\" give a nicer C++. Capital omega is used to do unbreakable dashes and
32 .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
33 .\" nothing in troff, for use with C<>.
35 .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
39 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
40 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
53 .\" Escape single quotes in literal strings from groff's Unicode transform.
57 .\" If the F register is turned on, we'll generate index entries on stderr for
58 .\" titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index
59 .\" entries marked with X<> in POD. Of course, you'll have to process the
60 .\" output yourself in some meaningful fashion.
63 . tm Index:\\$1\t\\n%\t"\\$2"
73 .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
74 .\" Fear. Run. Save yourself. No user-serviceable parts.
75 . \" fudge factors for nroff and troff
84 . ds #H ((1u-(\\\\n(.fu%2u))*.13m)
90 . \" simple accents for nroff and troff
100 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
101 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
102 . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
103 . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
104 . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
105 . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
107 . \" troff and (daisy-wheel) nroff accents
108 .ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
109 .ds 8 \h'\*(#H'\(*b\h'-\*(#H'
110 .ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
111 .ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
112 .ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
113 .ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
114 .ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
115 .ds ae a\h'-(\w'a'u*4/10)'e
116 .ds Ae A\h'-(\w'A'u*4/10)'E
117 . \" corrections for vroff
118 .if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
119 .if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
120 . \" for low resolution devices (crt and lpr)
121 .if \n(.H>23 .if \n(.V>19 \
134 .\" ========================================================================
136 .IX Title "EVP_DigestInit 3"
137 .TH EVP_DigestInit 3 "2004-05-20" "1.1.0-dev" "OpenSSL"
138 .\" For nroff, turn off justification. Always turn off hyphenation; it makes
139 .\" way too many mistakes in technical documents.
143 EVP_MD_CTX_init, EVP_MD_CTX_create, EVP_DigestInit_ex, EVP_DigestUpdate,
144 EVP_DigestFinal_ex, EVP_MD_CTX_cleanup, EVP_MD_CTX_destroy, EVP_MAX_MD_SIZE,
145 EVP_MD_CTX_copy_ex, EVP_MD_CTX_copy, EVP_MD_type, EVP_MD_pkey_type, EVP_MD_size,
146 EVP_MD_block_size, EVP_MD_CTX_md, EVP_MD_CTX_size, EVP_MD_CTX_block_size, EVP_MD_CTX_type,
147 EVP_md_null, EVP_md2, EVP_md5, EVP_sha, EVP_sha1, EVP_dss, EVP_dss1, EVP_mdc2,
148 EVP_ripemd160, EVP_get_digestbyname, EVP_get_digestbynid, EVP_get_digestbyobj \-
153 .IX Header "SYNOPSIS"
155 \& #include <openssl/evp.h>
157 \& void EVP_MD_CTX_init(EVP_MD_CTX *ctx);
158 \& EVP_MD_CTX *EVP_MD_CTX_create(void);
160 \& int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *impl);
161 \& int EVP_DigestUpdate(EVP_MD_CTX *ctx, const void *d, size_t cnt);
162 \& int EVP_DigestFinal_ex(EVP_MD_CTX *ctx, unsigned char *md,
165 \& int EVP_MD_CTX_cleanup(EVP_MD_CTX *ctx);
166 \& void EVP_MD_CTX_destroy(EVP_MD_CTX *ctx);
168 \& int EVP_MD_CTX_copy_ex(EVP_MD_CTX *out,const EVP_MD_CTX *in);
170 \& int EVP_DigestInit(EVP_MD_CTX *ctx, const EVP_MD *type);
171 \& int EVP_DigestFinal(EVP_MD_CTX *ctx, unsigned char *md,
174 \& int EVP_MD_CTX_copy(EVP_MD_CTX *out,EVP_MD_CTX *in);
176 \& #define EVP_MAX_MD_SIZE (16+20) /* The SSLv3 md5+sha1 type */
179 \& #define EVP_MD_type(e) ((e)\->type)
180 \& #define EVP_MD_pkey_type(e) ((e)\->pkey_type)
181 \& #define EVP_MD_size(e) ((e)\->md_size)
182 \& #define EVP_MD_block_size(e) ((e)\->block_size)
184 \& #define EVP_MD_CTX_md(e) (e)\->digest)
185 \& #define EVP_MD_CTX_size(e) EVP_MD_size((e)\->digest)
186 \& #define EVP_MD_CTX_block_size(e) EVP_MD_block_size((e)\->digest)
187 \& #define EVP_MD_CTX_type(e) EVP_MD_type((e)\->digest)
189 \& const EVP_MD *EVP_md_null(void);
190 \& const EVP_MD *EVP_md2(void);
191 \& const EVP_MD *EVP_md5(void);
192 \& const EVP_MD *EVP_sha(void);
193 \& const EVP_MD *EVP_sha1(void);
194 \& const EVP_MD *EVP_dss(void);
195 \& const EVP_MD *EVP_dss1(void);
196 \& const EVP_MD *EVP_mdc2(void);
197 \& const EVP_MD *EVP_ripemd160(void);
199 \& const EVP_MD *EVP_get_digestbyname(const char *name);
200 \& #define EVP_get_digestbynid(a) EVP_get_digestbyname(OBJ_nid2sn(a))
201 \& #define EVP_get_digestbyobj(a) EVP_get_digestbynid(OBJ_obj2nid(a))
204 .IX Header "DESCRIPTION"
205 The \s-1EVP\s0 digest routines are a high level interface to message digests.
207 \&\fIEVP_MD_CTX_init()\fR initializes digest contet \fBctx\fR.
209 \&\fIEVP_MD_CTX_create()\fR allocates, initializes and returns a digest contet.
211 \&\fIEVP_DigestInit_ex()\fR sets up digest context \fBctx\fR to use a digest
212 \&\fBtype\fR from \s-1ENGINE\s0 \fBimpl\fR. \fBctx\fR must be initialized before calling this
213 function. \fBtype\fR will typically be supplied by a functionsuch as \fIEVP_sha1()\fR.
214 If \fBimpl\fR is \s-1NULL\s0 then the default implementation of digest \fBtype\fR is used.
216 \&\fIEVP_DigestUpdate()\fR hashes \fBcnt\fR bytes of data at \fBd\fR into the
217 digest context \fBctx\fR. This function can be called several times on the
218 same \fBctx\fR to hash additional data.
220 \&\fIEVP_DigestFinal_ex()\fR retrieves the digest value from \fBctx\fR and places
221 it in \fBmd\fR. If the \fBs\fR parameter is not \s-1NULL\s0 then the number of
222 bytes of data written (i.e. the length of the digest) will be written
223 to the integer at \fBs\fR, at most \fB\s-1EVP_MAX_MD_SIZE\s0\fR bytes will be written.
224 After calling \fIEVP_DigestFinal_ex()\fR no additional calls to \fIEVP_DigestUpdate()\fR
225 can be made, but \fIEVP_DigestInit_ex()\fR can be called to initialize a new
228 \&\fIEVP_MD_CTX_cleanup()\fR cleans up digest context \fBctx\fR, it should be called
229 after a digest context is no longer needed.
231 \&\fIEVP_MD_CTX_destroy()\fR cleans up digest context \fBctx\fR and frees up the
232 space allocated to it, it should be called only on a context created
233 using \fIEVP_MD_CTX_create()\fR.
235 \&\fIEVP_MD_CTX_copy_ex()\fR can be used to copy the message digest state from
236 \&\fBin\fR to \fBout\fR. This is useful if large amounts of data are to be
237 hashed which only differ in the last few bytes. \fBout\fR must be initialized
238 before calling this function.
240 \&\fIEVP_DigestInit()\fR behaves in the same way as \fIEVP_DigestInit_ex()\fR except
241 the passed context \fBctx\fR does not have to be initialized, and it always
242 uses the default digest implementation.
244 \&\fIEVP_DigestFinal()\fR is similar to \fIEVP_DigestFinal_ex()\fR except the digest
245 contet \fBctx\fR is automatically cleaned up.
247 \&\fIEVP_MD_CTX_copy()\fR is similar to \fIEVP_MD_CTX_copy_ex()\fR except the destination
248 \&\fBout\fR does not have to be initialized.
250 \&\fIEVP_MD_size()\fR and \fIEVP_MD_CTX_size()\fR return the size of the message digest
251 when passed an \fB\s-1EVP_MD\s0\fR or an \fB\s-1EVP_MD_CTX\s0\fR structure, i.e. the size of the
254 \&\fIEVP_MD_block_size()\fR and \fIEVP_MD_CTX_block_size()\fR return the block size of the
255 message digest when passed an \fB\s-1EVP_MD\s0\fR or an \fB\s-1EVP_MD_CTX\s0\fR structure.
257 \&\fIEVP_MD_type()\fR and \fIEVP_MD_CTX_type()\fR return the \s-1NID\s0 of the \s-1OBJECT\s0 \s-1IDENTIFIER\s0
258 representing the given message digest when passed an \fB\s-1EVP_MD\s0\fR structure.
259 For example EVP_MD_type(\fIEVP_sha1()\fR) returns \fBNID_sha1\fR. This function is
260 normally used when setting \s-1ASN1\s0 OIDs.
262 \&\fIEVP_MD_CTX_md()\fR returns the \fB\s-1EVP_MD\s0\fR structure corresponding to the passed
263 \&\fB\s-1EVP_MD_CTX\s0\fR.
265 \&\fIEVP_MD_pkey_type()\fR returns the \s-1NID\s0 of the public key signing algorithm associated
266 with this digest. For example \fIEVP_sha1()\fR is associated with \s-1RSA\s0 so this will
267 return \fBNID_sha1WithRSAEncryption\fR. This \*(L"link\*(R" between digests and signature
268 algorithms may not be retained in future versions of OpenSSL.
270 \&\fIEVP_md2()\fR, \fIEVP_md5()\fR, \fIEVP_sha()\fR, \fIEVP_sha1()\fR, \fIEVP_mdc2()\fR and \fIEVP_ripemd160()\fR
271 return \fB\s-1EVP_MD\s0\fR structures for the \s-1MD2\s0, \s-1MD5\s0, \s-1SHA\s0, \s-1SHA1\s0, \s-1MDC2\s0 and \s-1RIPEMD160\s0 digest
272 algorithms respectively. The associated signature algorithm is \s-1RSA\s0 in each case.
274 \&\fIEVP_dss()\fR and \fIEVP_dss1()\fR return \fB\s-1EVP_MD\s0\fR structures for \s-1SHA\s0 and \s-1SHA1\s0 digest
275 algorithms but using \s-1DSS\s0 (\s-1DSA\s0) for the signature algorithm.
277 \&\fIEVP_md_null()\fR is a \*(L"null\*(R" message digest that does nothing: i.e. the hash it
278 returns is of zero length.
280 \&\fIEVP_get_digestbyname()\fR, \fIEVP_get_digestbynid()\fR and \fIEVP_get_digestbyobj()\fR
281 return an \fB\s-1EVP_MD\s0\fR structure when passed a digest name, a digest \s-1NID\s0 or
282 an \s-1ASN1_OBJECT\s0 structure respectively. The digest table must be initialized
283 using, for example, \fIOpenSSL_add_all_digests()\fR for these functions to work.
285 .IX Header "RETURN VALUES"
286 \&\fIEVP_DigestInit_ex()\fR, \fIEVP_DigestUpdate()\fR and \fIEVP_DigestFinal_ex()\fR return 1 for
287 success and 0 for failure.
289 \&\fIEVP_MD_CTX_copy_ex()\fR returns 1 if successful or 0 for failure.
291 \&\fIEVP_MD_type()\fR, \fIEVP_MD_pkey_type()\fR and \fIEVP_MD_type()\fR return the \s-1NID\s0 of the
292 corresponding \s-1OBJECT\s0 \s-1IDENTIFIER\s0 or NID_undef if none exists.
294 \&\fIEVP_MD_size()\fR, \fIEVP_MD_block_size()\fR, EVP_MD_CTX_size(e), \fIEVP_MD_size()\fR,
295 \&\fIEVP_MD_CTX_block_size()\fR and \fIEVP_MD_block_size()\fR return the digest or block
298 \&\fIEVP_md_null()\fR, \fIEVP_md2()\fR, \fIEVP_md5()\fR, \fIEVP_sha()\fR, \fIEVP_sha1()\fR, \fIEVP_dss()\fR,
299 \&\fIEVP_dss1()\fR, \fIEVP_mdc2()\fR and \fIEVP_ripemd160()\fR return pointers to the
300 corresponding \s-1EVP_MD\s0 structures.
302 \&\fIEVP_get_digestbyname()\fR, \fIEVP_get_digestbynid()\fR and \fIEVP_get_digestbyobj()\fR
303 return either an \fB\s-1EVP_MD\s0\fR structure or \s-1NULL\s0 if an error occurs.
306 The \fB\s-1EVP\s0\fR interface to message digests should almost always be used in
307 preference to the low level interfaces. This is because the code then becomes
308 transparent to the digest used and much more flexible.
310 \&\s-1SHA1\s0 is the digest of choice for new applications. The other digest algorithms
311 are still in common use.
313 For most applications the \fBimpl\fR parameter to \fIEVP_DigestInit_ex()\fR will be
314 set to \s-1NULL\s0 to use the default digest implementation.
316 The functions \fIEVP_DigestInit()\fR, \fIEVP_DigestFinal()\fR and \fIEVP_MD_CTX_copy()\fR are
317 obsolete but are retained to maintain compatibility with existing code. New
318 applications should use \fIEVP_DigestInit_ex()\fR, \fIEVP_DigestFinal_ex()\fR and
319 \&\fIEVP_MD_CTX_copy_ex()\fR because they can efficiently reuse a digest context
320 instead of initializing and cleaning it up on each call and allow non default
321 implementations of digests to be specified.
323 In OpenSSL 0.9.7 and later if digest contexts are not cleaned up after use
324 memory leaks will occur.
327 This example digests the data \*(L"Test Message\en\*(R" and \*(L"Hello World\en\*(R", using the
328 digest name passed on the command line.
331 \& #include <stdio.h>
332 \& #include <openssl/evp.h>
334 \& main(int argc, char *argv[])
338 \& char mess1[] = "Test Message\en";
339 \& char mess2[] = "Hello World\en";
340 \& unsigned char md_value[EVP_MAX_MD_SIZE];
343 \& OpenSSL_add_all_digests();
346 \& printf("Usage: mdtest digestname\en");
350 \& md = EVP_get_digestbyname(argv[1]);
353 \& printf("Unknown message digest %s\en", argv[1]);
357 \& EVP_MD_CTX_init(&mdctx);
358 \& EVP_DigestInit_ex(&mdctx, md, NULL);
359 \& EVP_DigestUpdate(&mdctx, mess1, strlen(mess1));
360 \& EVP_DigestUpdate(&mdctx, mess2, strlen(mess2));
361 \& EVP_DigestFinal_ex(&mdctx, md_value, &md_len);
362 \& EVP_MD_CTX_cleanup(&mdctx);
364 \& printf("Digest is: ");
365 \& for(i = 0; i < md_len; i++) printf("%02x", md_value[i]);
371 The link between digests and signing algorithms results in a situation where
372 \&\fIEVP_sha1()\fR must be used with \s-1RSA\s0 and \fIEVP_dss1()\fR must be used with \s-1DSS\s0
373 even though they are identical digests.
375 .IX Header "SEE ALSO"
376 \&\fIopenssl_evp\fR\|(3), \fIopenssl_hmac\fR\|(3), \fImd2\fR\|(3),
377 \&\fIopenssl_md5\fR\|(3), \fIopenssl_mdc2\fR\|(3), \fIopenssl_ripemd\fR\|(3),
378 \&\fIopenssl_sha\fR\|(3), \fIopenssl_dgst\fR\|(1)
381 \&\fIEVP_DigestInit()\fR, \fIEVP_DigestUpdate()\fR and \fIEVP_DigestFinal()\fR are
382 available in all versions of SSLeay and OpenSSL.
384 \&\fIEVP_MD_CTX_init()\fR, \fIEVP_MD_CTX_create()\fR, \fIEVP_MD_CTX_copy_ex()\fR,
385 \&\fIEVP_MD_CTX_cleanup()\fR, \fIEVP_MD_CTX_destroy()\fR, \fIEVP_DigestInit_ex()\fR
386 and \fIEVP_DigestFinal_ex()\fR were added in OpenSSL 0.9.7.
388 \&\fIEVP_md_null()\fR, \fIEVP_md2()\fR, \fIEVP_md5()\fR, \fIEVP_sha()\fR, \fIEVP_sha1()\fR,
389 \&\fIEVP_dss()\fR, \fIEVP_dss1()\fR, \fIEVP_mdc2()\fR and \fIEVP_ripemd160()\fR were
390 changed to return truely const \s-1EVP_MD\s0 * in OpenSSL 0.9.7.