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 DigestAlgorithm
DigestAlgorithm. getDefault()
Return the default algorithm (currently SHA-256, SHA-1 has been deprecated since January 1st 2016).static DigestAlgorithm
DigestAlgorithm. of(String name)
Parse the specified value and returns the corresponding digest algorithm.static DigestAlgorithm
DigestAlgorithm. of(ASN1ObjectIdentifier oid)
Return the algorithm matching the specified object identifier.static DigestAlgorithm
DigestAlgorithm. 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 ASN1Object
Signable. createIndirectData(DigestAlgorithm digestAlgorithm)
Creates the SpcIndirectDataContent structure containing the digest of the file.AuthenticodeSigner
AuthenticodeSigner. withDigestAlgorithm(DigestAlgorithm algorithm)
Set the digest algorithm to use (SHA-256 by default)net.jsign.PESigner
PESigner. 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 ASN1Object
MSCabinetFile. 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 ASN1Object
MSIFile. 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.ASN1Object
PEFile. 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 CMSSignedData
Timestamper. timestamp(DigestAlgorithm algo, CMSSignedData sigData)
Timestamp the specified signature.
-