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

/freebsd-9.3-release/crypto/openssl/crypto/asn1/
H A Da_i2d_fp.c67 int ASN1_i2d_fp(i2d_of_void *i2d, FILE *out, void *x) argument
77 ret = ASN1_i2d_bio(i2d, b, x);
83 int ASN1_i2d_bio(i2d_of_void *i2d, BIO *out, unsigned char *x) argument
89 n = i2d(x, NULL);
97 i2d(x, &p);
H A Dasn_pack.c87 unsigned char *ASN1_seq_pack(STACK * safes, i2d_of_void *i2d, argument
92 if (!(safelen = i2d_ASN1_SET(safes, NULL, i2d, V_ASN1_SEQUENCE,
102 i2d_ASN1_SET(safes, &p, i2d, V_ASN1_SEQUENCE, V_ASN1_UNIVERSAL,
126 ASN1_STRING *ASN1_pack_string(void *obj, i2d_of_void *i2d, ASN1_STRING **oct) argument
141 if (!(octmp->length = i2d(obj, NULL))) {
150 i2d(obj, &p);
H A Da_dup.c65 void *ASN1_dup(i2d_of_void *i2d, d2i_of_void *d2i, char *x) argument
75 i = i2d(x, NULL);
82 i = i2d(x, &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);
87 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(i2d_of_void *i2d, X509_ALGOR *a, ASN1_BIT_STRING *signature, argument
97 inl = i2d(data, NULL);
105 i2d(data, &p);
H A Da_set.c89 int i2d_ASN1_SET(STACK * a, unsigned char **pp, i2d_of_void *i2d, int ex_tag, argument
102 ret += i2d(sk_value(a, i), NULL);
116 i2d(sk_value(a, i), &p);
132 i2d(sk_value(a, i), &p);
H A Dasn1.h339 # define CHECKED_I2D_OF(type, i2d) \
340 ((i2d_of_void*) (1 ? i2d : ((I2D_OF(type))0)))
550 i2d_of_void *i2d; member in struct:asn1_method_st
881 i2d_of_void *i2d, int ex_tag, int ex_class, int is_set);
938 void *ASN1_dup(i2d_of_void *i2d, d2i_of_void *d2i, char *x);
940 # define ASN1_dup_of(type,i2d,d2i,x) \
941 ((type*)ASN1_dup(CHECKED_I2D_OF(type, i2d), \
945 # define ASN1_dup_of_const(type,i2d,d2i,x) \
946 ((type*)ASN1_dup(CHECKED_I2D_OF(const type, i2d), \
968 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
172 inl = i2d(data, NULL);
183 i2d(data, &p);
/freebsd-9.3-release/contrib/compiler-rt/lib/
H A Dfloatsidf.c21 ARM_EABI_FNALIAS(i2d, floatsidf)
/freebsd-9.3-release/crypto/openssl/crypto/ocsp/
H A Docsp_ext.c291 ASN1_STRING *ASN1_STRING_encode(ASN1_STRING *s, i2d_of_void *i2d, argument
298 if ((i = i2d(data, NULL)) <= 0)
302 if (i2d(data, &p) <= 0)
306 (I2D_OF(ASN1_OBJECT)) i2d,
313 if (i2d_ASN1_SET_OF_ASN1_OBJECT(sk, &p, (I2D_OF(ASN1_OBJECT)) i2d,
H A Docsp.h471 ASN1_STRING *ASN1_STRING_encode(ASN1_STRING *s, i2d_of_void *i2d,
473 # define ASN1_STRING_encode_of(type,s,i2d,data,sk) \
474 ASN1_STRING_encode(s, CHECKED_I2D_OF(type, i2d), data, sk)
/freebsd-9.3-release/crypto/openssl/crypto/pem/
H A Dpem_lib.c274 int PEM_ASN1_write(i2d_of_void *i2d, const char *name, FILE *fp, argument
286 ret = PEM_ASN1_write_bio(i2d, name, b, x, enc, kstr, klen, callback, u);
292 int PEM_ASN1_write_bio(i2d_of_void *i2d, const char *name, BIO *bp, argument
312 if ((dsize = i2d(x, NULL)) < 0) {
325 i = i2d(x, &p);
H A Dpem.h569 int PEM_ASN1_write_bio(i2d_of_void *i2d, const char *name, BIO *bp, char *x,
573 # define PEM_ASN1_write_bio_of(type,i2d,name,bp,x,enc,kstr,klen,cb,u) \
574 (PEM_ASN1_write_bio(CHECKED_I2D_OF(type, i2d), \
592 int PEM_ASN1_write(i2d_of_void *i2d, const char *name, FILE *fp,
/freebsd-9.3-release/crypto/openssl/crypto/x509v3/
H A Dv3_conf.c192 ext_len = method->i2d(ext_struc, NULL);
196 method->i2d(ext_struc, &p);
H A Dx509v3.h106 X509V3_EXT_I2D i2d; member in struct:v3_ext_method
/freebsd-9.3-release/crypto/openssl/crypto/x509/
H A Dx509.h964 int ASN1_verify(i2d_of_void *i2d, X509_ALGOR *algor1,
967 int ASN1_digest(i2d_of_void *i2d, const EVP_MD *type, char *data,
970 int ASN1_sign(i2d_of_void *i2d, X509_ALGOR *algor1,
/freebsd-9.3-release/crypto/openssl/crypto/evp/
H A Devp.h214 int (*i2d) ();

Completed in 304 milliseconds