Searched defs:RSA (Results 1 - 10 of 10) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/
H A DRSA.java15 public class RSA class
50 provider.addAlgorithm("Cipher.RSA", PREFIX + "CipherSpi$NoPadding");
52 provider.addAlgorithm("Alg.Alias.Cipher.RSA/RAW", "RSA");
55 // provider.addAlgorithm("Cipher.RSA/PKCS1", PREFIX + "CipherSpi$PKCS1v1_5Padding");
58 // provider.addAlgorithm("Cipher.RSA/1", PREFIX + "CipherSpi$PKCS1v1_5Padding_PrivateOnly");
59 // provider.addAlgorithm("Cipher.RSA/2", PREFIX + "CipherSpi$PKCS1v1_5Padding_PublicOnly");
60 // provider.addAlgorithm("Cipher.RSA/OAEP", PREFIX + "CipherSpi$OAEPPadding");
62 // provider.addAlgorithm("Cipher.RSA/ISO9796-1", PREFIX + "CipherSpi$ISO9796d1Padding");
65 provider.addAlgorithm("Alg.Alias.Cipher.RSA//RA
[all...]
/external/chromium_org/third_party/tlslite/tlslite/utils/
H A DPyCrypto_RSAKey.py1 """PyCrypto RSA implementation."""
10 from Crypto.PublicKey import RSA namespace
15 self.rsa = RSA.construct( (n, e) )
17 self.rsa = RSA.construct( (n, e, d, p, q) )
59 key.rsa = RSA.generate(bits, f)
/external/chromium_org/net/tools/testserver/
H A Dminica.py36 class RSA(object): class in inherits:object
110 KEY = RSA(0x00a71998f2930bfe73d031a87f133d2f378eeeeed52a77e44d0fc9ff6f07ff32cbf3da999de4ed65832afcb0807f98787506539d258a0ce3c2c77967653099a9034a9b115a876c39a8c4e4ed4acd0c64095946fb39eeeb47a0704dbb018acf48c3a1c4b895fc409fb4a340a986b1afc45519ab9eca47c30185c771c64aa5ecf07d,
115 KEY_PEM = '''-----BEGIN RSA PRIVATE KEY-----
129 -----END RSA PRIVATE KEY-----
/external/smack/src/org/xbill/DNS/
H A DIPSECKEYRecord.java23 public static final int RSA = 2; field in class:IPSECKEYRecord.Algorithm
H A DSSHFPRecord.java21 public static final int RSA = 1; field in class:SSHFPRecord.Algorithm
/external/chromium_org/third_party/openssl/openssl/crypto/
H A Dossl_typ.h140 typedef struct rsa_st RSA; typedef in typeref:struct:rsa_st
/external/chromium_org/third_party/openssl/openssl/include/openssl/
H A Dossl_typ.h140 typedef struct rsa_st RSA; typedef in typeref:struct:rsa_st
/external/openssl/crypto/
H A Dossl_typ.h140 typedef struct rsa_st RSA; typedef in typeref:struct:rsa_st
/external/openssl/include/openssl/
H A Dossl_typ.h140 typedef struct rsa_st RSA; typedef in typeref:struct:rsa_st
/external/dropbear/libtomcrypt/
H A Dcrypt.tex121 public key cryptography (via PKCS \#1 RSA, DH or ECCDH), and a plethora of support routines.
172 that for the PRNG needs within the library (\textit{e.g. making a RSA key}). All the developer has to do
331 /* ... Make up the RSA key somehow ... */
343 printf("RSA exported key takes %d bytes\n", x);
351 In the above example if the size of the RSA public key was more than 1024 bytes this function would return an error code
377 /* make a 1024-bit RSA key with the system RNG */
3054 \chapter{RSA Public Key Cryptography}
3057 RSA wrote the PKCS \#1 specifications which detail RSA Public Key Cryptography. In the specifications are
3107 PKCS \#1 RSA Encryptio
[all...]

Completed in 604 milliseconds