X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=lib%2Fopenssl%2Fdoc%2Fcrypto%2FASN1_STRING_new.pod;fp=lib%2Fopenssl%2Fdoc%2Fcrypto%2FASN1_STRING_new.pod;h=8ac2a03ae267a254f886c4ee5f2b83e055b18f05;hb=9ff1530871deeb0f7eaa35ca0db6630724045e4a;hp=0000000000000000000000000000000000000000;hpb=25b73076b01ae059da1a2e9a1677e00788ada620;p=cassiopeia.git diff --git a/lib/openssl/doc/crypto/ASN1_STRING_new.pod b/lib/openssl/doc/crypto/ASN1_STRING_new.pod new file mode 100644 index 0000000..8ac2a03 --- /dev/null +++ b/lib/openssl/doc/crypto/ASN1_STRING_new.pod @@ -0,0 +1,46 @@ +=pod + +=head1 NAME + +ASN1_STRING_new, ASN1_STRING_type_new, ASN1_STRING_free - +ASN1_STRING allocation functions + +=head1 SYNOPSIS + + #include + + ASN1_STRING * ASN1_STRING_new(void); + ASN1_STRING * ASN1_STRING_type_new(int type); + void ASN1_STRING_free(ASN1_STRING *a); + +=head1 DESCRIPTION + +ASN1_STRING_new() returns an allocated B structure. Its type +is undefined. + +ASN1_STRING_type_new() returns an allocated B structure of +type B. + +ASN1_STRING_free() frees up B. + +=head1 NOTES + +Other string types call the B functions. For example +ASN1_OCTET_STRING_new() calls ASN1_STRING_type(V_ASN1_OCTET_STRING). + +=head1 RETURN VALUES + +ASN1_STRING_new() and ASN1_STRING_type_new() return a valid +ASN1_STRING structure or B if an error occurred. + +ASN1_STRING_free() does not return a value. + +=head1 SEE ALSO + +L + +=head1 HISTORY + +TBA + +=cut