.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is turned on, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .ie \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . nr % 0 . rr F .\} .el \{\ . de IX .. .\} .\" .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2). .\" Fear. Run. Save yourself. No user-serviceable parts. . \" fudge factors for nroff and troff .if n \{\ . ds #H 0 . ds #V .8m . ds #F .3m . ds #[ \f1 . ds #] \fP .\} .if t \{\ . ds #H ((1u-(\\\\n(.fu%2u))*.13m) . ds #V .6m . ds #F 0 . ds #[ \& . ds #] \& .\} . \" simple accents for nroff and troff .if n \{\ . ds ' \& . ds ` \& . ds ^ \& . ds , \& . ds ~ ~ . ds / .\} .if t \{\ . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' .\} . \" troff and (daisy-wheel) nroff accents .ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' .ds 8 \h'\*(#H'\(*b\h'-\*(#H' .ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] .ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' .ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' .ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] .ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] .ds ae a\h'-(\w'a'u*4/10)'e .ds Ae A\h'-(\w'A'u*4/10)'E . \" corrections for vroff .if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' .if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' . \" for low resolution devices (crt and lpr) .if \n(.H>23 .if \n(.V>19 \ \{\ . ds : e . ds 8 ss . ds o a . ds d- d\h'-1'\(ga . ds D- D\h'-1'\(hy . ds th \o'bp' . ds Th \o'LP' . ds ae ae . ds Ae AE .\} .rm #[ #] #H #V #F C .\" ======================================================================== .\" .IX Title "PROVIDER-DIGEST 7" .TH PROVIDER-DIGEST 7 "2020-03-02" "3.0.0-dev" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" provider\-digest \- The digest library <\-> provider functions .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 2 \& #include \& #include \& \& /* \& * Digests support the following function signatures in OSSL_DISPATCH arrays. \& * (The function signatures are not actual functions). \& */ \& \& /* Context management */ \& void *OP_digest_newctx(void *provctx); \& void OP_digest_freectx(void *dctx); \& void *OP_digest_dupctx(void *dctx); \& \& /* Digest generation */ \& int OP_digest_init(void *dctx); \& int OP_digest_update(void *dctx, const unsigned char *in, size_t inl); \& int OP_digest_final(void *dctx, unsigned char *out, size_t *outl, \& size_t outsz); \& int OP_digest_digest(void *provctx, const unsigned char *in, size_t inl, \& unsigned char *out, size_t *outl, size_t outsz); \& \& /* Digest parameter descriptors */ \& const OSSL_PARAM *OP_digest_gettable_params(void); \& \& /* Digest operation parameter descriptors */ \& const OSSL_PARAM *OP_digest_gettable_ctx_params(void); \& const OSSL_PARAM *OP_digest_settable_ctx_params(void); \& \& /* Digest parameters */ \& int OP_digest_get_params(OSSL_PARAM params[]); \& \& /* Digest operation parameters */ \& int OP_digest_set_ctx_params(void *dctx, const OSSL_PARAM params[]); \& int OP_digest_get_ctx_params(void *dctx, OSSL_PARAM params[]); .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" This documentation is primarily aimed at provider authors. See \fIprovider\fR\|(7) for further information. .PP The \s-1DIGEST\s0 operation enables providers to implement digest algorithms and make them available to applications via the \s-1API\s0 functions \fIEVP_DigestInit_ex\fR\|(3), \&\fIEVP_DigestUpdate\fR\|(3) and \fIEVP_DigestFinal\fR\|(3) (and other related functions). .PP All \*(L"functions\*(R" mentioned here are passed as function pointers between \&\fIlibcrypto\fR and the provider in \fB\s-1OSSL_DISPATCH\s0\fR arrays via \&\fB\s-1OSSL_ALGORITHM\s0\fR arrays that are returned by the provider's \&\fIprovider_query_operation()\fR function (see \*(L"Provider Functions\*(R" in \fIprovider\-base\fR\|(7)). .PP All these \*(L"functions\*(R" have a corresponding function type definition named \fBOSSL_{name}_fn\fR, and a helper function to retrieve the function pointer from an \fB\s-1OSSL_DISPATCH\s0\fR element named \&\fBOSSL_get_{name}\fR. For example, the \*(L"function\*(R" \fIOP_digest_newctx()\fR has these: .PP .Vb 3 \& typedef void *(OSSL_OP_digest_newctx_fn)(void *provctx); \& static ossl_inline OSSL_OP_digest_newctx_fn \& OSSL_get_OP_digest_newctx(const OSSL_DISPATCH *opf); .Ve .PP \&\fB\s-1OSSL_DISPATCH\s0\fR arrays are indexed by numbers that are provided as macros in \fIopenssl\-core_numbers.h\fR\|(7), as follows: .PP .Vb 3 \& OP_digest_newctx OSSL_FUNC_DIGEST_NEWCTX \& OP_digest_freectx OSSL_FUNC_DIGEST_FREECTX \& OP_digest_dupctx OSSL_FUNC_DIGEST_DUPCTX \& \& OP_digest_init OSSL_FUNC_DIGEST_INIT \& OP_digest_update OSSL_FUNC_DIGEST_UPDATE \& OP_digest_final OSSL_FUNC_DIGEST_FINAL \& OP_digest_digest OSSL_FUNC_DIGEST_DIGEST \& \& OP_digest_get_params OSSL_FUNC_DIGEST_GET_PARAMS \& OP_digest_get_ctx_params OSSL_FUNC_DIGEST_GET_CTX_PARAMS \& OP_digest_set_ctx_params OSSL_FUNC_DIGEST_SET_CTX_PARAMS \& \& OP_digest_gettable_params OSSL_FUNC_DIGEST_GETTABLE_PARAMS \& OP_digest_gettable_ctx_params OSSL_FUNC_DIGEST_GETTABLE_CTX_PARAMS \& OP_digest_settable_ctx_params OSSL_FUNC_DIGEST_SETTABLE_CTX_PARAMS .Ve .PP A digest algorithm implementation may not implement all of these functions. In order to be usable all or none of OP_digest_newctx, OP_digest_freectx, OP_digest_init, OP_digest_update and OP_digest_final should be implemented. All other functions are optional. .SS "Context Management Functions" .IX Subsection "Context Management Functions" \&\fIOP_digest_newctx()\fR should create and return a pointer to a provider side structure for holding context information during a digest operation. A pointer to this context will be passed back in a number of the other digest operation function calls. The parameter \fIprovctx\fR is the provider context generated during provider initialisation (see \fIprovider\fR\|(7)). .PP \&\fIOP_digest_freectx()\fR is passed a pointer to the provider side digest context in the \fIdctx\fR parameter. This function should free any resources associated with that context. .PP \&\fIOP_digest_dupctx()\fR should duplicate the provider side digest context in the \&\fIdctx\fR parameter and return the duplicate copy. .SS "Digest Generation Functions" .IX Subsection "Digest Generation Functions" \&\fIOP_digest_init()\fR initialises a digest operation given a newly created provider side digest context in the \fIdctx\fR parameter. .PP \&\fIOP_digest_update()\fR is called to supply data to be digested as part of a previously initialised digest operation. The \fIdctx\fR parameter contains a pointer to a previously initialised provider side context. \&\fIOP_digest_update()\fR should digest \fIinl\fR bytes of data at the location pointed to by \fIin\fR. \&\fIOP_digest_update()\fR may be called multiple times for a single digest operation. .PP \&\fIOP_digest_final()\fR generates a digest started through previous \fIOP_digest_init()\fR and \fIOP_digest_update()\fR calls. The \fIdctx\fR parameter contains a pointer to the provider side context. The digest should be written to \fI*out\fR and the length of the digest to \&\fI*outl\fR. The digest should not exceed \fIoutsz\fR bytes. .PP \&\fIOP_digest_digest()\fR is a \*(L"oneshot\*(R" digest function. No provider side digest context is used. Instead the provider context that was created during provider initialisation is passed in the \fIprovctx\fR parameter (see \fIprovider\fR\|(7)). \&\fIinl\fR bytes at \fIin\fR should be digested and the result should be stored at \&\fIout\fR. The length of the digest should be stored in \fI*outl\fR which should not exceed \fIoutsz\fR bytes. .SS "Digest Parameters" .IX Subsection "Digest Parameters" See \s-1\fIOSSL_PARAM\s0\fR\|(3) for further details on the parameters structure used by these functions. .PP \&\fIOP_digest_get_params()\fR gets details of the algorithm implementation and stores them in \fIparams\fR. .PP \&\fIOP_digest_set_ctx_params()\fR sets digest operation parameters for the provider side digest context \fIdctx\fR to \fIparams\fR. Any parameter settings are additional to any that were previously set. .PP \&\fIOP_digest_get_ctx_params()\fR gets digest operation details details from the given provider side digest context \fIdctx\fR and stores them in \fIparams\fR. .PP \&\fIOP_digest_gettable_params()\fR, \fIOP_digest_gettable_ctx_params()\fR, and \&\fIOP_digest_settable_ctx_params()\fR all return constant \fB\s-1OSSL_PARAM\s0\fR arrays as descriptors of the parameters that \fIOP_digest_get_params()\fR, \&\fIOP_digest_get_ctx_params()\fR, and \fIOP_digest_set_ctx_params()\fR can handle, respectively. .PP Parameters currently recognised by built-in digests with this function are as follows. Not all parameters are relevant to, or are understood by all digests: .ie n .IP """blocksize"" (\fB\s-1OSSL_DIGEST_PARAM_BLOCK_SIZE\s0\fR) " 4 .el .IP "``blocksize'' (\fB\s-1OSSL_DIGEST_PARAM_BLOCK_SIZE\s0\fR) " 4 .IX Item "blocksize (OSSL_DIGEST_PARAM_BLOCK_SIZE) " The digest block size. The length of the \*(L"blocksize\*(R" parameter should not exceed that of a \fBsize_t\fR. .ie n .IP """size"" (\fB\s-1OSSL_DIGEST_PARAM_SIZE\s0\fR) " 4 .el .IP "``size'' (\fB\s-1OSSL_DIGEST_PARAM_SIZE\s0\fR) " 4 .IX Item "size (OSSL_DIGEST_PARAM_SIZE) " The digest output size. The length of the \*(L"size\*(R" parameter should not exceed that of a \fBsize_t\fR. .ie n .IP """flags"" (\fB\s-1OSSL_DIGEST_PARAM_FLAGS\s0\fR) " 4 .el .IP "``flags'' (\fB\s-1OSSL_DIGEST_PARAM_FLAGS\s0\fR) " 4 .IX Item "flags (OSSL_DIGEST_PARAM_FLAGS) " Diverse flags that describe exceptional behaviour for the digest: .RS 4 .IP "\fB\s-1EVP_MD_FLAG_ONESHOT\s0\fR" 4 .IX Item "EVP_MD_FLAG_ONESHOT" This digest method can only handle one block of input. .IP "\fB\s-1EVP_MD_FLAG_XOF\s0\fR" 4 .IX Item "EVP_MD_FLAG_XOF" This digest method is an extensible-output function (\s-1XOF\s0) and supports setting the \fB\s-1OSSL_DIGEST_PARAM_XOFLEN\s0\fR parameter. .IP "\fB\s-1EVP_MD_FLAG_DIGALGID_NULL\s0\fR" 4 .IX Item "EVP_MD_FLAG_DIGALGID_NULL" When setting up a DigestAlgorithmIdentifier, this flag will have the parameter set to \s-1NULL\s0 by default. Use this for PKCS#1. \fINote: if combined with \s-1EVP_MD_FLAG_DIGALGID_ABSENT\s0, the latter will override.\fR .IP "\fB\s-1EVP_MD_FLAG_DIGALGID_ABSENT\s0\fR" 4 .IX Item "EVP_MD_FLAG_DIGALGID_ABSENT" When setting up a DigestAlgorithmIdentifier, this flag will have the parameter be left absent by default. \fINote: if combined with \&\s-1EVP_MD_FLAG_DIGALGID_NULL\s0, the latter will be overridden.\fR .IP "\fB\s-1EVP_MD_FLAG_DIGALGID_CUSTOM\s0\fR" 4 .IX Item "EVP_MD_FLAG_DIGALGID_CUSTOM" Custom DigestAlgorithmIdentifier handling via ctrl, with \&\fB\s-1EVP_MD_FLAG_DIGALGID_ABSENT\s0\fR as default. \fINote: if combined with \&\s-1EVP_MD_FLAG_DIGALGID_NULL\s0, the latter will be overridden.\fR Currently unused. .RE .RS 4 .Sp The length of the \*(L"flags\*(R" parameter should equal that of an \&\fBunsigned long int\fR. .RE .SS "Digest Context Parameters" .IX Subsection "Digest Context Parameters" \&\fIOP_digest_set_ctx_params()\fR sets digest parameters associated with the given provider side digest context \fIdctx\fR to \fIparams\fR. Any parameter settings are additional to any that were previously set. See \s-1\fIOSSL_PARAM\s0\fR\|(3) for further details on the parameters structure. .PP \&\fIOP_digest_get_ctx_params()\fR gets details of currently set parameters values associated with the give provider side digest context \fIdctx\fR and stores them in \fIparams\fR. See \s-1\fIOSSL_PARAM\s0\fR\|(3) for further details on the parameters structure. .PP Parameters currently recognised by built-in digests are as follows. Not all parameters are relevant to, or are understood by all digests: .ie n .IP """xoflen"" (\fB\s-1OSSL_DIGEST_PARAM_XOFLEN\s0\fR) " 4 .el .IP "``xoflen'' (\fB\s-1OSSL_DIGEST_PARAM_XOFLEN\s0\fR) " 4 .IX Item "xoflen (OSSL_DIGEST_PARAM_XOFLEN) " Sets the digest length for extendable output functions. The length of the \*(L"xoflen\*(R" parameter should not exceed that of a \fBsize_t\fR. .ie n .IP """ssl3\-ms"" (\fB\s-1OSSL_DIGEST_PARAM_SSL3_MS\s0\fR) " 4 .el .IP "``ssl3\-ms'' (\fB\s-1OSSL_DIGEST_PARAM_SSL3_MS\s0\fR) " 4 .IX Item "ssl3-ms (OSSL_DIGEST_PARAM_SSL3_MS) " This parameter is set by libssl in order to calculate a signature hash for an SSLv3 CertificateVerify message as per \s-1RFC6101\s0. It is only set after all handshake messages have already been digested via \&\fIOP_digest_update()\fR calls. The parameter provides the master secret value to be added to the digest. The digest implementation should calculate the complete digest as per \s-1RFC6101\s0 section 5.6.8. The next call after setting this parameter will be \fIOP_digest_final()\fR. This is only relevant for implementations of \s-1SHA1\s0 or \s-1MD5_SHA1\s0. .ie n .IP """pad_type"" (\fB\s-1OSSL_DIGEST_PARAM_PAD_TYPE\s0\fR) " 4 .el .IP "``pad_type'' (\fB\s-1OSSL_DIGEST_PARAM_PAD_TYPE\s0\fR) " 4 .IX Item "pad_type (OSSL_DIGEST_PARAM_PAD_TYPE) " Sets the pad type to be used. The only built-in digest that uses this is \s-1MDC2\s0. Normally the final \s-1MDC2\s0 block is padded with 0s. If the pad type is set to 2 then the final block is padded with 0x80 followed by 0s. .ie n .IP """micalg"" (\fB\s-1OSSL_DIGEST_PARAM_MICALG\s0\fR) <\s-1UTF8\s0 string>" 4 .el .IP "``micalg'' (\fB\s-1OSSL_DIGEST_PARAM_MICALG\s0\fR) <\s-1UTF8\s0 string>" 4 .IX Item "micalg (OSSL_DIGEST_PARAM_MICALG) " Gets the digest Message Integrity Check algorithm string. This is used when creating S/MIME multipart/signed messages, as specified in \&\s-1RFC\s0 5751. .SH "RETURN VALUES" .IX Header "RETURN VALUES" \&\fIOP_digest_newctx()\fR and \fIOP_digest_dupctx()\fR should return the newly created provider side digest context, or \s-1NULL\s0 on failure. .PP \&\fIOP_digest_init()\fR, \fIOP_digest_update()\fR, \fIOP_digest_final()\fR, \fIOP_digest_digest()\fR, \&\fIOP_digest_set_params()\fR and \fIOP_digest_get_params()\fR should return 1 for success or 0 on error. .PP \&\fIOP_digest_size()\fR should return the digest size. .PP \&\fIOP_digest_block_size()\fR should return the block size of the underlying digest algorithm. .SH "SEE ALSO" .IX Header "SEE ALSO" \&\fIprovider\fR\|(7) .SH "HISTORY" .IX Header "HISTORY" The provider \s-1DIGEST\s0 interface was introduced in OpenSSL 3.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" Copyright 2019 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the Apache License 2.0 (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy in the file \s-1LICENSE\s0 in the source distribution or at .