Searched refs:i2d (Results 1 - 25 of 45) sorted by relevance

12

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/asn1/
H A Da_dup.c65 char *ASN1_dup(int (*i2d)(), char *(*d2i)(), char *x) argument
73 i=(long)i2d(x,NULL);
78 i=i2d(x,&p);
H A Da_i2d_fp.c67 int ASN1_i2d_fp(int (*i2d)(), FILE *out, unsigned char *x) argument
78 ret=ASN1_i2d_bio(i2d,b,x);
84 int ASN1_i2d_bio(int (*i2d)(), BIO *out, unsigned char *x) argument
90 n=i2d(x,NULL);
99 i2d(x,&p);
H A Dasn_pack.c85 unsigned char *ASN1_seq_pack(STACK *safes, int (*i2d)(), unsigned char **buf, argument
90 if (!(safelen = i2d_ASN1_SET(safes, NULL, i2d, V_ASN1_SEQUENCE,
100 i2d_ASN1_SET(safes, &p, i2d, V_ASN1_SEQUENCE, V_ASN1_UNIVERSAL,
122 ASN1_STRING *ASN1_pack_string(void *obj, int (*i2d)(), ASN1_STRING **oct) argument
135 if (!(octmp->length = i2d(obj, NULL))) {
144 i2d (obj, &p);
H A Da_digest.c75 int ASN1_digest(int (*i2d)(), const EVP_MD *type, char *data, argument
81 i=i2d(data,NULL);
88 i2d(data,&p);
H A Da_hdr.c69 M_ASN1_I2D_len(a->data, a->meth->i2d);
74 M_ASN1_I2D_put(a->data, a->meth->i2d);
H A Da_verify.c76 int ASN1_verify(int (*i2d)(), X509_ALGOR *a, ASN1_BIT_STRING *signature, argument
93 inl=i2d(data,NULL);
102 i2d(data,&p);
H A Da_sign.c129 int ASN1_sign(int (*i2d)(), X509_ALGOR *algor1, X509_ALGOR *algor2, argument
173 inl=i2d(data,NULL);
185 i2d(data,&p);
H A Dasn1.h478 int (*i2d)(); member in struct:asn1_method_st
854 char *ASN1_dup(int (*i2d)(),char *(*d2i)(),char *x);
861 int ASN1_i2d_fp(int (*i2d)(),FILE *out,unsigned char *x);
871 int ASN1_i2d_bio(int (*i2d)(),BIO *out,unsigned char *x);
908 unsigned char *ASN1_seq_pack(STACK *safes, int (*i2d)(), unsigned char **buf,
912 ASN1_STRING *ASN1_pack_string(void *obj, int (*i2d)(), ASN1_OCTET_STRING **oct);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/asn1/
H A Da_i2d_fp.c67 int ASN1_i2d_fp(i2d_of_void *i2d, FILE *out, void *x) argument
78 ret=ASN1_i2d_bio(i2d,b,x);
84 int ASN1_i2d_bio(i2d_of_void *i2d, BIO *out, unsigned char *x) argument
90 n=i2d(x,NULL);
99 i2d(x,&p);
H A Dasn_pack.c85 unsigned char *ASN1_seq_pack(STACK *safes, i2d_of_void *i2d, argument
90 if (!(safelen = i2d_ASN1_SET(safes, NULL, i2d, V_ASN1_SEQUENCE,
100 i2d_ASN1_SET(safes, &p, i2d, V_ASN1_SEQUENCE, V_ASN1_UNIVERSAL,
122 ASN1_STRING *ASN1_pack_string(void *obj, i2d_of_void *i2d, ASN1_STRING **oct) argument
135 if (!(octmp->length = i2d(obj, NULL))) {
144 i2d (obj, &p);
H A Da_digest.c75 int ASN1_digest(i2d_of_void *i2d, const EVP_MD *type, char *data, argument
81 i=i2d(data,NULL);
88 i2d(data,&p);
H A Da_dup.c65 void *ASN1_dup(i2d_of_void *i2d, d2i_of_void *d2i, char *x) argument
74 i=i2d(x,NULL);
79 i=i2d(x,&p);
H A Da_hdr.c69 M_ASN1_I2D_len(a->data, a->meth->i2d);
74 M_ASN1_I2D_put(a->data, a->meth->i2d);
H A Da_verify.c76 int ASN1_verify(i2d_of_void *i2d, X509_ALGOR *a, ASN1_BIT_STRING *signature, argument
93 inl=i2d(data,NULL);
102 i2d(data,&p);
H A Da_set.c88 int i2d_ASN1_SET(STACK *a, unsigned char **pp, i2d_of_void *i2d, int ex_tag, argument
100 ret+=i2d(sk_value(a,i),NULL);
114 i2d(sk_value(a,i),&p);
132 i2d(sk_value(a,i),&p);
H A Dasn1.h327 #define CHECKED_I2D_OF(type, i2d) \
328 ((i2d_of_void*) (1 ? i2d : ((I2D_OF(type))0)))
533 i2d_of_void *i2d; member in struct:asn1_method_st
858 i2d_of_void *i2d, int ex_tag, int ex_class, int is_set);
915 void *ASN1_dup(i2d_of_void *i2d, d2i_of_void *d2i, char *x);
917 #define ASN1_dup_of(type,i2d,d2i,x) \
918 ((type*)ASN1_dup(CHECKED_I2D_OF(type, i2d), \
922 #define ASN1_dup_of_const(type,i2d,d2i,x) \
923 ((type*)ASN1_dup(CHECKED_I2D_OF(const type, i2d), \
939 int ASN1_i2d_fp(i2d_of_void *i2d,FIL
[all...]
H A Da_sign.c129 int ASN1_sign(i2d_of_void *i2d, X509_ALGOR *algor1, X509_ALGOR *algor2, argument
173 inl=i2d(data,NULL);
185 i2d(data,&p);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/
H A Dasn1.h327 #define CHECKED_I2D_OF(type, i2d) \
328 ((i2d_of_void*) (1 ? i2d : ((I2D_OF(type))0)))
533 i2d_of_void *i2d; member in struct:asn1_method_st
858 i2d_of_void *i2d, int ex_tag, int ex_class, int is_set);
915 void *ASN1_dup(i2d_of_void *i2d, d2i_of_void *d2i, char *x);
917 #define ASN1_dup_of(type,i2d,d2i,x) \
918 ((type*)ASN1_dup(CHECKED_I2D_OF(type, i2d), \
922 #define ASN1_dup_of_const(type,i2d,d2i,x) \
923 ((type*)ASN1_dup(CHECKED_I2D_OF(const type, i2d), \
939 int ASN1_i2d_fp(i2d_of_void *i2d,FIL
[all...]
H A Docsp.h469 ASN1_STRING *ASN1_STRING_encode(ASN1_STRING *s, i2d_of_void *i2d,
471 #define ASN1_STRING_encode_of(type,s,i2d,data,sk) \
472 ((ASN1_STRING *(*)(ASN1_STRING *,I2D_OF(type),type *,STACK_OF(ASN1_OBJECT) *))openssl_fcast(ASN1_STRING_encode))(s,i2d,data,sk)
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/ocsp/
H A Docsp_ext.c268 ASN1_STRING *ASN1_STRING_encode(ASN1_STRING *s, int (*i2d)(), argument
276 if ((i=i2d(data,NULL)) <= 0) goto err;
279 if (i2d(data, &p) <= 0) goto err;
283 if ((i=i2d_ASN1_SET_OF_ASN1_OBJECT(sk,NULL,i2d,V_ASN1_SEQUENCE,
287 if (i2d_ASN1_SET_OF_ASN1_OBJECT(sk,&p,i2d,V_ASN1_SEQUENCE,
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/ocsp/
H A Docsp_ext.c268 ASN1_STRING *ASN1_STRING_encode(ASN1_STRING *s, i2d_of_void *i2d, argument
276 if ((i=i2d(data,NULL)) <= 0) goto err;
279 if (i2d(data, &p) <= 0) goto err;
284 (I2D_OF(ASN1_OBJECT))i2d,
290 if (i2d_ASN1_SET_OF_ASN1_OBJECT(sk,&p,(I2D_OF(ASN1_OBJECT))i2d,
H A Docsp.h469 ASN1_STRING *ASN1_STRING_encode(ASN1_STRING *s, i2d_of_void *i2d,
471 #define ASN1_STRING_encode_of(type,s,i2d,data,sk) \
472 ((ASN1_STRING *(*)(ASN1_STRING *,I2D_OF(type),type *,STACK_OF(ASN1_OBJECT) *))openssl_fcast(ASN1_STRING_encode))(s,i2d,data,sk)
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/pem/
H A Dpem_lib.c261 int PEM_ASN1_write(int (*i2d)(), const char *name, FILE *fp, char *x, argument
274 ret=PEM_ASN1_write_bio(i2d,name,b,x,enc,kstr,klen,callback,u);
280 int PEM_ASN1_write_bio(int (*i2d)(), const char *name, BIO *bp, char *x, argument
302 if ((dsize=i2d(x,NULL)) < 0)
317 i=i2d(x,&p);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/pem/
H A Dpem_lib.c263 int PEM_ASN1_write(i2d_of_void *i2d, const char *name, FILE *fp, argument
276 ret=PEM_ASN1_write_bio(i2d,name,b,x,enc,kstr,klen,callback,u);
282 int PEM_ASN1_write_bio(i2d_of_void *i2d, const char *name, BIO *bp, argument
304 if ((dsize=i2d(x,NULL)) < 0)
319 i=i2d(x,&p);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/include/openssl/
H A Dasn1.h478 int (*i2d)(); member in struct:asn1_method_st
854 char *ASN1_dup(int (*i2d)(),char *(*d2i)(),char *x);
861 int ASN1_i2d_fp(int (*i2d)(),FILE *out,unsigned char *x);
871 int ASN1_i2d_bio(int (*i2d)(),BIO *out,unsigned char *x);
908 unsigned char *ASN1_seq_pack(STACK *safes, int (*i2d)(), unsigned char **buf,
912 ASN1_STRING *ASN1_pack_string(void *obj, int (*i2d)(), ASN1_OCTET_STRING **oct);

Completed in 141 milliseconds

12