1*b077aed3SPierre Pronchery=pod 2*b077aed3SPierre Pronchery 3*b077aed3SPierre Pronchery=head1 NAME 4*b077aed3SPierre Pronchery 5*b077aed3SPierre ProncheryASN1_INTEGER_new, ASN1_INTEGER_free - ASN1_INTEGER allocation functions 6*b077aed3SPierre Pronchery 7*b077aed3SPierre Pronchery=head1 SYNOPSIS 8*b077aed3SPierre Pronchery 9*b077aed3SPierre Pronchery=for openssl generic 10*b077aed3SPierre Pronchery 11*b077aed3SPierre Pronchery #include <openssl/asn1.h> 12*b077aed3SPierre Pronchery 13*b077aed3SPierre Pronchery ASN1_INTEGER *ASN1_INTEGER_new(void); 14*b077aed3SPierre Pronchery void ASN1_INTEGER_free(ASN1_INTEGER *a); 15*b077aed3SPierre Pronchery 16*b077aed3SPierre Pronchery=head1 DESCRIPTION 17*b077aed3SPierre Pronchery 18*b077aed3SPierre ProncheryASN1_INTEGER_new() returns an allocated B<ASN1_INTEGER> structure. 19*b077aed3SPierre Pronchery 20*b077aed3SPierre ProncheryASN1_INTEGER_free() frees up a single B<ASN1_INTEGER> object. 21*b077aed3SPierre Pronchery 22*b077aed3SPierre ProncheryB<ASN1_INTEGER> structure representing the ASN.1 INTEGER type 23*b077aed3SPierre Pronchery 24*b077aed3SPierre Pronchery=head1 RETURN VALUES 25*b077aed3SPierre Pronchery 26*b077aed3SPierre ProncheryASN1_INTEGER_new() return a valid B<ASN1_INTEGER> structure or NULL 27*b077aed3SPierre Proncheryif an error occurred. 28*b077aed3SPierre Pronchery 29*b077aed3SPierre ProncheryASN1_INTEGER_free() does not return a value. 30*b077aed3SPierre Pronchery 31*b077aed3SPierre Pronchery=head1 SEE ALSO 32*b077aed3SPierre Pronchery 33*b077aed3SPierre ProncheryL<ERR_get_error(3)> 34*b077aed3SPierre Pronchery 35*b077aed3SPierre Pronchery=head1 COPYRIGHT 36*b077aed3SPierre Pronchery 37*b077aed3SPierre ProncheryCopyright 2020 The OpenSSL Project Authors. All Rights Reserved. 38*b077aed3SPierre Pronchery 39*b077aed3SPierre ProncheryLicensed under the Apache License 2.0 (the "License"). You may not use 40*b077aed3SPierre Proncherythis file except in compliance with the License. You can obtain a copy 41*b077aed3SPierre Proncheryin the file LICENSE in the source distribution or at 42*b077aed3SPierre ProncheryL<https://www.openssl.org/source/license.html>. 43*b077aed3SPierre Pronchery 44*b077aed3SPierre Pronchery=cut 45