Enum FinMessageBankSignature
Used to indicate the result of processing the bank signature of the parsed response message.
Namespace: Subsembly.FinTS
Assembly: Subsembly.FinTS.Core.dll
Syntax
public enum FinMessageBankSignature
Fields
Name | Description |
---|---|
BankKeyNotFound | Response message was signed but the required bank signature key could not be found. This will also throw a FinSecurityException with FinSecurityExceptionCode SignatureVerifyFailure. |
DummySignature | The response message contained just a dummy signature that was not verified. This is often the case when using PIN/TAN security. |
None | Response message was not signed at all. |
Null | Response message was not processed, yet. |
TentativelyVerified | Response message was signed and successfully verified with the bank signature key from a HIISA segment of the very same message. |
Verified | Response message was signed and successfully verified with the correct bank key from the security media. |
VerifyFailed | Response message was signed but the signture failed verification with the bank key. This will also throw a FinSecurityException with FinSecurityExceptionCode SignatureVerifyFailure. |