Uses of Class
net.jsign.DigestAlgorithm
-
Packages that use DigestAlgorithm Package Description net.jsign net.jsign.mscab net.jsign.msi net.jsign.pe net.jsign.timestamp -
-
Uses of DigestAlgorithm in net.jsign
Methods in net.jsign that return DigestAlgorithm Modifier and Type Method Description static DigestAlgorithmDigestAlgorithm. getDefault()Return the default algorithm (currently SHA-256, SHA-1 has been deprecated since January 1st 2016).static DigestAlgorithmDigestAlgorithm. of(String name)Parse the specified value and returns the corresponding digest algorithm.static DigestAlgorithmDigestAlgorithm. of(ASN1ObjectIdentifier oid)Return the algorithm matching the specified object identifier.static DigestAlgorithmDigestAlgorithm. valueOf(String name)Returns the enum constant of this type with the specified name.static DigestAlgorithm[]DigestAlgorithm. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in net.jsign with parameters of type DigestAlgorithm Modifier and Type Method Description ASN1ObjectSignable. createIndirectData(DigestAlgorithm digestAlgorithm)Creates the SpcIndirectDataContent structure containing the digest of the file.AuthenticodeSignerAuthenticodeSigner. withDigestAlgorithm(DigestAlgorithm algorithm)Set the digest algorithm to use (SHA-256 by default)net.jsign.PESignerPESigner. withDigestAlgorithm(DigestAlgorithm algorithm)Deprecated.Set the digest algorithm to use (SHA-256 by default) -
Uses of DigestAlgorithm in net.jsign.mscab
Methods in net.jsign.mscab with parameters of type DigestAlgorithm Modifier and Type Method Description ASN1ObjectMSCabinetFile. createIndirectData(DigestAlgorithm digestAlgorithm) -
Uses of DigestAlgorithm in net.jsign.msi
Methods in net.jsign.msi with parameters of type DigestAlgorithm Modifier and Type Method Description ASN1ObjectMSIFile. createIndirectData(DigestAlgorithm digestAlgorithm) -
Uses of DigestAlgorithm in net.jsign.pe
Methods in net.jsign.pe with parameters of type DigestAlgorithm Modifier and Type Method Description byte[]PEFile. computeDigest(DigestAlgorithm algorithm)Compute the checksum of the file using the specified digest algorithm.ASN1ObjectPEFile. createIndirectData(DigestAlgorithm digestAlgorithm) -
Uses of DigestAlgorithm in net.jsign.timestamp
Methods in net.jsign.timestamp with parameters of type DigestAlgorithm Modifier and Type Method Description CMSSignedDataTimestamper. timestamp(DigestAlgorithm algo, CMSSignedData sigData)Timestamp the specified signature.
-