Home
last modified time | relevance | path

Searched refs:typ (Results 1 – 17 of 17) sorted by relevance

/openssl/providers/implementations/include/prov/
H A Dciphercommon.h135 blkbits, ivbits, typ) \ argument
143 { OSSL_FUNC_CIPHER_UPDATE, (void (*)(void))ossl_cipher_generic_##typ##_update },\
144 { OSSL_FUNC_CIPHER_FINAL, (void (*)(void))ossl_cipher_generic_##typ##_final }, \
162 kbits, blkbits, ivbits, typ) \ argument
190 kbits, blkbits, ivbits, typ) \ argument
212 blkbits, ivbits, typ) \ argument
214 blkbits, ivbits, typ) \
216 blkbits, ivbits, typ)
219 blkbits, ivbits, typ) \ argument
221 blkbits, ivbits, typ) \
[all …]
/openssl/providers/implementations/digests/
H A Dsha3_prov.c412 # define SHAKE_SET_MD(uname, typ) \ argument
415 ctx->meth = typ##_s390x_md; \
420 # define SHA3_SET_MD(uname, typ) \ argument
423 ctx->meth = typ##_s390x_md; \
461 # define SHAKE_SET_MD(uname, typ) \ argument
468 # define SHA3_SET_MD(uname, typ) \ argument
481 # define SHA3_SET_MD(uname, typ) ctx->meth = sha3_generic_md; argument
483 # define SHAKE_SET_MD(uname, typ) ctx->meth = shake_generic_md; argument
486 #define SHA3_newctx(typ, uname, name, bitlen, pad) \ argument
496 SHA3_SET_MD(uname, typ) \
[all …]
/openssl/crypto/asn1/
H A Dtasn_new.c264 ASN1_TYPE *typ; in asn1_primitive_new() local
301 if ((typ = OPENSSL_malloc(sizeof(*typ))) == NULL) in asn1_primitive_new()
303 typ->value.ptr = NULL; in asn1_primitive_new()
304 typ->type = -1; in asn1_primitive_new()
305 *pval = (ASN1_VALUE *)typ; in asn1_primitive_new()
H A Dtasn_fre.c171 ASN1_TYPE *typ = (ASN1_TYPE *)*pval; in ossl_asn1_primitive_free() local
173 utype = typ->type; in ossl_asn1_primitive_free()
174 pval = &typ->value.asn1_value; in ossl_asn1_primitive_free()
H A Dtasn_dec.c836 ASN1_TYPE *typ = NULL; in asn1_ex_c2i() local
847 typ = ASN1_TYPE_new(); in asn1_ex_c2i()
848 if (typ == NULL) in asn1_ex_c2i()
850 *pval = (ASN1_VALUE *)typ; in asn1_ex_c2i()
852 typ = (ASN1_TYPE *)*pval; in asn1_ex_c2i()
854 if (utype != typ->type) in asn1_ex_c2i()
855 ASN1_TYPE_set(typ, utype, NULL); in asn1_ex_c2i()
857 pval = &typ->value.asn1_value; in asn1_ex_c2i()
959 if (typ && (utype == V_ASN1_NULL)) in asn1_ex_c2i()
960 typ->value.ptr = NULL; in asn1_ex_c2i()
[all …]
H A Dtasn_enc.c551 ASN1_TYPE *typ; in asn1_ex_i2c() local
552 typ = (ASN1_TYPE *)*pval; in asn1_ex_i2c()
553 utype = typ->type; in asn1_ex_i2c()
555 pval = (const ASN1_VALUE **)&typ->value.asn1_value; /* actually is const */ in asn1_ex_i2c()
H A Dasn1_gen.c421 ASN1_TYPE *typ = in asn1_multi() local
424 if (!typ) in asn1_multi()
426 if (!sk_ASN1_TYPE_push(sk, typ)) in asn1_multi()
/openssl/apps/
H A Dasn1parse.c236 int typ; in asn1parse_main() local
254 typ = ASN1_TYPE_get(at); in asn1parse_main()
255 if ((typ == V_ASN1_OBJECT) in asn1parse_main()
256 || (typ == V_ASN1_BOOLEAN) in asn1parse_main()
257 || (typ == V_ASN1_NULL)) { in asn1parse_main()
258 BIO_printf(bio_err, "Can't parse %s type\n", ASN1_tag2str(typ)); in asn1parse_main()
/openssl/providers/implementations/ciphers/
H A Dcipher_rc4.c71 #define IMPLEMENT_cipher(alg, UCALG, flags, kbits, blkbits, ivbits, typ) \ argument
98 { OSSL_FUNC_CIPHER_UPDATE, (void (*)(void))ossl_cipher_generic_##typ##_update },\
99 { OSSL_FUNC_CIPHER_FINAL, (void (*)(void))ossl_cipher_generic_##typ##_final }, \
H A Dcipher_rc5.c131 blkbits, ivbits, typ) \ argument
161 { OSSL_FUNC_CIPHER_UPDATE, (void (*)(void))ossl_cipher_generic_##typ##_update },\
162 { OSSL_FUNC_CIPHER_FINAL, (void (*)(void))ossl_cipher_generic_##typ##_final }, \
H A Dcipher_rc2.c235 ivbits, typ) \ argument
265 { OSSL_FUNC_CIPHER_UPDATE, (void (*)(void))ossl_cipher_generic_##typ##_update },\
266 { OSSL_FUNC_CIPHER_FINAL, (void (*)(void))ossl_cipher_generic_##typ##_final }, \
H A Dcipher_cts.h14 blkbits, ivbits, typ) \ argument
/openssl/crypto/x509/
H A Dv3_conf.c287 ASN1_TYPE *typ; in generic_asn1() local
290 typ = ASN1_generate_v3(value, ctx); in generic_asn1()
291 if (typ == NULL) in generic_asn1()
293 *ext_len = i2d_ASN1_TYPE(typ, &ext_der); in generic_asn1()
294 ASN1_TYPE_free(typ); in generic_asn1()
/openssl/crypto/dh/
H A Ddh_pmeth.c262 int typ; in pkey_dh_ctrl_str() local
263 typ = atoi(value); in pkey_dh_ctrl_str()
264 return EVP_PKEY_CTX_set_dh_paramgen_type(ctx, typ); in pkey_dh_ctrl_str()
/openssl/crypto/evp/
H A Ddh_ctrl.c84 int EVP_PKEY_CTX_set_dh_paramgen_type(EVP_PKEY_CTX *ctx, int typ) in EVP_PKEY_CTX_set_dh_paramgen_type() argument
87 EVP_PKEY_CTRL_DH_PARAMGEN_TYPE, typ, NULL); in EVP_PKEY_CTX_set_dh_paramgen_type()
/openssl/providers/fips/
H A Dself_test_kats.c463 const char *typ = OSSL_SELF_TEST_TYPE_KAT_SIGNATURE; in self_test_digest_sign() local
469 typ = OSSL_SELF_TEST_TYPE_PCT_SIGNATURE; in self_test_digest_sign()
471 OSSL_SELF_TEST_onbegin(st, typ, t->desc); in self_test_digest_sign()
/openssl/include/openssl/
H A Ddh.h38 int EVP_PKEY_CTX_set_dh_paramgen_type(EVP_PKEY_CTX *ctx, int typ);

Completed in 58 milliseconds