Home
last modified time | relevance | path

Searched refs:alg_hash (Results 1 – 1 of 1) sorted by relevance

/external/python/cryptography/docs/development/custom-vectors/rsa-oaep-sha2/
DVerifyRSAOAEPSHA2.java243 …VerifyRSAOAEPSHA2(SHAHash mgf1_hash, SHAHash alg_hash, TestVectorData test_data) throws Exception { in VerifyRSAOAEPSHA2() argument
246 m_alg_hash = alg_hash; in VerifyRSAOAEPSHA2()
259 private Cipher getCipher(SHAHash alg_hash) throws GeneralSecurityException { in getCipher() argument
262 switch (alg_hash) { in getCipher()
316 …private AlgorithmParameterSpec getAlgorithmParameterSpec(SHAHash alg_hash, MGF1ParameterSpec mgf1_… in getAlgorithmParameterSpec() argument
320 switch (alg_hash) { in getAlgorithmParameterSpec()
383 for (SHAHash alg_hash : SHAHash.values()) { in main()
385 alg_hash.name().toLowerCase().equals("sha1")) { in main()
389 "-" + alg_hash.name().toLowerCase() + ".txt"; in main()
400 … VerifyRSAOAEPSHA2 verify = new VerifyRSAOAEPSHA2(mgf1_hash, alg_hash, test_data); in main()