skip book previous and next navigation links
go up to top of book: HP Open Source Security for OpenVMS Volume 2:... HP Open Source Security for OpenVMS Volume 2:...
go to beginning of reference: CRYPTO Application Programming Interface (API)... CRYPTO Application Programming Interface (API)...
go to previous page: ASN1_STRING_dup ASN1_STRING_dup
go to next page: ASN1_STRING_print_exASN1_STRING_print_ex
end of book navigation links


ASN1_STRING_new
Description
Return Values
History
 Notes
See Also

NAME

ASN1_STRING_new, ASN1_STRING_type_new, ASN1_STRING_free - ASN1_STRING allocation functions

Synopsis  

ASN1_STRING * ASN1_STRING_new(void);
ASN1_STRING * ASN1_STRING_type_new(int type);
void ASN1_STRING_free(ASN1_STRING *a);


return to top DESCRIPTION  

ASN1_STRING_new() returns an allocated ASN1_STRING structure. Its type is undefined.

ASN1_STRING_type_new() returns an allocated ASN1_STRING structure of type type.

ASN1_STRING_free() frees up a.


return to top NOTES  

Other string types call the ASN1_STRING functions. For example ASN1_OCTET_STRING_new() calls ASN1_STRING_type(V_ASN1_OCTET_STRING).


return to top RETURN VALUES  

ASN1_STRING_new() and ASN1_STRING_type_new() return a valid ASN1_STRING structure or NULL if an error occurred.

ASN1_STRING_free() does not return a value.


return to top SEE ALSO  

ERR_get_error(3)


return to top HISTORY  

None.
go to previous page: ASN1_STRING_dup ASN1_STRING_dup
go to next page: ASN1_STRING_print_exASN1_STRING_print_ex