Provided by:
manpages-fr-extra_20080618_all 
NOM
ASN1_STRING_new, ASN1_STRING_type_new, ASN1_STRING_free - Fonctions
d’allocation d’objets ASN1_STRING
SYNOPSIS
ASN1_STRING * ASN1_STRING_new(void);
ASN1_STRING * ASN1_STRING_type_new(int type);
void ASN1_STRING_free(ASN1_STRING *a);
DESCRIPTION
ASN1_STRING_new() renvoie une structure ASN1_STRING allouee. Son type
n’est pas defini.
ASN1_STRING_type_new() renvoie une structure ASN1_STRING allouee, de
type type.
ASN1_STRING_free() libere a.
NOTES
Les autres types de chaine appellent les fonctions ASN1_STRING. Par
exemple, ASN1_OCTET_STRING_new() appelle
ASN1_STRING_type(V_ASN1_OCTET_STRING).
VALEURS DE RETOUR
ASN1_STRING_new() et ASN1_STRING_type_new() renvoient une structure
ASN1_STRING valable, ou NULL si une erreur est survenue.
ASN1_STRING_free() ne renvoie aucune valeur.
VOIR AUSSI
ERR_get_error(3)
HISTORIQUE
TBA