Searched refs:mgf1_spec (Results 1 – 1 of 1) sorted by relevance
/external/python/cryptography/docs/development/custom-vectors/rsa-oaep-sha2/ |
D | VerifyRSAOAEPSHA2.java | 248 MGF1ParameterSpec mgf1_spec = getMGF1ParameterSpec(m_mgf1_hash); in VerifyRSAOAEPSHA2() local 249 AlgorithmParameterSpec algo_param_spec = getAlgorithmParameterSpec(m_alg_hash, mgf1_spec); in VerifyRSAOAEPSHA2() 316 …e AlgorithmParameterSpec getAlgorithmParameterSpec(SHAHash alg_hash, MGF1ParameterSpec mgf1_spec) { in getAlgorithmParameterSpec() argument 323 … oaep_spec = new OAEPParameterSpec("SHA1", "MGF1", mgf1_spec, PSource.PSpecified.DEFAULT); in getAlgorithmParameterSpec() 327 … oaep_spec = new OAEPParameterSpec("SHA-224", "MGF1", mgf1_spec, PSource.PSpecified.DEFAULT); in getAlgorithmParameterSpec() 331 … oaep_spec = new OAEPParameterSpec("SHA-256", "MGF1", mgf1_spec, PSource.PSpecified.DEFAULT); in getAlgorithmParameterSpec() 335 … oaep_spec = new OAEPParameterSpec("SHA-384", "MGF1", mgf1_spec, PSource.PSpecified.DEFAULT); in getAlgorithmParameterSpec() 339 … oaep_spec = new OAEPParameterSpec("SHA-512", "MGF1", mgf1_spec, PSource.PSpecified.DEFAULT); in getAlgorithmParameterSpec()
|