HomeSort by relevance Sort by last modified time
    Searched defs:RSA (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /external/vboot_reference/host/lib/include/
host_key.h 15 typedef struct rsa_st RSA;
19 RSA* rsa_private_key; /* Private key data */
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/sign/
SignatureAlgorithm.java 26 /** RSA algorithm. */
27 RSA("RSA", 1, "withRSA"),
  /libcore/benchmarks/src/benchmarks/regression/
KeyPairGeneratorBenchmark.java 29 RSA,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/
RSA.java 13 import org.bouncycastle.jcajce.provider.asymmetric.rsa.KeyFactorySpi;
18 public class RSA
20 private static final String PREFIX = "org.bouncycastle.jcajce.provider.asymmetric" + ".rsa.";
68 provider.addAttributes("Cipher.RSA", generalRsaAttributes);
69 provider.addAlgorithm("Cipher.RSA", PREFIX + "CipherSpi$NoPadding");
70 // Android-changed: Use an alias for RSA/RAW instead of a concrete implementation
71 provider.addAlgorithm("Alg.Alias.Cipher.RSA/RAW", "RSA");
74 provider.addAlgorithm("Cipher.RSA/PKCS1", PREFIX + "CipherSpi$PKCS1v1_5Padding");
77 provider.addAlgorithm("Cipher.RSA/1", PREFIX + "CipherSpi$PKCS1v1_5Padding_PrivateOnly")
    [all...]
  /external/conscrypt/platform/src/main/java/org/conscrypt/ct/
DigitallySigned.java 51 RSA,
  /external/webrtc/webrtc/base/
sslidentity.cc 35 const char kPemTypeRsaPrivateKey[] = "RSA PRIVATE KEY";
44 params_.rsa.mod_size = kRsaDefaultModSize;
45 params_.rsa.pub_exp = kRsaDefaultExponent;
52 KeyParams KeyParams::RSA(int mod_size, int pub_exp) {
54 kt.params_.rsa.mod_size = mod_size;
55 kt.params_.rsa.pub_exp = pub_exp;
68 return (params_.rsa.mod_size >= kRsaMinModSize &&
69 params_.rsa.mod_size <= kRsaMaxModSize &&
70 params_.rsa.pub_exp > params_.rsa.mod_size)
    [all...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLSignature.java 44 RSA, EC,
179 case RSA:
182 + " (not RSA)");
278 super(evpMdRef, EngineType.RSA);
359 super(contentDigestEvpMdRef, EngineType.RSA);
  /external/boringssl/src/include/openssl/
base.h 319 typedef struct rsa_st RSA;
442 // bssl::UniquePtr<RSA> rsa(RSA_new());
  /external/llvm/lib/Target/Hexagon/
HexagonSplitDouble.cpp 597 unsigned RSA = getRegState(AdrOp);
608 .addReg(AdrOp.getReg(), RSA & ~RegState::Kill, AdrOp.getSubReg())
611 .addReg(AdrOp.getReg(), RSA & ~RegState::Kill, AdrOp.getSubReg())
617 .addReg(AdrOp.getReg(), RSA & ~RegState::Kill, AdrOp.getSubReg())
621 .addReg(AdrOp.getReg(), RSA & ~RegState::Kill, AdrOp.getSubReg())
635 .addReg(AdrOp.getReg(), RSA)
    [all...]
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
PeerConnection.java 135 RSA, ECDSA
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreKeyPairGeneratorSpi.java 96 public static class RSA extends AndroidKeyStoreKeyPairGeneratorSpi {
97 public RSA() {
115 /* RSA */
392 throw new InvalidAlgorithmParameterException("RSA key size must match "
399 "RSA may only use RSAKeyGenParameterSpec");
406 "RSA public exponent must be positive: " + publicExponent);
410 "Unsupported RSA public exponent: " + publicExponent
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/x509/
x509.go 18 "crypto/rsa"
50 // Supported key types include RSA, DSA, and ECDSA. Unknown key
53 // On success, pub will be of type *rsa.PublicKey, *dsa.PublicKey,
71 case *rsa.PublicKey:
97 return nil, pkix.AlgorithmIdentifier{}, errors.New("x509: only RSA and ECDSA public keys supported")
216 RSA
222 RSA: "RSA",
240 // RFC 3279 2.2.1 RSA Signature Algorithms
318 {MD2WithRSA, "MD2-RSA", oidSignatureMD2WithRSA, RSA, crypto.Hash(0) /* no value for MD2 */}
    [all...]
  /prebuilts/go/linux-x86/src/crypto/x509/
x509.go 18 "crypto/rsa"
50 // Supported key types include RSA, DSA, and ECDSA. Unknown key
53 // On success, pub will be of type *rsa.PublicKey, *dsa.PublicKey,
71 case *rsa.PublicKey:
97 return nil, pkix.AlgorithmIdentifier{}, errors.New("x509: only RSA and ECDSA public keys supported")
216 RSA
222 RSA: "RSA",
240 // RFC 3279 2.2.1 RSA Signature Algorithms
318 {MD2WithRSA, "MD2-RSA", oidSignatureMD2WithRSA, RSA, crypto.Hash(0) /* no value for MD2 */}
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/
infinite_recursion.py 619 ('rsa', POINTER(rsa_st)),
    [all...]
  /external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/net/ssl/
SSLSocketTest.java 178 // note the rare usage of non-RSA keys
180 .keyAlgorithms("RSA", "DSA", "EC", "EC_RSA")
181 .aliasPrefix("rsa-dsa-ec")
    [all...]
  /external/python/cpython2/Lib/lib2to3/tests/data/
infinite_recursion.py 619 ('rsa', POINTER(rsa_st)),
    [all...]
  /external/python/cpython3/Lib/lib2to3/tests/data/
infinite_recursion.py 619 ('rsa', POINTER(rsa_st)),
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
infinite_recursion.py 619 ('rsa', POINTER(rsa_st)),
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
infinite_recursion.py 619 ('rsa', POINTER(rsa_st)),
    [all...]
  /prebuilts/misc/common/nimbus-jose-jwt/
nimbus-jose-jwt-4.33.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/apkzlib/3.2.0-alpha16/
apkzlib-3.2.0-alpha16.jar 
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-cloudfront/1.11.18/
aws-java-sdk-cloudfront-1.11.18.jar 
  /prebuilts/jdk/jdk8/darwin-x86/jre/lib/
jsse.jar 
  /prebuilts/jdk/jdk8/linux-x86/jre/lib/
jsse.jar 
  /prebuilts/tools/common/m2/repository/org/bitbucket/b_c/jose4j/0.5.0/
jose4j-0.5.0.jar 

Completed in 799 milliseconds

1 2 3 4