HomeSort by relevance Sort by last modified time
    Searched full:oaep (Results 1 - 25 of 74) sorted by null

1 2 3

  /libcore/ojluni/src/main/java/javax/crypto/spec/
OAEPParameterSpec.java 33 * This class specifies the set of parameters used with OAEP Padding,
40 * RSAES-OAEP-params ::= SEQUENCE {
41 * hashAlgorithm [0] OAEP-PSSDigestAlgorithms DEFAULT sha1,
48 * OAEP-PSSDigestAlgorithms ALGORITHM-IDENTIFIER ::= {
56 * { OID id-mgf1 PARAMETERS OAEP-PSSDigestAlgorithms },
85 * The OAEP parameter set with all default values.
90 * Constructs a parameter set for OAEP padding as defined in
97 * Constructs a parameter set for OAEP padding as defined in
PSource.java 32 * This class specifies the source for encoding input P in OAEP Padding,
51 * Constructs a source of the encoding input P for OAEP
76 * encoding input P in OAEP Padding.
IvParameterSpec.java 33 * e.g., DES in CBC mode and RSA ciphers with OAEP encoding
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
AlgorithmParametersSpi.java 46 public static class OAEP
52 * Return the PKCS#1 ASN.1 structure RSAES-OAEP-params.
98 throw new InvalidParameterSpecException("unknown parameter spec passed to OAEP parameters object.");
107 throw new InvalidParameterSpecException("OAEPParameterSpec required to initialise an OAEP algorithm parameters object");
129 throw new IOException("Not a valid OAEP Parameter encoding.");
133 throw new IOException("Not a valid OAEP Parameter encoding.");
155 return "OAEP Parameters";
CipherSpi.java 92 throw new NoSuchPaddingException("no match on OAEP constructor for digest algorithm: "+ mgfParams.getDigestAlgorithm());
151 engineParams = helper.createAlgorithmParameters("OAEP");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
RSAESOAEPparams.java 110 * RSAES-OAEP-params ::= SEQUENCE {
111 * hashAlgorithm [0] OAEP-PSSDigestAlgorithms DEFAULT sha1,
116 * OAEP-PSSDigestAlgorithms ALGORITHM-IDENTIFIER ::= {
124 * { OID id-mgf1 PARAMETERS OAEP-PSSDigestAlgorithms },
RSASSAPSSparams.java 123 * hashAlgorithm [0] OAEP-PSSDigestAlgorithms DEFAULT sha1,
129 * OAEP-PSSDigestAlgorithms ALGORITHM-IDENTIFIER ::= {
138 * { OID id-mgf1 PARAMETERS OAEP-PSSDigestAlgorithms },
  /libcore/ojluni/src/main/java/java/security/spec/
MGF1ParameterSpec.java 32 * function MGF1 in OAEP Padding and RSA-PSS signature scheme, as
39 * MGF1Parameters ::= OAEP-PSSDigestAlgorthms
43 * OAEP-PSSDigestAlgorithms ALGORITHM-IDENTIFIER ::= {
PSSParameterSpec.java 40 * hashAlgorithm [0] OAEP-PSSDigestAlgorithms DEFAULT sha1,
48 * OAEP-PSSDigestAlgorithms ALGORITHM-IDENTIFIER ::= {
57 * { OID id-mgf1 PARAMETERS OAEP-PSSDigestAlgorithms },
  /libcore/luni/src/test/java/libcore/javax/crypto/spec/
AlgorithmParametersTestOAEP.java 27 super("OAEP", new AlgorithmParameterAsymmetricHelper("RSA"), new OAEPParameterSpec("SHA-1", "MGF1", MGF1ParameterSpec.SHA1, PSource.PSpecified.DEFAULT));
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreRSACipherSpi.java 159 * RSA cipher with OAEP encryption padding. Only SHA-1 based MGF1 is supported as MGF.
261 throw new InvalidAlgorithmParameterException("OAEP parameters required"
265 throw new InvalidAlgorithmParameterException("OAEP parameters required"
280 AlgorithmParameters params = AlgorithmParameters.getInstance("OAEP");
285 "Failed to obtain OAEP AlgorithmParameters", e);
288 "Failed to initialize OAEP AlgorithmParameters with an IV",
  /system/tpm/attestation/common/
crypto_utility_impl.h 90 // Encrypts using RSA-OAEP and the TPM-specific OAEP parameter.
attestation_ca.proto 28 // Key encryption: RSA-OAEP with no custom parameters.
108 // Key encryption: RSA-OAEP with no custom parameters.
118 // Key encryption: RSA-OAEP with no custom parameters.
162 // Key encryption: RSA-OAEP with no custom parameters.
crypto_utility_impl.cc 444 // The custom OAEP parameter as specified in TPM Main Part 1, Section 31.1.1.
455 LOG(ERROR) << __func__ << ": Failed to add OAEP padding: "
465 LOG(ERROR) << __func__ << ": Failed to encrypt OAEP padded input: "
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/
RSA.java 28 provider.addAlgorithm("AlgorithmParameters.OAEP", PREFIX + "AlgorithmParametersSpi$OAEP");
60 // provider.addAlgorithm("Cipher.RSA/OAEP", PREFIX + "CipherSpi$OAEPPadding");
69 // provider.addAlgorithm("Alg.Alias.Cipher.RSA//OAEPPADDING", "RSA/OAEP");
86 // registerOidAlgorithmParameters(provider, PKCSObjectIdentifiers.id_RSAES_OAEP, "OAEP");
  /external/tpm2/generator/
union_selectors.py 111 'TPM_ALG_OAEP': 'oaep',
  /system/keymaster/
rsa_keymaster1_key.cpp 80 LOG_I("Adding KM_PAD_NONE to key authorization, to enable PSS or OAEP software padding", 0);
  /system/tpm/trunks/generator/
union_selectors.py 123 'TPM_ALG_OAEP': 'oaep',
  /prebuilts/go/darwin-x86/src/crypto/rsa/
rsa.go 27 // OAEPOptions is an interface for passing options to OAEP decryption using the
92 // opts must have type *OAEPOptions and OAEP decryption is done.
319 // EncryptOAEP encrypts the given message with RSA-OAEP.
509 // DecryptOAEP decrypts ciphertext using RSA-OAEP.
552 // Asymmetric Encryption Padding (OAEP) as Standardized in PKCS #1
  /prebuilts/go/linux-x86/src/crypto/rsa/
rsa.go 27 // OAEPOptions is an interface for passing options to OAEP decryption using the
92 // opts must have type *OAEPOptions and OAEP decryption is done.
319 // EncryptOAEP encrypts the given message with RSA-OAEP.
509 // DecryptOAEP decrypts ciphertext using RSA-OAEP.
552 // Asymmetric Encryption Padding (OAEP) as Standardized in PKCS #1
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
AlgorithmParametersTest.java 564 * Tests OAEP AlgorithmParameters provider
567 AlgorithmParameters params = AlgorithmParameters.getInstance("OAEP");
569 assertEquals("Algorithm", "OAEP", params.getAlgorithm());
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
AlgorithmParametersTest.java 636 * Tests OAEP AlgorithmParameters provider
639 AlgorithmParameters params = AlgorithmParameters.getInstance("OAEP");
641 assertEquals("Algorithm", "OAEP", params.getAlgorithm());
  /system/tpm/trunks/
session_manager_impl.cc 184 // Label for RSAES-OAEP. Defined in TPM2.0 Part1 Architecture,
tpm_utility.h 108 // to be used. By default keys use OAEP, but can also use TPM_ALG_RSAES.
120 // used. By default it is OAEP, but TPM_ALG_RSAES can be specified.
  /external/boringssl/src/include/openssl/
evp.h 605 /* EVP_PKEY_CTX_set_rsa_oaep_md sets |md| as the digest used in OAEP padding.
611 * OAEP padding. Returns one on success or zero on error. */
626 * label used in OAEP. DANGER: On success, this call takes ownership of |label|
635 * buffer containing the OAEP label (which may be NULL) and returns the length
    [all...]

Completed in 2763 milliseconds

1 2 3