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

/freebsd-11-stable/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);
100 i2d(x, &p);
H A Dasn_pack.c88 unsigned char *ASN1_seq_pack(STACK_OF(OPENSSL_BLOCK) *safes, i2d_of_void *i2d,
93 if (!(safelen = i2d_ASN1_SET(safes, NULL, i2d, V_ASN1_SEQUENCE,
103 i2d_ASN1_SET(safes, &p, i2d, V_ASN1_SEQUENCE, V_ASN1_UNIVERSAL,
127 ASN1_STRING *ASN1_pack_string(void *obj, i2d_of_void *i2d, ASN1_STRING **oct) argument
142 if (!(octmp->length = i2d(obj, NULL))) {
151 i2d(obj, &p);
H A Da_dup.c65 void *ASN1_dup(i2d_of_void *i2d, d2i_of_void *d2i, void *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_set.c91 i2d_of_void *i2d, int ex_tag, int ex_class, int is_set)
103 int tmplen = i2d(sk_OPENSSL_BLOCK_value(a, i), NULL);
106 ret += i2d(sk_OPENSSL_BLOCK_value(a, i), NULL);
121 i2d(sk_OPENSSL_BLOCK_value(a, i), &p);
137 i2d(sk_OPENSSL_BLOCK_value(a, i), &p);
H A Da_verify.c77 int ASN1_verify(i2d_of_void *i2d, X509_ALGOR *a, ASN1_BIT_STRING *signature, argument
98 inl = i2d(data, NULL);
106 i2d(data, &p);
H A Dasn1.h350 # define CHECKED_I2D_OF(type, i2d) \
351 ((i2d_of_void*) (1 ? i2d : ((I2D_OF(type))0)))
905 i2d_of_void *i2d, int ex_tag, int ex_class, int is_set); variable
964 void *ASN1_dup(i2d_of_void *i2d, d2i_of_void *d2i, void *x);
966 # define ASN1_dup_of(type,i2d,d2i,x) \
967 ((type*)ASN1_dup(CHECKED_I2D_OF(type, i2d), \
971 # define ASN1_dup_of_const(type,i2d,d2i,x) \
972 ((type*)ASN1_dup(CHECKED_I2D_OF(const type, i2d), \
994 int ASN1_i2d_fp(i2d_of_void *i2d, FILE *out, void *x);
996 # define ASN1_i2d_fp_of(type,i2d,ou
1064 unsigned char *ASN1_seq_pack(STACK_OF(OPENSSL_BLOCK) *safes, i2d_of_void *i2d, variable
[all...]
H A Da_sign.c130 int ASN1_sign(i2d_of_void *i2d, X509_ALGOR *algor1, X509_ALGOR *algor2, argument
173 inl = i2d(data, NULL);
184 i2d(data, &p);
/freebsd-11-stable/lib/libc/arm/aeabi/
H A Daeabi_double.c70 float64 AEABI_FUNC(i2d, int, int32_to_float64)
H A Daeabi_vfp_double.S161 AEABI_ENTRY(i2d)
166 AEABI_END(i2d)
/freebsd-11-stable/crypto/openssl/crypto/ocsp/
H A Docsp_ext.c291 ASN1_STRING *ASN1_STRING_encode(ASN1_STRING *s, i2d_of_void *i2d,
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,
/freebsd-11-stable/crypto/openssl/crypto/pem/
H A Dpem_lib.c313 int PEM_ASN1_write(i2d_of_void *i2d, const char *name, FILE *fp, argument
325 ret = PEM_ASN1_write_bio(i2d, name, b, x, enc, kstr, klen, callback, u);
331 int PEM_ASN1_write_bio(i2d_of_void *i2d, const char *name, BIO *bp, argument
351 if ((dsize = i2d(x, NULL)) < 0) {
364 i = i2d(x, &p);
H A Dpem.h409 int PEM_ASN1_write_bio(i2d_of_void *i2d, const char *name, BIO *bp, void *x,
426 int PEM_ASN1_write(i2d_of_void *i2d, const char *name, FILE *fp,
/freebsd-11-stable/crypto/openssl/crypto/x509v3/
H A Dv3_conf.c194 ext_len = method->i2d(ext_struc, NULL);
198 method->i2d(ext_struc, &p);
H A Dx509v3.h113 X509V3_EXT_I2D i2d; member in struct:v3_ext_method
/freebsd-11-stable/crypto/openssl/crypto/x509/
H A Dx509.h877 int ASN1_verify(i2d_of_void *i2d, X509_ALGOR *algor1,
880 int ASN1_digest(i2d_of_void *i2d, const EVP_MD *type, char *data,
883 int ASN1_sign(i2d_of_void *i2d, X509_ALGOR *algor1,

Completed in 507 milliseconds