HomeSort by relevance Sort by last modified time
    Searched refs:ASN1_STRING (Results 1 - 25 of 44) sorted by null

1 2

  /external/boringssl/src/crypto/asn1/
asn_pack.c 64 ASN1_STRING *ASN1_item_pack(void *obj, const ASN1_ITEM *it, ASN1_STRING **oct)
66 ASN1_STRING *octmp;
94 /* Extract an ASN1 object from an ASN1_STRING */
96 void *ASN1_item_unpack(ASN1_STRING *oct, const ASN1_ITEM *it)
asn1_lib.c 310 int ASN1_STRING_copy(ASN1_STRING *dst, const ASN1_STRING *str)
321 ASN1_STRING *ASN1_STRING_dup(const ASN1_STRING *str)
323 ASN1_STRING *ret;
336 int ASN1_STRING_set(ASN1_STRING *str, const void *_data, int len)
369 void ASN1_STRING_set0(ASN1_STRING *str, void *data, int len)
377 ASN1_STRING *ASN1_STRING_new(void)
382 ASN1_STRING *ASN1_STRING_type_new(int type)
384 ASN1_STRING *ret
    [all...]
tasn_typ.c 97 /* Just swallow an ASN1_SEQUENCE in an ASN1_STRING */
105 IMPLEMENT_ASN1_FUNCTIONS_name(ASN1_STRING, ASN1_PRINTABLE)
108 IMPLEMENT_ASN1_FUNCTIONS_name(ASN1_STRING, DISPLAYTEXT)
111 IMPLEMENT_ASN1_FUNCTIONS_name(ASN1_STRING, DIRECTORYSTRING)
a_type.c 97 ASN1_STRING *sdup;
145 result = ASN1_STRING_cmp((ASN1_STRING *)a->value.ptr,
146 (ASN1_STRING *)b->value.ptr);
f_string.c 61 int i2a_ASN1_STRING(BIO *bp, ASN1_STRING *a, int type)
a_time.c 180 if (s && !ASN1_STRING_copy((ASN1_STRING *)s, (ASN1_STRING *)&t))
a_mbstr.c 80 int ASN1_mbstring_copy(ASN1_STRING **out, const unsigned char *in, int len,
90 int ASN1_mbstring_ncopy(ASN1_STRING **out, const unsigned char *in, int len,
96 ASN1_STRING *dest;
a_strnid.c 123 * The following function generates an ASN1_STRING based on limits in a
124 * table. Frequently the types and length of an ASN1_STRING are restricted by
128 ASN1_STRING *ASN1_STRING_set_by_NID(ASN1_STRING **out,
133 ASN1_STRING *str = NULL;
a_gentm.c 198 if (!ASN1_STRING_set((ASN1_STRING *)s,
tasn_fre.c 239 ASN1_STRING_free((ASN1_STRING *)*pval);
tasn_enc.c 548 ASN1_STRING *strtmp;
568 strtmp = (ASN1_STRING *)*pval;
643 /* All based on ASN1_STRING and handled the same */
644 strtmp = (ASN1_STRING *)*pval;
a_utctm.c 174 if (!ASN1_STRING_set((ASN1_STRING *)s,
tasn_new.c 318 ASN1_STRING *str;
  /external/boringssl/src/include/openssl/
asn1.h 182 /* This indicates that the ASN1_STRING is not a real value but just a place
188 /* This flag is used by ASN1 code to indicate an ASN1_STRING is an MSTRING
441 ASN1_STRING * asn1_string; member in union:asn1_type_st::__anon15511
459 ASN1_STRING * set;
460 ASN1_STRING * sequence;
497 #define M_ASN1_BIT_STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
499 ASN1_STRING_dup((const ASN1_STRING *)a)
501 (const ASN1_STRING *)a,(const ASN1_STRING *)b
    [all...]
x509v3.h 176 ASN1_STRING *nameAssigner;
177 ASN1_STRING *partyName;
291 ASN1_STRING *organization;
297 ASN1_STRING *exptext;
  /external/scapy/scapy/asn1/
asn1.py 41 elif issubclass(o, ASN1_STRING):
341 class ASN1_STRING(ASN1_Object):
361 class ASN1_UTF8_STRING(ASN1_STRING):
364 class ASN1_NUMERIC_STRING(ASN1_STRING):
367 class ASN1_PRINTABLE_STRING(ASN1_STRING):
370 class ASN1_T61_STRING(ASN1_STRING):
373 class ASN1_VIDEOTEX_STRING(ASN1_STRING):
376 class ASN1_IA5_STRING(ASN1_STRING):
379 class ASN1_UTC_TIME(ASN1_STRING):
401 return "%s %s" % (self.pretty_time, ASN1_STRING.__repr__(self)
    [all...]
  /external/boringssl/src/crypto/x509v3/
v3_ia5.c 113 if (!ASN1_STRING_set((ASN1_STRING *)ia5, (unsigned char *)str,
  /external/boringssl/src/crypto/x509/
a_strex.c 299 ASN1_STRING *str)
302 * Placing the ASN1_STRING in a temp ASN1_TYPE allows the DER encoding to
351 * This is the main function, print out an ASN1_STRING taking note of various
357 ASN1_STRING *str)
455 ASN1_STRING *val;
613 int ASN1_STRING_print_ex(BIO *out, ASN1_STRING *str, unsigned long flags)
619 int ASN1_STRING_print_ex_fp(FILE *fp, ASN1_STRING *str, unsigned long flags)
630 int ASN1_STRING_to_UTF8(unsigned char **out, ASN1_STRING *in)
632 ASN1_STRING stmp, *str = &stmp;
x509.c 135 int X509_signature_dump(BIO *bp, const ASN1_STRING *sig, int indent) {
x_name.c 95 static int asn1_string_canon(ASN1_STRING *out, ASN1_STRING *in);
429 static int asn1_string_canon(ASN1_STRING *out, ASN1_STRING *in)
rsa_pss.c 128 ASN1_STRING *stmp = NULL;
211 ASN1_STRING *os = NULL;
x509name.c 83 ASN1_STRING *data;
383 ASN1_STRING *X509_NAME_ENTRY_get_data(X509_NAME_ENTRY *ne)
t_x509.c 300 const ASN1_STRING *sig)
321 int ASN1_STRING_print(BIO *bp, const ASN1_STRING *v)
x_crl.c 374 return (ASN1_STRING_cmp((ASN1_STRING *)(*a)->serialNumber,
375 (ASN1_STRING *)(*b)->serialNumber));
  /external/libevent/sample/
openssl_hostname_validation.c 66 ASN1_STRING *common_name_asn1 = NULL;

Completed in 266 milliseconds

1 2