Searched refs:rsaEncryption (Results 1 - 18 of 18) sorted by relevance

/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DDefaultCMSSignatureEncryptionAlgorithmFinder.java49 return new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE);
H A DDefaultCMSSignatureAlgorithmNameGenerator.java79 encryptionAlgs.put(PKCSObjectIdentifiers.rsaEncryption, "RSA");
H A DCMSSignedGenerator.java64 public static final String ENCRYPTION_RSA = PKCSObjectIdentifiers.rsaEncryption.getId();
H A DCMSSignedHelper.java104 encryptionAlgs.put(PKCSObjectIdentifiers.rsaEncryption.getId(), "RSA");
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
H A DRSAUtil.java21 PKCSObjectIdentifiers.rsaEncryption,
H A DBCRSAPrivateKey.java82 return KeyUtil.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new org.bouncycastle.asn1.pkcs.RSAPrivateKey(getModulus(), ZERO, getPrivateExponent(), ZERO, ZERO, ZERO, ZERO, ZERO));
H A DBCRSAPublicKey.java93 return KeyUtil.getEncodedSubjectPublicKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new org.bouncycastle.asn1.pkcs.RSAPublicKey(getModulus(), getPublicExponent()));
H A DBCRSAPrivateCrtKey.java131 return KeyUtil.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new RSAPrivateKey(getModulus(), getPublicExponent(), getPrivateExponent(), getPrimeP(), getPrimeQ(), getPrimeExponentP(), getPrimeExponentQ(), getCrtCoefficient()));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/
H A DRSA.java78 registerOid(provider, PKCSObjectIdentifiers.rsaEncryption, "RSA", keyFact);
84 // registerOidAlgorithmParameters(provider, PKCSObjectIdentifiers.rsaEncryption, "RSA");
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCERSAPrivateKey.java82 return KeyUtil.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new org.bouncycastle.asn1.pkcs.RSAPrivateKey(getModulus(), ZERO, getPrivateExponent(), ZERO, ZERO, ZERO, ZERO, ZERO));
H A DJCERSAPublicKey.java95 return KeyUtil.getEncodedSubjectPublicKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new RSAPublicKeyStructure(getModulus(), getPublicExponent()));
H A DJCERSAPrivateCrtKey.java131 return KeyUtil.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new RSAPrivateKey(getModulus(), getPublicExponent(), getPrivateExponent(), getPrimeP(), getPrimeQ(), getPrimeExponentP(), getPrimeExponentQ(), getCrtCoefficient()));
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
H A DDefaultSignatureAlgorithmIdentifierFinder.java33 private static final ASN1ObjectIdentifier ENCRYPTION_RSA = PKCSObjectIdentifiers.rsaEncryption;
227 encAlgId = new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
H A DPKCSObjectIdentifiers.java12 static final ASN1ObjectIdentifier rsaEncryption = pkcs_1.branch("1"); field in interface:PKCSObjectIdentifiers
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/util/
H A DPrivateKeyFactory.java87 if (algId.getAlgorithm().equals(PKCSObjectIdentifiers.rsaEncryption))
H A DPublicKeyFactory.java94 if (algId.getAlgorithm().equals(PKCSObjectIdentifiers.rsaEncryption)
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
H A DOperatorHelper.java82 asymmetricWrapperAlgNames.put(PKCSObjectIdentifiers.rsaEncryption, "RSA/ECB/PKCS1Padding");
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
H A DPKCS10CertificationRequest.java186 keyAlgorithms.put(PKCSObjectIdentifiers.rsaEncryption, "RSA");

Completed in 130 milliseconds