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

/freebsd-current/crypto/openssl/crypto/asn1/
H A Da_i2d_fp.c18 int ASN1_i2d_fp(i2d_of_void *i2d, FILE *out, const void *x) argument
28 ret = ASN1_i2d_bio(i2d, b, x);
34 int ASN1_i2d_bio(i2d_of_void *i2d, BIO *out, const void *x) argument
40 n = i2d(x, NULL);
51 i2d(x, &p);
H A Da_digest.c28 int ASN1_digest(i2d_of_void *i2d, const EVP_MD *type, char *data, argument
34 inl = i2d(data, NULL);
44 i2d(data, &p);
H A Da_dup.c16 void *ASN1_dup(i2d_of_void *i2d, d2i_of_void *d2i, const void *x) argument
26 i = i2d(x, NULL);
36 i = i2d(x, &p);
H A Da_verify.c27 int ASN1_verify(i2d_of_void *i2d, X509_ALGOR *a, ASN1_BIT_STRING *signature, argument
51 inl = i2d(data, NULL);
63 i2d(data, &p);
H A Da_sign.c27 int ASN1_sign(i2d_of_void *i2d, X509_ALGOR *algor1, X509_ALGOR *algor2, argument
74 inl = i2d(data, NULL);
90 i2d(data, &p);
/freebsd-current/crypto/openssl/test/
H A Dx509aux.c40 i2d_X509_t i2d = trusted ? i2d_X509_AUX : i2d_X509; local
64 enclen = i2d(cert, NULL);
76 enclen = i2d(cert, &bufp);
111 enclen = i2d(cert, &buf);
130 enclen = i2d(cert, &buf);
H A Dasn1_encode_test.c164 /* The i2d function to use with this type */
165 i2d_fn *i2d; member in struct:__anon81
528 len = package->i2d(input, &data);
557 len = package->i2d(p, &data);
891 /* We expect the i2d operation to fail */
H A Dendecoder_legacy_test.c434 const void *legacy_key, i2d_of_void *i2d, d2i_of_void *d2i,
460 || !TEST_size_t_gt(der_legacy_len = i2d(legacy_key, &der_legacy), 0)
433 test_DER(const char *keytype, int evp_type, const void *legacy_key, i2d_of_void *i2d, d2i_of_void *d2i, EVP_PKEY_eq_fn *evp_pkey_eq, EVP_PKEY_print_fn *evp_pkey_print, EVP_PKEY *provided_pkey, int selection, const char *structure) argument
/freebsd-current/lib/libc/arm/aeabi/
H A Daeabi_double.c69 float64 AEABI_FUNC(i2d, int, int32_to_float64)
H A Daeabi_vfp_double.S159 AEABI_ENTRY(i2d)
164 AEABI_END(i2d)
/freebsd-current/crypto/openssl/include/openssl/
H A Dasn1.h356 # define CHECKED_I2D_OF(type, i2d) \
357 ((i2d_of_void*) (1 ? i2d : ((I2D_OF(type))0)))
904 void *ASN1_dup(i2d_of_void *i2d, d2i_of_void *d2i, const void *x);
906 # define ASN1_dup_of(type,i2d,d2i,x) \
907 ((type*)ASN1_dup(CHECKED_I2D_OF(type, i2d), \
940 int ASN1_i2d_fp(i2d_of_void *i2d, FILE *out, const void *x);
942 # define ASN1_i2d_fp_of(type,i2d,out,x) \
943 (ASN1_i2d_fp(CHECKED_I2D_OF(type, i2d), \
964 int ASN1_i2d_bio(i2d_of_void *i2d, BIO *out, const void *x);
966 # define ASN1_i2d_bio_of(type,i2d,ou
[all...]
H A Dpem.h390 int PEM_ASN1_write_bio(i2d_of_void *i2d, const char *name, BIO *bp,
413 int PEM_ASN1_write(i2d_of_void *i2d, const char *name, FILE *fp,
H A Dx509.h803 int ASN1_verify(i2d_of_void *i2d, X509_ALGOR *algor1,
806 int ASN1_digest(i2d_of_void *i2d, const EVP_MD *type, char *data,
809 int ASN1_sign(i2d_of_void *i2d, X509_ALGOR *algor1, X509_ALGOR *algor2,
H A Dx509v3.h69 X509V3_EXT_I2D i2d; member in struct:v3_ext_method
/freebsd-current/crypto/openssl/crypto/pem/
H A Dpem_lib.c293 int PEM_ASN1_write(i2d_of_void *i2d, const char *name, FILE *fp, argument
306 ret = PEM_ASN1_write_bio(i2d, name, b, x, enc, kstr, klen, callback, u);
312 int PEM_ASN1_write_bio(i2d_of_void *i2d, const char *name, BIO *bp, argument
340 if ((dsize = i2d(x, NULL)) <= 0) {
353 i = i2d(x, &p);
/freebsd-current/crypto/openssl/crypto/x509/
H A Dv3_conf.c156 ext_len = method->i2d(ext_struc, NULL);
162 method->i2d(ext_struc, &p);

Completed in 168 milliseconds