VirtualBox

source: vbox/trunk/src/libs/openssl-3.3.2/include/internal/params.h

Last change on this file was 108206, checked in by vboxsync, 3 months ago

openssl-3.3.2: Exported all files to OSE and removed .scm-settings ​bugref:10757

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.4 KB
Line 
1/*
2 * Copyright 2023 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License 2.0 (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
10#include <stddef.h>
11#include <openssl/params.h>
12
13/*
14 * Extract the parameter into an allocated buffer.
15 * Any existing allocation in *out is cleared and freed.
16 *
17 * Returns 1 on success, 0 on failure and -1 if there are no matching params.
18 *
19 * *out and *out_len are guaranteed to be untouched if this function
20 * doesn't return success.
21 */
22int ossl_param_get1_octet_string(const OSSL_PARAM *params, const char *name,
23 unsigned char **out, size_t *out_len);
24/*
25 * Concatenate all of the matching params together.
26 * *out will point to an allocated buffer on successful return.
27 * Any existing allocation in *out is cleared and freed.
28 *
29 * Passing 0 for maxsize means unlimited size output.
30 *
31 * Returns 1 on success, 0 on failure and -1 if there are no matching params.
32 *
33 * *out and *out_len are guaranteed to be untouched if this function
34 * doesn't return success.
35 */
36int ossl_param_get1_concat_octet_string(const OSSL_PARAM *params, const char *name,
37 unsigned char **out, size_t *out_len,
38 size_t maxsize);
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette