| SignDocFieldgetSeedValueDigestMethod Method |
Get a DigestMethod value from the seed value dictionary.
DigestMethod values in the seed value dictionary restrict the
hash algorithms available for signing.
Note that DigestMethod values are different from the message
digest algorithms returned by
de.softpro.doc.SignDocVerificationResult.getDigestAlgorithm():
| DigestMethod | getDigestAlgorithm() | DetachedHashAlgorithm |
|---|
| n/a | "MD5" | n/a |
| "RIPEMD160" | "RIPEMD-160" | dha_ripemd160 |
| "SHA1" | "SHA-1" | dha_sha1 |
| "SHA256" | "SHA-256" | dha_sha256 |
| "SHA384" | "SHA-384" | dha_sha384 |
| "SHA512" | "SHA-512" | dha_sha512 |
Namespace: de.softpro.signdocsdkAssembly: SPSignDoc_4.1_DotNetLibd (in SPSignDoc_4.1_DotNetLibd.dll) Version: 1.0.5882.21462
Syntaxpublic string getSeedValueDigestMethod(
int index
)
Public Function getSeedValueDigestMethod (
index As Integer
) As String
public:
String^ getSeedValueDigestMethod(
int index
)
member getSeedValueDigestMethod :
index : int -> string
Parameters
- index
- Type: SystemInt32
0-based index of the DigestMethod value.
Return Value
Type:
String The selected DigestMethod value or an empty string if the index
is out of range.
See Also