Symbol: RSA_size
crypto/heimdal/lib/hx509/crypto.c
1725
tosize = RSA_size(rsa);
crypto/heimdal/lib/hx509/crypto.c
1777
cleartext->length = RSA_size(p->private_key.rsa);
crypto/heimdal/lib/hx509/crypto.c
564
tosize = RSA_size(rsa);
crypto/heimdal/lib/hx509/crypto.c
723
sig->length = RSA_size(signer->private_key.rsa);
crypto/heimdal/lib/hx509/ks_p11.c
142
ck_sigsize = RSA_size(rsa);
crypto/heimdal/lib/hx509/ks_p11.c
180
ck_sigsize = RSA_size(rsa);
crypto/openssh/ssh-pkcs11-client.c
295
if (slen <= (size_t)RSA_size(rsa)) {
crypto/openssh/ssh-pkcs11-helper.c
220
if ((len = RSA_size(rsa)) < 0)
crypto/openssh/ssh-pkcs11.c
444
tlen = RSA_size(rsa);
crypto/openssl/crypto/pem/pvkfmt.c
645
nbyte = RSA_size(rsa);
crypto/openssl/crypto/pem/pvkfmt.c
681
nbyte = RSA_size(rsa);
crypto/openssl/crypto/rsa/rsa_ameth.c
187
return RSA_size(pkey->pkey.rsa);
crypto/openssl/crypto/rsa/rsa_gen.c
708
plaintxt_len = RSA_size(rsa);
crypto/openssl/crypto/rsa/rsa_pmeth.c
118
if ((ctx->tbuf = OPENSSL_malloc(RSA_size(EVP_PKEY_get0_RSA(pk->pkey)))) == NULL)
crypto/openssl/crypto/rsa/rsa_pmeth.c
170
if ((size_t)RSA_size(rsa) < tbslen + 1) {
crypto/openssl/crypto/rsa/rsa_pmeth.c
197
ret = RSA_private_encrypt(RSA_size(rsa), rctx->tbuf,
crypto/openssl/crypto/rsa/rsa_pmeth.c
339
int klen = RSA_size(rsa);
crypto/openssl/crypto/rsa/rsa_pmeth.c
886
max_saltlen = RSA_size(rsa) - md_size;
crypto/openssl/crypto/rsa/rsa_pss.c
221
emLen = RSA_size(rsa);
crypto/openssl/crypto/rsa/rsa_pss.c
83
emLen = RSA_size(rsa);
crypto/openssl/crypto/rsa/rsa_saos.c
37
j = RSA_size(rsa);
crypto/openssl/crypto/rsa/rsa_saos.c
67
if (siglen != (unsigned int)RSA_size(rsa)) {
crypto/openssl/crypto/rsa/rsa_sign.c
318
if (encoded_len + RSA_PKCS1_PADDING_SIZE > (size_t)RSA_size(rsa)) {
crypto/openssl/crypto/rsa/rsa_sign.c
352
if (siglen != (size_t)RSA_size(rsa)) {
crypto/openssl/engines/e_capi.c
912
slen = RSA_size(rsa);
crypto/openssl/include/openssl/rsa.h
215
OSSL_DEPRECATEDIN_3_0 int RSA_size(const RSA *rsa);
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
154
size_t len = RSA_size(prsactx->rsa);
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
188
int rsasize = RSA_size(prsactx->rsa);
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
232
size_t len = RSA_size(prsactx->rsa);
crypto/openssl/providers/implementations/kem/rsa_kem.c
285
nlen = RSA_size(prsactx->rsa);
crypto/openssl/providers/implementations/kem/rsa_kem.c
362
nlen = RSA_size(prsactx->rsa);
crypto/openssl/providers/implementations/keymgmt/rsa_kmgmt.c
339
&& (empty || !OSSL_PARAM_set_int(p, RSA_size(rsa))))
crypto/openssl/providers/implementations/signature/rsa_sig.c
215
max_saltlen = RSA_size(prsactx->rsa) - EVP_MD_get_size(prsactx->md);
crypto/openssl/providers/implementations/signature/rsa_sig.c
286
if ((rsasize = RSA_size(ctx->rsa)) <= 2 || rsasize - 2 < mdsize) {
crypto/openssl/providers/implementations/signature/rsa_sig.c
614
if ((ctx->tbuf = OPENSSL_malloc(RSA_size(ctx->rsa))) == NULL)
crypto/openssl/providers/implementations/signature/rsa_sig.c
622
OPENSSL_cleanse(ctx->tbuf, RSA_size(ctx->rsa));
crypto/openssl/providers/implementations/signature/rsa_sig.c
681
size_t rsasize = RSA_size(prsactx->rsa);
crypto/openssl/providers/implementations/signature/rsa_sig.c
726
if ((size_t)RSA_size(prsactx->rsa) < tbslen + 1) {
crypto/openssl/providers/implementations/signature/rsa_sig.c
729
RSA_size(prsactx->rsa), tbslen + 1);
crypto/openssl/providers/implementations/signature/rsa_sig.c
799
ret = RSA_private_encrypt(RSA_size(prsactx->rsa), prsactx->tbuf,
crypto/openssl/providers/implementations/signature/rsa_sig.c
940
*routlen = RSA_size(prsactx->rsa);
crypto/openssl/test/rsa_mp_test.c
138
return RSA_size(key);
crypto/openssl/test/rsa_mp_test.c
144
int rv = RSA_size(key);
crypto/openssl/test/rsa_mp_test.c
196
int rv = RSA_size(key);
crypto/openssl/test/rsa_test.c
643
if (!TEST_int_ge((int)sizeof(sig), RSA_size(rsa_priv)))
sbin/decryptcore/decryptcore.c
215
privkeysize = RSA_size(privkey);
sbin/dumpon/dumpon.c
280
if (RSA_size(pubkey) * 8 < 2048)
sbin/dumpon/dumpon.c
284
RSA_size(pubkey) * 8);
sbin/dumpon/dumpon.c
286
kdap->kda_encryptedkeysize = RSA_size(pubkey);