ASN1_INTEGER_new.pod 987 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. =pod
  2. =head1 NAME
  3. ASN1_INTEGER_new, ASN1_INTEGER_free - ASN1_INTEGER allocation functions
  4. =head1 SYNOPSIS
  5. =for openssl generic
  6. #include <openssl/asn1.h>
  7. ASN1_INTEGER *ASN1_INTEGER_new(void);
  8. void ASN1_INTEGER_free(ASN1_INTEGER *a);
  9. =head1 DESCRIPTION
  10. ASN1_INTEGER_new() returns an allocated B<ASN1_INTEGER> structure.
  11. ASN1_INTEGER_free() frees up a single B<ASN1_INTEGER> object.
  12. B<ASN1_INTEGER> structure representing the ASN.1 INTEGER type
  13. =head1 RETURN VALUES
  14. ASN1_INTEGER_new() return a valid B<ASN1_INTEGER> structure or NULL
  15. if an error occurred.
  16. ASN1_INTEGER_free() does not return a value.
  17. =head1 SEE ALSO
  18. L<ERR_get_error(3)>
  19. =head1 COPYRIGHT
  20. Copyright 2020 The OpenSSL Project Authors. All Rights Reserved.
  21. Licensed under the Apache License 2.0 (the "License"). You may not use
  22. this file except in compliance with the License. You can obtain a copy
  23. in the file LICENSE in the source distribution or at
  24. L<https://www.openssl.org/source/license.html>.
  25. =cut