/external/fsverity-utils/programs/ |
D | cmd_sign.c | 49 struct libfsverity_signature_params sig_params = {}; in fsverity_cmd_sign() local 60 if (sig_params.keyfile != NULL) { in fsverity_cmd_sign() 64 sig_params.keyfile = optarg; in fsverity_cmd_sign() 67 if (sig_params.certfile != NULL) { in fsverity_cmd_sign() 71 sig_params.certfile = optarg; in fsverity_cmd_sign() 74 if (sig_params.pkcs11_engine != NULL) { in fsverity_cmd_sign() 78 sig_params.pkcs11_engine = optarg; in fsverity_cmd_sign() 81 if (sig_params.pkcs11_module != NULL) { in fsverity_cmd_sign() 85 sig_params.pkcs11_module = optarg; in fsverity_cmd_sign() 88 if (sig_params.pkcs11_keyid != NULL) { in fsverity_cmd_sign() [all …]
|
/external/fsverity-utils/lib/ |
D | sign_digest.c | 225 load_pkcs11_private_key(const struct libfsverity_signature_params *sig_params in load_pkcs11_private_key() argument 337 load_pkcs11_private_key(const struct libfsverity_signature_params *sig_params, in load_pkcs11_private_key() argument 342 if (!sig_params->pkcs11_engine) { in load_pkcs11_private_key() 346 if (!sig_params->pkcs11_module) { in load_pkcs11_private_key() 357 sig_params->pkcs11_engine, 0) || in load_pkcs11_private_key() 362 sig_params->pkcs11_module, 0) || in load_pkcs11_private_key() 368 *pkey_ret = ENGINE_load_private_key(engine, sig_params->pkcs11_keyid, in load_pkcs11_private_key() 383 get_private_key(const struct libfsverity_signature_params *sig_params, in get_private_key() argument 386 if (sig_params->pkcs11_engine || sig_params->pkcs11_module || in get_private_key() 387 sig_params->pkcs11_keyid) { in get_private_key() [all …]
|
/external/mesa3d/src/compiler/glsl/ |
D | lower_shared_reference.cpp | 273 exec_list sig_params; in shared_store() local 277 sig_params.push_tail(offset_ref); in shared_store() 281 sig_params.push_tail(val_ref); in shared_store() 285 sig_params.push_tail(writemask_ref); in shared_store() 290 sig->replace_parameters(&sig_params); in shared_store() 308 exec_list sig_params; in shared_load() local 312 sig_params.push_tail(offset_ref); in shared_load() 317 sig->replace_parameters(&sig_params); in shared_load() 390 exec_list sig_params; in lower_shared_atomic_intrinsic() local 393 sig_params.push_tail(sig_param); in lower_shared_atomic_intrinsic() [all …]
|
D | lower_ubo_reference.cpp | 439 exec_list sig_params; in ssbo_store() local 443 sig_params.push_tail(block_ref); in ssbo_store() 447 sig_params.push_tail(offset_ref); in ssbo_store() 451 sig_params.push_tail(val_ref); in ssbo_store() 455 sig_params.push_tail(writemask_ref); in ssbo_store() 459 sig_params.push_tail(access_ref); in ssbo_store() 464 sig->replace_parameters(&sig_params); in ssbo_store() 484 exec_list sig_params; in ssbo_load() local 488 sig_params.push_tail(block_ref); in ssbo_load() 492 sig_params.push_tail(offset_ref); in ssbo_load() [all …]
|
/external/mbedtls/library/ |
D | x509_csr.c | 83 mbedtls_x509_buf sig_params; in mbedtls_x509_csr_parse_der() local 85 memset( &sig_params, 0, sizeof( mbedtls_x509_buf ) ); in mbedtls_x509_csr_parse_der() 216 if( ( ret = mbedtls_x509_get_alg( &p, end, &csr->sig_oid, &sig_params ) ) != 0 ) in mbedtls_x509_csr_parse_der() 222 if( ( ret = mbedtls_x509_get_sig_alg( &csr->sig_oid, &sig_params, in mbedtls_x509_csr_parse_der()
|
D | x509.c | 713 int mbedtls_x509_get_sig_alg( const mbedtls_x509_buf *sig_oid, const mbedtls_x509_buf *sig_params, in mbedtls_x509_get_sig_alg() argument 734 ret = mbedtls_x509_get_rsassa_pss_params( sig_params, in mbedtls_x509_get_sig_alg() 750 if( ( sig_params->tag != MBEDTLS_ASN1_NULL && sig_params->tag != 0 ) || in mbedtls_x509_get_sig_alg() 751 sig_params->len != 0 ) in mbedtls_x509_get_sig_alg()
|
/external/openthread/third_party/mbedtls/repo/library/ |
D | x509_csr.c | 91 mbedtls_x509_buf sig_params; in mbedtls_x509_csr_parse_der() local 93 memset( &sig_params, 0, sizeof( mbedtls_x509_buf ) ); in mbedtls_x509_csr_parse_der() 224 if( ( ret = mbedtls_x509_get_alg( &p, end, &csr->sig_oid, &sig_params ) ) != 0 ) in mbedtls_x509_csr_parse_der() 230 if( ( ret = mbedtls_x509_get_sig_alg( &csr->sig_oid, &sig_params, in mbedtls_x509_csr_parse_der()
|
D | x509.c | 656 int mbedtls_x509_get_sig_alg( const mbedtls_x509_buf *sig_oid, const mbedtls_x509_buf *sig_params, in mbedtls_x509_get_sig_alg() argument 677 ret = mbedtls_x509_get_rsassa_pss_params( sig_params, in mbedtls_x509_get_sig_alg() 693 if( ( sig_params->tag != MBEDTLS_ASN1_NULL && sig_params->tag != 0 ) || in mbedtls_x509_get_sig_alg() 694 sig_params->len != 0 ) in mbedtls_x509_get_sig_alg()
|
/external/arm-trusted-firmware/drivers/auth/mbedtls/ |
D | mbedtls_crypto.c | 64 mbedtls_asn1_buf sig_oid, sig_params; in verify_signature() local 78 rc = mbedtls_asn1_get_alg(&p, end, &sig_oid, &sig_params); in verify_signature() 84 rc = mbedtls_x509_get_sig_alg(&sig_oid, &sig_params, &md_alg, &pk_alg, &sig_opts); in verify_signature()
|
/external/fsverity-utils/include/ |
D | libfsverity.h | 211 const struct libfsverity_signature_params *sig_params,
|
/external/mbedtls/include/mbedtls/ |
D | x509.h | 347 int mbedtls_x509_get_sig_alg( const mbedtls_x509_buf *sig_oid, const mbedtls_x509_buf *sig_params,
|
/external/openthread/third_party/mbedtls/repo/include/mbedtls/ |
D | x509.h | 341 int mbedtls_x509_get_sig_alg( const mbedtls_x509_buf *sig_oid, const mbedtls_x509_buf *sig_params,
|
/external/python/cpython3/Lib/ |
D | inspect.py | 2447 sig_params = tuple(sig.parameters.values()) 2448 assert (not sig_params or 2449 first_wrapped_param is not sig_params[0]) 2450 new_params = (first_wrapped_param,) + sig_params
|