OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LTC_PKCS_1_V1_5
(Results
1 - 6
of
6
) sorted by null
/external/dropbear/libtomcrypt/src/headers/
tomcrypt_pkcs.h
14
LTC_PKCS_1_V1_5
= 1, /* PKCS #1 v1.5 padding (\sa ltc_pkcs_1_v1_5_blocks) */
/external/dropbear/libtomcrypt/src/pk/rsa/
rsa_decrypt_key.c
29
@param padding Type of padding (LTC_PKCS_1_OAEP or
LTC_PKCS_1_V1_5
)
54
if ((padding !=
LTC_PKCS_1_V1_5
) &&
rsa_encrypt_key.c
31
@param padding Type of padding (LTC_PKCS_1_OAEP or
LTC_PKCS_1_V1_5
)
49
if ((padding !=
LTC_PKCS_1_V1_5
) &&
rsa_sign_hash.c
26
@param padding Type of padding (LTC_PKCS_1_PSS or
LTC_PKCS_1_V1_5
)
50
if ((padding !=
LTC_PKCS_1_V1_5
) && (padding != LTC_PKCS_1_PSS)) {
rsa_verify_hash.c
26
@param padding Type of padding (LTC_PKCS_1_PSS or
LTC_PKCS_1_V1_5
)
53
if ((padding !=
LTC_PKCS_1_V1_5
) &&
/external/dropbear/libtomcrypt/testprof/
rsa_test.c
264
DO(rsa_encrypt_key_ex(in, rsa_msgsize, out, &len, NULL, 0, &yarrow_prng, prng_idx, 0,
LTC_PKCS_1_V1_5
, &key));
267
DO(rsa_decrypt_key_ex(out, len, tmp, &len2, NULL, 0, 0,
LTC_PKCS_1_V1_5
, &stat, &key));
354
DO(rsa_sign_hash_ex(in, 20, out, &len,
LTC_PKCS_1_V1_5
, &yarrow_prng, prng_idx, hash_idx, 8, &privKey));
355
DO(rsa_verify_hash_ex(out, len, in, 20,
LTC_PKCS_1_V1_5
, hash_idx, 8, &stat, &pubKey));
358
DO(rsa_verify_hash_ex(out, len, in, 20,
LTC_PKCS_1_V1_5
, hash_idx, 8, &stat2, &pubKey));
Completed in 350 milliseconds