• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/asn1/

Lines Matching refs:ASN1_ITEM

280 typedef struct ASN1_ITEM_st ASN1_ITEM;
342 /* The following macros and typedefs allow an ASN1_ITEM
344 * the ASN1_ITEM pointers need to be globally accessible
347 * ASN1_ITEM structure itself will be globally exported.
349 * an ASN1_ITEM pointer.
352 * should be used instead of hard coding an ASN1_ITEM
369 * const ASN1_ITEM *it = ASN1_ITEM_ptr(somevar.iptr);
371 * Finally an ASN1_ITEM pointer can be extracted from an
373 * would be used when a function takes an ASN1_ITEM * argument.
379 /* ASN1_ITEM pointer exported type */
380 typedef const ASN1_ITEM ASN1_ITEM_EXP;
382 /* Macro to obtain ASN1_ITEM pointer from exported type */
385 /* Macro to include ASN1_ITEM pointer from base type */
391 OPENSSL_EXTERN const ASN1_ITEM name##_it;
396 * as functions returning ASN1_ITEM pointers.
399 /* ASN1_ITEM pointer exported type */
400 typedef const ASN1_ITEM * ASN1_ITEM_EXP(void);
402 /* Macro to obtain ASN1_ITEM pointer from exported type */
405 /* Macro to include ASN1_ITEM pointer from base type */
411 const ASN1_ITEM * name##_it(void);
927 void *ASN1_item_dup(const ASN1_ITEM *it, void *x);
938 void *ASN1_item_d2i_fp(const ASN1_ITEM *it, FILE *in, void *x);
951 int ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *x);
966 void *ASN1_item_d2i_bio(const ASN1_ITEM *it, BIO *in, void *x);
979 int ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, void *x);
1018 void *ASN1_item_unpack(ASN1_STRING *oct, const ASN1_ITEM *it);
1027 ASN1_STRING *ASN1_item_pack(void *obj, const ASN1_ITEM *it, ASN1_OCTET_STRING **oct);
1047 ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it);
1048 void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it);
1049 ASN1_VALUE * ASN1_item_d2i(ASN1_VALUE **val, const unsigned char **in, long len, const ASN1_ITEM *it);
1050 int ASN1_item_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it);
1051 int ASN1_item_ndef_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it);