]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/EVP_MD_meth_new.pod
Move manpages to man[1357] structure.
[thirdparty/openssl.git] / doc / man3 / EVP_MD_meth_new.pod
CommitLineData
706e2462
RL
1=pod
2
3=head1 NAME
4
c952780c 5EVP_MD_meth_dup,
706e2462
RL
6EVP_MD_meth_new, EVP_MD_meth_free, EVP_MD_meth_set_input_blocksize,
7EVP_MD_meth_set_result_size, EVP_MD_meth_set_app_datasize,
8EVP_MD_meth_set_flags, EVP_MD_meth_set_init, EVP_MD_meth_set_update,
9EVP_MD_meth_set_final, EVP_MD_meth_set_copy, EVP_MD_meth_set_cleanup,
10EVP_MD_meth_set_ctrl, EVP_MD_meth_get_input_blocksize,
11EVP_MD_meth_get_result_size, EVP_MD_meth_get_app_datasize,
12EVP_MD_meth_get_flags, EVP_MD_meth_get_init, EVP_MD_meth_get_update,
13EVP_MD_meth_get_final, EVP_MD_meth_get_copy, EVP_MD_meth_get_cleanup,
c952780c
RS
14EVP_MD_meth_get_ctrl, EVP_MD_CTX_md_data
15- Routines to build up EVP_MD methods
706e2462
RL
16
17=head1 SYNOPSIS
18
19 #include <openssl/evp.h>
20
6d6e8070 21 EVP_MD *EVP_MD_meth_new(int md_type, int pkey_type);
6d6e8070 22 void EVP_MD_meth_free(EVP_MD *md);
c952780c 23 EVP_MD *EVP_MD_meth_dup(const EVP_MD *md);
706e2462
RL
24
25 int EVP_MD_meth_set_input_blocksize(EVP_MD *md, int blocksize);
26 int EVP_MD_meth_set_result_size(EVP_MD *md, int resultsize);
27 int EVP_MD_meth_set_app_datasize(EVP_MD *md, int datasize);
28 int EVP_MD_meth_set_flags(EVP_MD *md, unsigned long flags);
29 int EVP_MD_meth_set_init(EVP_MD *md, int (*init)(EVP_MD_CTX *ctx));
30 int EVP_MD_meth_set_update(EVP_MD *md, int (*update)(EVP_MD_CTX *ctx,
31 const void *data,
32 size_t count));
33 int EVP_MD_meth_set_final(EVP_MD *md, int (*final)(EVP_MD_CTX *ctx,
34 unsigned char *md));
35 int EVP_MD_meth_set_copy(EVP_MD *md, int (*copy)(EVP_MD_CTX *to,
36 const EVP_MD_CTX *from));
c952780c 37 void *EVP_MD_CTX_md_data(const EVP_MD_CTX *ctx);
706e2462
RL
38 int EVP_MD_meth_set_cleanup(EVP_MD *md, int (*cleanup)(EVP_MD_CTX *ctx));
39 int EVP_MD_meth_set_ctrl(EVP_MD *md, int (*ctrl)(EVP_MD_CTX *ctx, int cmd,
40 int p1, void *p2));
41
42 int EVP_MD_meth_get_input_blocksize(const EVP_MD *md);
43 int EVP_MD_meth_get_result_size(const EVP_MD *md);
44 int EVP_MD_meth_get_app_datasize(const EVP_MD *md);
45 unsigned long EVP_MD_meth_get_flags(const EVP_MD *md);
46 int (*EVP_MD_meth_get_init(const EVP_MD *md))(EVP_MD_CTX *ctx);
47 int (*EVP_MD_meth_get_update(const EVP_MD *md))(EVP_MD_CTX *ctx,
48 const void *data,
49 size_t count);
50 int (*EVP_MD_meth_get_final(const EVP_MD *md))(EVP_MD_CTX *ctx,
51 unsigned char *md);
52 int (*EVP_MD_meth_get_copy(const EVP_MD *md))(EVP_MD_CTX *to,
53 const EVP_MD_CTX *from);
54 int (*EVP_MD_meth_get_cleanup(const EVP_MD *md))(EVP_MD_CTX *ctx);
55 int (*EVP_MD_meth_get_ctrl(const EVP_MD *md))(EVP_MD_CTX *ctx, int cmd,
56 int p1, void *p2);
57
58=head1 DESCRIPTION
59
60The B<EVP_MD> type is a structure for digest method implementation.
61It can also have associated public/private key signing and verifying
62routines.
63
64EVP_MD_meth_new() creates a new B<EVP_MD> structure.
65
66EVP_MD_meth_dup() creates a copy of B<md>.
67
68EVP_MD_meth_free() destroys a B<EVP_MD> structure.
69
70EVP_MD_meth_set_input_blocksize() sets the internal input block size
71for the method B<md> to B<blocksize> bytes.
72
73EVP_MD_meth_set_result_size() sets the size of the result that the
74digest method in B<md> is expected to produce to B<resultsize> bytes.
75
76The digest method may have its own private data, which OpenSSL will
77allocate for it. EVP_MD_meth_set_app_datasize() should be used to
78set the size for it to B<datasize>.
79
80EVP_MD_meth_set_flags() sets the flags to describe optional
81behaviours in the particular B<md>. Several flags can be or'd
82together. The available flags are:
83
84=over 4
85
86=item EVP_MD_FLAG_ONESHOT
87
88This digest method can only handles one block of input.
89
90=item EVP_MD_FLAG_DIGALGID_NULL
91
92When setting up a DigestAlgorithmIdentifier, this flag will have the
93parameter set to NULL by default. Use this for PKCS#1. I<Note: if
94combined with EVP_MD_FLAG_DIGALGID_ABSENT, the latter will override.>
95
96=item EVP_MD_FLAG_DIGALGID_ABSENT
97
98When setting up a DigestAlgorithmIdentifier, this flag will have the
99parameter be left absent by default. I<Note: if combined with
b9b6a7e5 100EVP_MD_FLAG_DIGALGID_NULL, the latter will be overridden.>
706e2462
RL
101
102=item EVP_MD_FLAG_DIGALGID_CUSTOM
103
104Custom DigestAlgorithmIdentifier handling via ctrl, with
105B<EVP_MD_FLAG_DIGALGID_ABSENT> as default. I<Note: if combined with
b9b6a7e5 106EVP_MD_FLAG_DIGALGID_NULL, the latter will be overridden.>
706e2462
RL
107Currently unused.
108
109=back
110
111EVP_MD_meth_set_init() sets the digest init function for B<md>.
112The digest init function is called by EVP_DigestInit(),
113EVP_DigestInit_ex(), EVP_SignInit, EVP_SignInit_ex(), EVP_VerifyInit()
114and EVP_VerifyInit_ex().
115
116EVP_MD_meth_set_update() sets the digest update function for B<md>.
117The digest update function is called by EVP_DigestUpdate(),
118EVP_SignUpdate().
119
120EVP_MD_meth_set_final() sets the digest final function for B<md>.
121The digest final function is called by EVP_DigestFinal(),
122EVP_DigestFinal_ex(), EVP_SignFinal() and EVP_VerifyFinal().
123
124EVP_MD_meth_set_copy() sets the function for B<md> to do extra
125computations after the method's private data structure has been copied
126from one B<EVP_MD_CTX> to another. If all that's needed is to copy
127the data, there is no need for this copy function.
128Note that the copy function is passed two B<EVP_MD_CTX *>, the private
129data structure is then available with EVP_MD_CTX_md_data().
130This copy function is called by EVP_MD_CTX_copy() and
131EVP_MD_CTX_copy_ex().
132
133EVP_MD_meth_set_cleanup() sets the function for B<md> to do extra
9d22666e 134cleanup before the method's private data structure is cleaned out and
706e2462
RL
135freed.
136Note that the cleanup function is passed a B<EVP_MD_CTX *>, the
137private data structure is then available with EVP_MD_CTX_md_data().
138This cleanup function is called by EVP_MD_CTX_reset() and
139EVP_MD_CTX_free().
140
141EVP_MD_meth_set_ctrl() sets the control function for B<md>.
142
143
144EVP_MD_meth_get_input_blocksize(), EVP_MD_meth_get_result_size(),
145EVP_MD_meth_get_app_datasize(), EVP_MD_meth_get_flags(),
146EVP_MD_meth_get_init(), EVP_MD_meth_get_update(),
147EVP_MD_meth_get_final(), EVP_MD_meth_get_copy(),
148EVP_MD_meth_get_cleanup() and EVP_MD_meth_get_ctrl() are all used
149to retrieve the method data given with the EVP_MD_meth_set_*()
150functions above.
151
152=head1 SEE ALSO
153
154L<EVP_DigestInit(3)>, L<EVP_SignInit(3)>, L<EVP_VerifyInit(3)>
155
156=head1 HISTORY
157
158The B<EVP_MD> structure was openly available in OpenSSL before version
1591.1. The functions described here were added in OpenSSL version 1.1.
160
e2f92610
RS
161=head1 COPYRIGHT
162
163Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
164
165Licensed under the OpenSSL license (the "License"). You may not use
166this file except in compliance with the License. You can obtain a copy
167in the file LICENSE in the source distribution or at
168L<https://www.openssl.org/source/license.html>.
169
170=cut