| SignDocVerificationResultgetBiometricData Method |
Get the biometric data of the field.
Namespace: de.softpro.signdocsdkAssembly: SPSignDoc_4.1_DotNetLibd (in SPSignDoc_4.1_DotNetLibd.dll) Version: 1.0.5882.21462
Syntaxpublic byte[] getBiometricData(
byte[] key,
string keyPath,
byte[] passphrase
)
Public Function getBiometricData (
key As Byte(),
keyPath As String,
passphrase As Byte()
) As Byte()
public:
array<unsigned char>^ getBiometricData(
array<unsigned char>^ key,
String^ keyPath,
array<unsigned char>^ passphrase
)
member getBiometricData :
key : byte[] *
keyPath : string *
passphrase : byte[] -> byte[]
Parameters
- key
- Type: SystemByte
The key (must be null if @a aKeyPath is not
null). - keyPath
- Type: SystemString
Pathname of the file containing the key (must
be null if @a aKey is not null). - passphrase
- Type: SystemByte
Passphrase for decrypting the key contained in
the file named by @a aKeyPath. If this argument
is null or the empty string, it will
be assumed that the key file is not protected
by a passphrase. @a aPassphrase is used only
when reading the key from a file for
@ref SignDocSignatureParameters.be_rsa.
The passphrase should contain ASCII characters
only.
Return Value
Type:
Byte The decrypted biometric data.
Remarks Don't forget to overwrite the biometric data in memory after use!
See Also