Uses of Class
org.xipki.security.HashAlgo
-
Packages that use HashAlgo Package Description org.xipki.security org.xipki.security.pkcs11 org.xipki.security.util -
-
Uses of HashAlgo in org.xipki.security
Methods in org.xipki.security that return HashAlgo Modifier and Type Method Description HashAlgoIssuerHash. getHashAlgo()HashAlgoSignAlgo. getHashAlgo()HashAlgoSignerConf. getHashAlgo()static HashAlgoHashAlgo. getInstance(String nameOrOid)static HashAlgoHashAlgo. getInstance(org.bouncycastle.asn1.ASN1ObjectIdentifier oid)static HashAlgoHashAlgo. getInstance(org.bouncycastle.asn1.x509.AlgorithmIdentifier id)static HashAlgoHashAlgo. getInstanceForEncoded(byte[] encoded)static HashAlgoHashAlgo. getInstanceForEncoded(byte[] encoded, int offset, int len)static HashAlgoHashAlgo. valueOf(String name)Returns the enum constant of this type with the specified name.static HashAlgo[]HashAlgo. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.xipki.security with parameters of type HashAlgo Modifier and Type Method Description static SignAlgoSignAlgo. getInstance(Key key, HashAlgo hashAlgo, SignatureAlgoControl algoControl)booleanIssuerHash. match(HashAlgo hashAlgo, byte[] issuerNameHash, byte[] issuerKeyHash)Constructors in org.xipki.security with parameters of type HashAlgo Constructor Description IssuerHash(HashAlgo hashAlgo, byte[] issuerNameHash, byte[] issuerKeyHash)IssuerHash(HashAlgo hashAlgo, X509Cert issuerCert)SignerConf(String confWithoutAlgo, HashAlgo hashAlgo, SignatureAlgoControl signatureAlgoControl) -
Uses of HashAlgo in org.xipki.security.pkcs11
Constructors in org.xipki.security.pkcs11 with parameters of type HashAlgo Constructor Description P11RSAPkcsPssParams(HashAlgo hashAlgo) -
Uses of HashAlgo in org.xipki.security.util
Methods in org.xipki.security.util with parameters of type HashAlgo Modifier and Type Method Description static byte[]PKCS1Util. EMSA_PKCS1_v1_5_encoding(byte[] hashValue, int modulusBigLength, HashAlgo hashAlgo)static booleanPKCS1Util. EMSA_PSS_DECODE(HashAlgo mgfDigest, byte[] mHash, byte[] EM, int sLen, int modulusBitLength)The decoding operation EMSA-PSS-Decode recovers the message hash from an encoded messageEMand compares it to the hash ofM.static byte[]PKCS1Util. EMSA_PSS_ENCODE(HashAlgo contentDigest, byte[] hashValue, HashAlgo mgfDigest, int saltLen, int modulusBitLength, SecureRandom random)static byte[]PKCS1Util. getDigestPkcsPrefix(HashAlgo hashAlgo)static byte[]PKCS1Util. RSAES_OAEP_DECODE(byte[] EM, int modulusBigLength, HashAlgo hashAlgo)static byte[]PKCS1Util. RSAES_OAEP_ENCODE(byte[] M, int modulusBigLength, HashAlgo hashAlgo, SecureRandom random)
-