[#ASN1_ENUMERATED_get_int64] = ASN1_ENUMERATED_get_int64 :mrdocs: Convert an ASN1_ENUMERATED to a signed 64‐bit integer. == Synopsis Declared in `<openssl/asn1.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int ASN1_ENUMERATED_get_int64( int64_t* pr, xref:ASN1_ENUMERATED.adoc[ASN1_ENUMERATED] const* a); ---- == Return Value 1 on success, or 0 if `a` is NULL or the value does not fit in int64_t. == Parameters [cols="1,4"] |=== | Name| Description | *pr* | Receives the converted value on success. | *a* | ASN.1 ENUMERATED value to convert. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#