ossl_param_bld_init.pod 6.9 KB
Newer Older
P
Pauli 已提交
1 2 3 4
=pod

=head1 NAME

P
Pauli 已提交
5 6 7 8 9 10 11 12 13
ossl_param_bld_init, ossl_param_bld_to_param, ossl_param_bld_to_param_ex,
ossl_param_bld_free, ossl_param_bld_push_int, ossl_param_bld_push_uint,
ossl_param_bld_push_long, ossl_param_bld_push_ulong,
ossl_param_bld_push_int32, ossl_param_bld_push_uint32,
ossl_param_bld_push_int64, ossl_param_bld_push_uint64,
ossl_param_bld_push_size_t, ossl_param_bld_push_double,
ossl_param_bld_push_BN, ossl_param_bld_push_utf8_string,
ossl_param_bld_push_utf8_ptr, ossl_param_bld_push_octet_string,
ossl_param_bld_push_octet_ptr
P
Pauli 已提交
14 15 16 17 18 19
- functions to assist in the creation of OSSL_PARAM arrays

=head1 SYNOPSIS

=for comment generic

P
Pauli 已提交
20
 #include "internal/params_build.h"
P
Pauli 已提交
21 22 23 24

 #define OSSL_PARAM_BLD_MAX 10
 typedef struct { ... } OSSL_PARAM_BLD;

25
 void ossl_param_bld_init(OSSL_PARAM_BLD *bld);
P
Pauli 已提交
26
 OSSL_PARAM *ossl_param_bld_to_param(OSSL_PARAM_BLD *bld);
27
 OSSL_PARAM *ossl_param_bld_to_param_ex(OSSL_PARAM_BLD *bld,
P
Pauli 已提交
28 29 30
                                        OSSL_PARAM *params, size_t param_n,
                                        void *data, size_t data_n,
                                        void *secure, size_t secure_n);
P
Pauli 已提交
31
 void ossl_param_bld_free(OSSL_PARAM *params);
P
Pauli 已提交
32

33
 int ossl_param_bld_push_TYPE(OSSL_PARAM_BLD *bld, const char *key, TYPE val);
P
Pauli 已提交
34

35
 int ossl_param_bld_push_BN(OSSL_PARAM_BLD *bld, const char *key,
P
Pauli 已提交
36 37
                            const BIGNUM *bn);

38
 int ossl_param_bld_push_utf8_string(OSSL_PARAM_BLD *bld, const char *key,
P
Pauli 已提交
39
                                     char *buf, size_t bsize);
40
 int ossl_param_bld_push_utf8_ptr(OSSL_PARAM_BLD *bld, const char *key,
P
Pauli 已提交
41
                                  char *buf, size_t bsize);
42
 int ossl_param_bld_push_octet_string(OSSL_PARAM_BLD *bld, const char *key,
P
Pauli 已提交
43
                                      void *buf, size_t bsize);
44
 int ossl_param_bld_push_octet_ptr(OSSL_PARAM_BLD *bld, const char *key,
P
Pauli 已提交
45 46 47 48 49 50 51 52
                                   void *buf, size_t bsize);


=head1 DESCRIPTION

A collection of utility functions that simplify the creation of OSSL_PARAM
arrays.  The B<TYPE> names are as per L<OSSL_PARAM_int(3)>.

53
ossl_param_bld_init() initialises the OSSL_PARAM_BLD structure so that values
P
Pauli 已提交
54 55 56
can be added.
Any existing values are cleared.

57
ossl_param_bld_to_param() converts a built up OSSL_PARAM_BLD structure
P
Pauli 已提交
58
B<bld> into an allocated OSSL_PARAM array.
P
Pauli 已提交
59 60 61 62 63
The OSSL_PARAM array and all associated storage must be freed by calling
ossl_param_bld_free() with the functions return value.

ossl_param_bld_free() deallocates the memory allocated by
ossl_param_bld_to_param().
P
Pauli 已提交
64

65
ossl_param_bld_to_param_ex() behaves like ossl_param_bld_to_param(), except that
P
Pauli 已提交
66 67 68 69 70 71 72
no additional memory is allocated.
An OSSL_PARAM array of at least B<param_n> elements is passed in as B<params>.
The auxiliary storage for the parameters is a block of memory pointed to
by B<data> of at least B<data_n> bytes in size.
If required, secure memory for private BIGNUMs should be pointed to by
B<secure> of at least B<secure_n> bytes in size.

73
ossl_param_bld_push_TYPE() are a series of functions which will create
P
Pauli 已提交
74 75 76 77
OSSL_PARAM objects of the specified size and correct type for the B<val>
argument.
B<val> is stored by value and an expression or auto variable can be used.

78
ossl_param_bld_push_BN() is a function that will create an OSSL_PARAM object
P
Pauli 已提交
79
that holds the specified BIGNUM B<bn>.
P
Pauli 已提交
80 81
If B<bn> is marked as being securely allocated, it's OSSL_PARAM representation
will also be securely allocated.
P
Pauli 已提交
82
The B<bn> argument is stored by reference and the underlying BIGNUM object
83
must exist until after ossl_param_bld_to_param() has been called.
P
Pauli 已提交
84

85
ossl_param_bld_push_utf8_string() is a function that will create an OSSL_PARAM
P
Pauli 已提交
86 87 88
object that references the UTF8 string specified by B<buf>.
If the length of the string, B<bsize>, is zero then it will be calculated.
The string that B<buf> points to is stored by reference and must remain in
89
scope until after ossl_param_bld_to_param() has been called.
P
Pauli 已提交
90

91
ossl_param_bld_push_octet_string() is a function that will create an OSSL_PARAM
P
Pauli 已提交
92 93
object that references the octet string specified by B<buf> and <bsize>.
The memory that B<buf> points to is stored by reference and must remain in
94
scope until after ossl_param_bld_to_param() has been called.
P
Pauli 已提交
95

96
ossl_param_bld_push_utf8_ptr() is a function that will create an OSSL_PARAM
P
Pauli 已提交
97 98 99 100 101
object that references the UTF8 string specified by B<buf>.
If the length of the string, B<bsize>, is zero then it will be calculated.
The string B<buf> points to is stored by reference and must remain in
scope until the OSSL_PARAM array is freed.

102
ossl_param_bld_push_octet_ptr() is a function that will create an OSSL_PARAM
P
Pauli 已提交
103 104 105 106 107 108
object that references the octet string specified by B<buf>.
The memory B<buf> points to is stored by reference and must remain in
scope until the OSSL_PARAM array is freed.

=head1 RETURN VALUES

109
ossl_param_bld_to_param() and ossl_param_bld_to_param_ex() return the
P
Pauli 已提交
110 111
allocated OSSL_PARAM array, or NULL on error.

112
All of the ossl_param_bld_push_TYPE functions return 1 on success and 0
P
Pauli 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
on error.

=head1 NOTES

The constant B<OSSL_PARAM_BLD_MAX> specifies the maximum number of parameters
that can be added.
Exceeding this will result in the push functions returning errors.

The structure B<OSSL_PARAM_BLD> should be considered opaque and subject to
change between versions.

=head1 EXAMPLES

Both examples creating an OSSL_PARAM array that contains an RSA key.
For both, the predefined key variables are:

    BIGNUM *p, *q;  /* both prime */
    BIGNUM *n;      /* = p * q */
    unsigned int e; /* exponent, usually 65537 */
    BIGNUM *d;      /* e^-1 */

=head2 Example 1

This example shows how to create an OSSL_PARAM array that contains an RSA
private key.

    OSSL_PARAM_BLD bld;
    OSSL_PARAM *params;

142 143 144 145 146 147 148
    ossl_param_bld_init(&bld, &secure);
    if (!ossl_param_bld_push_BN(&bld, "p", p)
        || !ossl_param_bld_push_BN(&bld, "q", q)
        || !ossl_param_bld_push_uint(&bld, "e", e)
        || !ossl_param_bld_push_BN(&bld, "n", n)
        || !ossl_param_bld_push_BN(&bld, "d", d)
        || (params = ossl_param_bld_to_param(&bld)) == NULL)
P
Pauli 已提交
149 150 151
        goto err;
    /* Use params */
    ...
P
Pauli 已提交
152
    ossl_param_bld_free(params);
P
Pauli 已提交
153 154 155 156 157 158 159 160 161

=head2 Example 2

This example shows how to create an OSSL_PARAM array that contains an RSA
public key.

    OSSL_PARAM_BLD bld;
    OSSL_PARAM *params;

162 163 164 165
    ossl_param_bld_init(&bld, &secure);
    if (!ossl_param_bld_push_BN(&bld, "n", n)
        || !ossl_param_bld_push_BN(&bld, "d", d)
        || (params = ossl_param_bld_to_param(&bld)) == NULL)
P
Pauli 已提交
166 167 168
        goto err;
    /* Use params */
    ...
P
Pauli 已提交
169
    ossl_param_bld_free(params);
P
Pauli 已提交
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188

=head1 SEE ALSO

L<OSSL_PARAM_int>, L<OSSL_PARAM>

=head1 HISTORY

The functions described here were all added in OpenSSL 3.0.

=head1 COPYRIGHT

Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.

Licensed under the Apache License 2.0 (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