Lines Matching full:rsa
3 * RSA internal helpers
14 * rsa_key - RSA key structure
15 * @n : RSA modulus raw byte stream
16 * @e : RSA public exponent raw byte stream
17 * @d : RSA private exponent raw byte stream
18 * @p : RSA prime factor p of n raw byte stream
19 * @q : RSA prime factor q of n raw byte stream
20 * @dp : RSA exponent d mod (p - 1) raw byte stream
21 * @dq : RSA exponent d mod (q - 1) raw byte stream
22 * @qinv : RSA CRT coefficient q^(-1) mod p raw byte stream
23 * @n_sz : length in bytes of RSA modulus n
24 * @e_sz : length in bytes of RSA public exponent
25 * @d_sz : length in bytes of RSA private exponent
75 /* Find out new modulus size from rsa implementation */ in rsa_set_key()