Enum FinMessageBankSignature
Used to indicate the result of processing the bank signature of the parsed response message.
public enum FinMessageBankSignature
Fields
BankKeyNotFound = 4Response message was signed but the required bank signature key could not be found. This will also throw a FinSecurityException with FinSecurityExceptionCode SignatureVerifyFailure.
DummySignature = 6The response message contained just a dummy signature that was not verified. This is often the case when using PIN/TAN security.
None = 1Response message was not signed at all.
Null = 0Response message was not processed, yet.
TentativelyVerified = 3Response message was signed and successfully verified with the bank signature key from a HIISA segment of the very same message.
Verified = 2Response message was signed and successfully verified with the correct bank key from the security media.
VerifyFailed = 5Response message was signed but the signture failed verification with the bank key. This will also throw a FinSecurityException with FinSecurityExceptionCode SignatureVerifyFailure.