/aosp_15_r20/external/tink/java_src/src/main/java/com/google/crypto/tink/signature/ |
H A D | RsaSsaPkcs1Parameters.java | 87 @Nullable private BigInteger publicExponent = F4; field in RsaSsaPkcs1Parameters.Builder 120 private void validatePublicExponent(BigInteger publicExponent) in validatePublicExponent() 168 private final BigInteger publicExponent; field in RsaSsaPkcs1Parameters 173 int modulusSizeBits, BigInteger publicExponent, Variant variant, HashType hashType) { in RsaSsaPkcs1Parameters()
|
H A D | RsaSsaPssParameters.java | 82 @Nullable private BigInteger publicExponent = F4; field in RsaSsaPssParameters.Builder 135 private void validatePublicExponent(BigInteger publicExponent) in validatePublicExponent() 194 private final BigInteger publicExponent; field in RsaSsaPssParameters 202 BigInteger publicExponent, in RsaSsaPssParameters()
|
/aosp_15_r20/external/tink/java_src/src/main/java/com/google/crypto/tink/jwt/ |
H A D | JwtRsaSsaPkcs1Parameters.java | 119 Optional<BigInteger> publicExponent = Optional.of(F4); field in JwtRsaSsaPkcs1Parameters.Builder 152 private void validatePublicExponent(BigInteger publicExponent) in validatePublicExponent() 202 private final BigInteger publicExponent; field in JwtRsaSsaPkcs1Parameters 208 BigInteger publicExponent, in JwtRsaSsaPkcs1Parameters()
|
H A D | JwtRsaSsaPssParameters.java | 118 Optional<BigInteger> publicExponent = Optional.of(F4); field in JwtRsaSsaPssParameters.Builder 151 private void validatePublicExponent(BigInteger publicExponent) in validatePublicExponent() 201 private final BigInteger publicExponent; field in JwtRsaSsaPssParameters 207 BigInteger publicExponent, in JwtRsaSsaPssParameters()
|
/aosp_15_r20/libcore/ojluni/src/main/java/java/security/spec/ |
H A D | RSAPublicKeySpec.java | 48 private final BigInteger publicExponent; field in RSAPublicKeySpec 57 public RSAPublicKeySpec(BigInteger modulus, BigInteger publicExponent) { in RSAPublicKeySpec() 69 public RSAPublicKeySpec(BigInteger modulus, BigInteger publicExponent, in RSAPublicKeySpec()
|
H A D | RSAKeyGenParameterSpec.java | 45 private BigInteger publicExponent; field in RSAKeyGenParameterSpec 65 public RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent) { in RSAKeyGenParameterSpec() 78 public RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent, in RSAKeyGenParameterSpec()
|
H A D | RSAPrivateCrtKeySpec.java | 49 private final BigInteger publicExponent; field in RSAPrivateCrtKeySpec 70 BigInteger publicExponent, in RSAPrivateCrtKeySpec() 98 BigInteger publicExponent, in RSAPrivateCrtKeySpec()
|
H A D | RSAMultiPrimePrivateCrtKeySpec.java | 53 private final BigInteger publicExponent; field in RSAMultiPrimePrivateCrtKeySpec 86 BigInteger publicExponent, in RSAMultiPrimePrivateCrtKeySpec() 128 BigInteger publicExponent, in RSAMultiPrimePrivateCrtKeySpec()
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/security/spec/ |
D | RSAPublicKeySpec.java | 48 private final BigInteger publicExponent; field in RSAPublicKeySpec 57 public RSAPublicKeySpec(BigInteger modulus, BigInteger publicExponent) { in RSAPublicKeySpec() 69 public RSAPublicKeySpec(BigInteger modulus, BigInteger publicExponent, in RSAPublicKeySpec()
|
D | RSAKeyGenParameterSpec.java | 45 private BigInteger publicExponent; field in RSAKeyGenParameterSpec 65 public RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent) { in RSAKeyGenParameterSpec() 78 public RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent, in RSAKeyGenParameterSpec()
|
D | RSAPrivateCrtKeySpec.java | 49 private final BigInteger publicExponent; field in RSAPrivateCrtKeySpec 70 BigInteger publicExponent, in RSAPrivateCrtKeySpec() 98 BigInteger publicExponent, in RSAPrivateCrtKeySpec()
|
D | RSAMultiPrimePrivateCrtKeySpec.java | 53 private final BigInteger publicExponent; field in RSAMultiPrimePrivateCrtKeySpec 86 BigInteger publicExponent, in RSAMultiPrimePrivateCrtKeySpec() 128 BigInteger publicExponent, in RSAMultiPrimePrivateCrtKeySpec()
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/14/libcore/ojluni/src/main/java/java/security/spec/ |
D | RSAPublicKeySpec.java | 48 private final BigInteger publicExponent; field in RSAPublicKeySpec 57 public RSAPublicKeySpec(BigInteger modulus, BigInteger publicExponent) { in RSAPublicKeySpec() 69 public RSAPublicKeySpec(BigInteger modulus, BigInteger publicExponent, in RSAPublicKeySpec()
|
D | RSAKeyGenParameterSpec.java | 45 private BigInteger publicExponent; field in RSAKeyGenParameterSpec 65 public RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent) { in RSAKeyGenParameterSpec() 78 public RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent, in RSAKeyGenParameterSpec()
|
D | RSAPrivateCrtKeySpec.java | 49 private final BigInteger publicExponent; field in RSAPrivateCrtKeySpec 70 BigInteger publicExponent, in RSAPrivateCrtKeySpec() 98 BigInteger publicExponent, in RSAPrivateCrtKeySpec()
|
D | RSAMultiPrimePrivateCrtKeySpec.java | 53 private final BigInteger publicExponent; field in RSAMultiPrimePrivateCrtKeySpec 86 BigInteger publicExponent, in RSAMultiPrimePrivateCrtKeySpec() 128 BigInteger publicExponent, in RSAMultiPrimePrivateCrtKeySpec()
|
/aosp_15_r20/external/conscrypt/common/src/main/java/org/conscrypt/ |
H A D | OpenSSLRSAPrivateCrtKey.java | 37 private BigInteger publicExponent; field in OpenSSLRSAPrivateCrtKey 78 final BigInteger publicExponent = rsaKeySpec.getPublicExponent(); in init() local 124 final BigInteger publicExponent = rsaPrivateKey.getPublicExponent(); in getInstance() local
|
H A D | OpenSSLRSAKeyPairGenerator.java | 38 private byte[] publicExponent = new byte[] { field in OpenSSLRSAKeyPairGenerator 72 final BigInteger publicExponent = spec.getPublicExponent(); in initialize() local
|
/aosp_15_r20/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
H A D | OpenSSLRSAPrivateCrtKey.java | 38 private BigInteger publicExponent; field in OpenSSLRSAPrivateCrtKey 79 final BigInteger publicExponent = rsaKeySpec.getPublicExponent(); in init() local 125 final BigInteger publicExponent = rsaPrivateKey.getPublicExponent(); in getInstance() local
|
H A D | OpenSSLRSAKeyPairGenerator.java | 40 private byte[] publicExponent = new byte[] { field in OpenSSLRSAKeyPairGenerator 76 final BigInteger publicExponent = spec.getPublicExponent(); in initialize() local
|
/aosp_15_r20/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/crypto/params/ |
H A D | RSAKeyGenerationParameters.java | 15 private BigInteger publicExponent; field in RSAKeyGenerationParameters 19 BigInteger publicExponent, in RSAKeyGenerationParameters()
|
/aosp_15_r20/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/ |
H A D | RSAKeyGenerationParameters.java | 11 private BigInteger publicExponent; field in RSAKeyGenerationParameters 15 BigInteger publicExponent, in RSAKeyGenerationParameters()
|
/aosp_15_r20/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/params/ |
H A D | RSAKeyGenerationParameters.java | 15 private BigInteger publicExponent; field in RSAKeyGenerationParameters 19 BigInteger publicExponent, in RSAKeyGenerationParameters()
|
/aosp_15_r20/libcore/ojluni/annotations/flagged_api/java/security/spec/ |
H A D | RSAPublicKeySpec.annotated.java | 32 public RSAPublicKeySpec(java.math.BigInteger modulus, java.math.BigInteger publicExponent) { throw … in RSAPublicKeySpec() 35 public RSAPublicKeySpec(java.math.BigInteger modulus, java.math.BigInteger publicExponent, java.sec… in RSAPublicKeySpec()
|
H A D | RSAKeyGenParameterSpec.annotated.java | 32 public RSAKeyGenParameterSpec(int keysize, java.math.BigInteger publicExponent) { throw new Runtime… in RSAKeyGenParameterSpec() 35 public RSAKeyGenParameterSpec(int keysize, java.math.BigInteger publicExponent, java.security.spec.… in RSAKeyGenParameterSpec()
|