/openssl-master/doc/man3/ |
A D | RSA_public_encrypt.pod | 30 B<to>. B<to> must point to RSA_size(B<rsa>) bytes of memory. 55 B<flen> must not be more than RSA_size(B<rsa>) - 11 for the PKCS #1 v1.5 56 based padding modes, not more than RSA_size(B<rsa>) - 42 for 57 RSA_PKCS1_OAEP_PADDING and exactly RSA_size(B<rsa>) for RSA_NO_PADDING. 63 RSA_size(B<rsa>) bytes. 68 be equal to RSA_size(B<rsa>) but may be smaller, when leading zero 72 data (which is equal to RSA_size(B<rsa>) for RSA_NO_PADDING, 73 RSA_size(B<rsa>) - 11 for the PKCS #1 v1.5 based padding modes and 74 RSA_size(B<rsa>) - 42 for RSA_PKCS1_OAEP_PADDING). 81 RSA_size(B<rsa>)). RSA_private_decrypt() returns the size of the [all …]
|
A D | RSA_size.pod | 5 RSA_size, RSA_bits, RSA_security_bits - get RSA modulus size or security bits 17 int RSA_size(const RSA *rsa); 31 RSA_size() returns the RSA modulus size in bytes. It can be used to 42 RSA_size() returns the size of modulus in bytes. 52 The RSA_size() and RSA_security_bits() functions were deprecated in OpenSSL 3.0.
|
A D | RSA_private_encrypt.pod | 33 B<RSA_size(rsa)> bytes of memory. 57 message digest (which is smaller than B<RSA_size(rsa) - 63 RSA_size(rsa)). RSA_public_decrypt() returns the size of the
|
A D | BN_num_bytes.pod | 42 size" of such a key, either use functions like RSA_size(), DH_size() 50 L<RSA_size(3)>
|
A D | RSA_sign_ASN1_OCTET_STRING.pod | 31 in B<siglen>. B<sigret> must point to B<RSA_size(rsa)> bytes of
|
A D | RSA_sign.pod | 30 B<sigret> must point to RSA_size(B<rsa>) bytes of memory.
|
A D | RSA_get0_key.pod | 170 L<RSA_new(3)>, L<RSA_size(3)>
|
A D | RSA_meth_new.pod | 249 L<RSA_set_method(3)>, L<RSA_size(3)>, L<RSA_get0_key(3)>,
|
/openssl-master/crypto/rsa/ |
A D | rsa_saos.c | 37 j = RSA_size(rsa); in RSA_sign_ASN1_OCTET_STRING() 69 if (siglen != (unsigned int)RSA_size(rsa)) { in RSA_verify_ASN1_OCTET_STRING()
|
A D | rsa_pmeth.c | 115 OPENSSL_malloc(RSA_size(EVP_PKEY_get0_RSA(pk->pkey)))) == NULL) { in setup_tbuf() 162 if ((size_t)RSA_size(rsa) < tbslen + 1) { in pkey_rsa_sign() 189 ret = RSA_private_encrypt(RSA_size(rsa), rctx->tbuf, in pkey_rsa_sign() 326 int klen = RSA_size(rsa); in pkey_rsa_encrypt() 847 max_saltlen = RSA_size(rsa) - EVP_MD_get_size(md); in pkey_pss_init()
|
A D | rsa_pss.c | 74 emLen = RSA_size(rsa); in RSA_verify_PKCS1_PSS_mgf1() 187 emLen = RSA_size(rsa); in RSA_padding_add_PKCS1_PSS_mgf1()
|
A D | rsa_sign.c | 305 if (encoded_len + RSA_PKCS1_PADDING_SIZE > (size_t)RSA_size(rsa)) { in RSA_sign() 339 if (siglen != (size_t)RSA_size(rsa)) { in ossl_rsa_verify()
|
A D | rsa_crpt.c | 28 int RSA_size(const RSA *r) in RSA_size() function
|
A D | rsa_gen.c | 494 ciphertxt_len = RSA_size(rsa); in rsa_keygen_pairwise_test()
|
A D | rsa_ameth.c | 183 return RSA_size(pkey->pkey.rsa); in int_rsa_size()
|
/openssl-master/test/ |
A D | rsa_mp_test.c | 147 return RSA_size(key); in key2048_key() 153 int rv = RSA_size(key); in key2048p3_v1() 204 int rv = RSA_size(key); in key2048p3_v2()
|
/openssl-master/providers/implementations/signature/ |
A D | rsa_sig.c | 162 max_saltlen = RSA_size(prsactx->rsa) - EVP_MD_get_size(prsactx->md); in rsa_check_parameters() 203 saltlen = RSA_size(ctx->rsa) - EVP_MD_get_size(ctx->md) - 2; in rsa_pss_compute_saltlen() 484 if ((ctx->tbuf = OPENSSL_malloc(RSA_size(ctx->rsa))) == NULL) { in setup_tbuf() 494 OPENSSL_cleanse(ctx->tbuf, RSA_size(ctx->rsa)); in clean_tbuf() 516 size_t rsasize = RSA_size(prsactx->rsa); in rsa_sign() 561 if ((size_t)RSA_size(prsactx->rsa) < tbslen + 1) { in rsa_sign() 564 RSA_size(prsactx->rsa), tbslen + 1); in rsa_sign() 630 ret = RSA_private_encrypt(RSA_size(prsactx->rsa), prsactx->tbuf, in rsa_sign() 680 *routlen = RSA_size(prsactx->rsa); in rsa_verify_recover()
|
/openssl-master/providers/implementations/kem/ |
A D | rsa_kem.c | 252 nlen = RSA_size(prsactx->rsa); in rsasve_generate() 299 nlen = RSA_size(prsactx->rsa); in rsasve_recover()
|
/openssl-master/providers/implementations/asymciphers/ |
A D | rsa_enc.c | 145 size_t len = RSA_size(prsactx->rsa); in rsa_encrypt() 156 int rsasize = RSA_size(prsactx->rsa); in rsa_encrypt() 200 size_t len = RSA_size(prsactx->rsa); in rsa_decrypt()
|
/openssl-master/doc/internal/man7/ |
A D | deprecation.pod | 117 RSA_size(), the following should be found very early (before including any
|
/openssl-master/crypto/pem/ |
A D | pvkfmt.c | 635 nbyte = RSA_size(rsa); in check_bitlen_rsa() 671 nbyte = RSA_size(rsa); in write_rsa()
|
/openssl-master/include/openssl/ |
A D | rsa.h | 204 OSSL_DEPRECATEDIN_3_0 int RSA_size(const RSA *rsa);
|
/openssl-master/providers/implementations/keymgmt/ |
A D | rsa_kmgmt.c | 316 && (empty || !OSSL_PARAM_set_int(p, RSA_size(rsa)))) in rsa_get_params()
|
/openssl-master/engines/ |
A D | e_capi.c | 901 slen = RSA_size(rsa); in capi_rsa_sign()
|
/openssl-master/doc/ |
A D | build.info | 1974 DEPEND[html/man3/RSA_size.html]=man3/RSA_size.pod 1975 GENERATE[html/man3/RSA_size.html]=man3/RSA_size.pod 1976 DEPEND[man/man3/RSA_size.3]=man3/RSA_size.pod 1977 GENERATE[man/man3/RSA_size.3]=man3/RSA_size.pod 3215 html/man3/RSA_size.html \ 3807 man/man3/RSA_size.3 \
|