Enum FinSecureKeyType
Enumerates the different types of user and bank keys.
public enum FinSecureKeyType
Fields
BankAuthenticationKey = 7The banks authentication key, need in order to verify bank signatures. In FinTS this key is usually designated with the letter 'S'.
BankCipheringKey = 6The banks ciphering key, need in order to encrypt messages. In FinTS this key is usually designated with the letter 'V'.
None = 0The key type was not set.
UserAuthenticationKey = 2The authentication key of the user, needed to create low profile signatures. In FinTS this key is usually designated with the letter 'S'.
UserCipheringKey = 1The ciphering key of the user, needed in order to decrypt messages. In FinTS this key is usually designated with the letter 'V'.
UserSignatureKey = 3The digital signature key of the user, needed for high profile signatures. In FinTS this key is usually designated with the letter 'D'. If not supported or applicable, then the UserAuthenticationKey should be used instead.