1ASN1_INTEGER_NEW(3ossl) OpenSSL ASN1_INTEGER_NEW(3ossl)
2
3
4
6 ASN1_INTEGER_new, ASN1_INTEGER_free - ASN1_INTEGER allocation functions
7
9 #include <openssl/asn1.h>
10
11 ASN1_INTEGER *ASN1_INTEGER_new(void);
12 void ASN1_INTEGER_free(ASN1_INTEGER *a);
13
15 ASN1_INTEGER_new() returns an allocated ASN1_INTEGER structure.
16
17 ASN1_INTEGER_free() frees up a single ASN1_INTEGER object.
18
19 ASN1_INTEGER structure representing the ASN.1 INTEGER type
20
22 ASN1_INTEGER_new() return a valid ASN1_INTEGER structure or NULL if an
23 error occurred.
24
25 ASN1_INTEGER_free() does not return a value.
26
28 ERR_get_error(3)
29
31 Copyright 2020 The OpenSSL Project Authors. All Rights Reserved.
32
33 Licensed under the Apache License 2.0 (the "License"). You may not use
34 this file except in compliance with the License. You can obtain a copy
35 in the file LICENSE in the source distribution or at
36 <https://www.openssl.org/source/license.html>.
37
38
39
403.1.1 2023-08-31 ASN1_INTEGER_NEW(3ossl)