=pod =head1 NAME OSSL_PARAM_allocate_from_text - OSSL_PARAM construction utilities =head1 SYNOPSIS #include int OSSL_PARAM_allocate_from_text(OSSL_PARAM *to, const OSSL_PARAM *paramdefs, const char *key, const char *value, size_t value_n, int *found); =head1 DESCRIPTION With OpenSSL before version 3.0, parameters were passed down to or retrieved from algorithm implementations via control functions. Some of these control functions existed in variants that took string parameters, for example L. OpenSSL 3.0 introduces a new mechanism to do the same thing with an array of parameters that contain name, value, value type and value size (see L for more information). OSSL_PARAM_allocate_from_text() uses I to look up an item in I. If an item was found, it converts I to something suitable for that item's I, and stores the result in I<< to->data >> as well as its size in I<< to->data_size >>. I<< to->key >> and I<< to->data_type >> are assigned the corresponding values from the item that was found, and I<< to->return_size >> is set to zero. I<< to->data >> is always allocated using L and needs to be freed by the caller when it's not useful any more, using L. If I is not NULL, I<*found> is set to 1 if I could be located in I, and to 0 otherwise. =head2 The use of I and I in detail OSSL_PARAM_allocate_from_text() takes note if I starts with "hex", and will only use the rest of I to look up an item in I in that case. As an example, if I is "hexid", "id" will be looked up in I. When an item in I has been found, I is converted depending on that item's I, as follows: =over 4 =item B and B If I started with "hex", I is assumed to contain I hexadecimal characters, which are decoded, and the resulting bytes become the number stored in the I<< to->data >> storage. If I didn't start with "hex", I is assumed to contain I decimal characters, which are decoded, and the resulting bytes become the number stored in the I<< to->data >> storage. If I contains characters that couldn't be decoded as hexadecimal or decimal characters, OSSL_PARAM_allocate_from_text() considers that an error. =item B If I started with "hex", OSSL_PARAM_allocate_from_text() considers that an error. Otherwise, I is considered a C string and is copied with no further checks to the I<< to->data >> storage. =item B If I started with "hex", I is assumed to contain I hexadecimal characters, which are decoded, and the resulting bytes are stored in the I<< to->data >> storage. If I contains characters that couldn't be decoded as hexadecimal or decimal characters, OSSL_PARAM_allocate_from_text() considers that an error. If I didn't start with "hex", I bytes from I are copied to the I<< to->data >> storage. =back =head1 RETURN VALUES OSSL_PARAM_allocate_from_text() returns 1 if I was found in I and there was no other failure, otherwise 0. =head1 NOTES The parameter descriptor array comes from functions dedicated to return them. The following B attributes are used: =over 4 =item I =item I =item I =back All other attributes are ignored. The I attribute can be zero, meaning that the parameter it describes expects arbitrary length data. =head1 EXAMPLES Code that looked like this: int mac_ctrl_string(EVP_PKEY_CTX *ctx, const char *value) { int rv; char *stmp, *vtmp = NULL; stmp = OPENSSL_strdup(value); if (stmp == NULL) return -1; vtmp = strchr(stmp, ':'); if (vtmp != NULL) *vtmp++ = '\0'; rv = EVP_MAC_ctrl_str(ctx, stmp, vtmp); OPENSSL_free(stmp); return rv; } ... for (i = 0; i < sk_OPENSSL_STRING_num(macopts); i++) { char *macopt = sk_OPENSSL_STRING_value(macopts, i); if (pkey_ctrl_string(mac_ctx, macopt) <= 0) { BIO_printf(bio_err, "MAC parameter error \"%s\"\n", macopt); ERR_print_errors(bio_err); goto mac_end; } } Can be written like this instead: OSSL_PARAM *params = OPENSSL_zalloc(sizeof(*params) * (sk_OPENSSL_STRING_num(opts) + 1)); const OSSL_PARAM *paramdefs = EVP_MAC_settable_ctx_params(mac); size_t params_n; char *opt = ""; for (params_n = 0; params_n < (size_t)sk_OPENSSL_STRING_num(opts); params_n++) { char *stmp, *vtmp = NULL; opt = sk_OPENSSL_STRING_value(opts, (int)params_n); if ((stmp = OPENSSL_strdup(opt)) == NULL || (vtmp = strchr(stmp, ':')) == NULL) goto err; *vtmp++ = '\0'; if (!OSSL_PARAM_allocate_from_text(¶ms[params_n], paramdefs, stmp, vtmp, strlen(vtmp), NULL)) goto err; } params[params_n] = OSSL_PARAM_construct_end(); if (!EVP_MAC_CTX_set_params(ctx, params)) goto err; while (params_n-- > 0) OPENSSL_free(params[params_n].data); OPENSSL_free(params); /* ... */ return; err: BIO_printf(bio_err, "MAC parameter error '%s'\n", opt); ERR_print_errors(bio_err); =head1 SEE ALSO L, L =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. =cut