-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathsecurity.py
185 lines (153 loc) · 6.02 KB
/
security.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
import datetime
import random
from fints.exceptions import FinTSError
from .formals import (
AlgorithmParameterIVName, AlgorithmParameterName, CompressionFunction,
DateTimeType, EncryptionAlgorithm, EncryptionAlgorithmCoded,
HashAlgorithm, IdentifiedRole, KeyName, KeyType, OperationMode,
SecurityApplicationArea, SecurityDateTime,
SecurityIdentificationDetails, SecurityMethod, SecurityProfile,
SecurityRole, SignatureAlgorithm, UsageEncryption, UserDefinedSignature,
)
from .message import FinTSMessage
from .segments.message import HNSHA2, HNSHK4, HNVSD1, HNVSK3
from .types import SegmentSequence
class EncryptionMechanism:
def encrypt(self, message: FinTSMessage):
raise NotImplemented()
def decrypt(self, message: FinTSMessage):
raise NotImplemented()
class AuthenticationMechanism:
def sign_prepare(self, message: FinTSMessage):
raise NotImplemented()
def sign_commit(self, message: FinTSMessage):
raise NotImplemented()
def verify(self, message: FinTSMessage):
raise NotImplemented()
class PinTanDummyEncryptionMechanism(EncryptionMechanism):
def __init__(self, security_method_version=1):
super().__init__()
self.security_method_version = security_method_version
def encrypt(self, message: FinTSMessage):
assert message.segments[0].header.type == 'HNHBK'
assert message.segments[-1].header.type == 'HNHBS'
plain_segments = message.segments[1:-1]
del message.segments[1:-1]
_now = datetime.datetime.now()
message.segments.insert(
1,
HNVSK3(
security_profile=SecurityProfile(SecurityMethod.PIN, self.security_method_version),
security_function='998',
security_role=SecurityRole.ISS,
security_identification_details=SecurityIdentificationDetails(
IdentifiedRole.MS,
identifier=message.dialog.client.system_id,
),
security_datetime=SecurityDateTime(
DateTimeType.STS,
_now.date(),
_now.time(),
),
encryption_algorithm=EncryptionAlgorithm(
UsageEncryption.OSY,
OperationMode.CBC,
EncryptionAlgorithmCoded.TWOKEY3DES,
b'\x00'*8,
AlgorithmParameterName.KYE,
AlgorithmParameterIVName.IVC,
),
key_name=KeyName(
message.dialog.client.bank_identifier,
message.dialog.client.user_id,
KeyType.V,
0,
0,
),
compression_function=CompressionFunction.NULL,
)
)
message.segments[1].header.number = 998
message.segments.insert(
2,
HNVSD1(
data=SegmentSequence(segments=plain_segments)
)
)
message.segments[2].header.number = 999
def decrypt(self, message: FinTSMessage):
pass
class PinTanAuthenticationMechanism(AuthenticationMechanism):
def __init__(self, pin):
self.pin = pin
self.pending_signature = None
self.security_function = None
def sign_prepare(self, message: FinTSMessage):
_now = datetime.datetime.now()
rand = random.SystemRandom()
self.pending_signature = HNSHK4(
security_profile=SecurityProfile(SecurityMethod.PIN, 1),
security_function=self.security_function,
security_reference=rand.randint(1000000, 9999999),
security_application_area=SecurityApplicationArea.SHM,
security_role=SecurityRole.ISS,
security_identification_details=SecurityIdentificationDetails(
IdentifiedRole.MS,
identifier=message.dialog.client.system_id,
),
security_reference_number=1, # FIXME
security_datetime=SecurityDateTime(
DateTimeType.STS,
_now.date(),
_now.time(),
),
hash_algorithm=HashAlgorithm(
usage_hash='1',
hash_algorithm='999',
algorithm_parameter_name='1',
),
signature_algorithm=SignatureAlgorithm(
usage_signature='6',
signature_algorithm='10',
operation_mode='16',
),
key_name=KeyName(
message.dialog.client.bank_identifier,
message.dialog.client.user_id,
KeyType.S,
0,
0,
),
)
message += self.pending_signature
def _get_tan(self):
return None
def sign_commit(self, message: FinTSMessage):
if not self.pending_signature:
raise FinTSError("No signature is pending")
if self.pending_signature not in message.segments:
raise FinTSError("Cannot sign a message that was not prepared")
signature = HNSHA2(
security_reference=self.pending_signature.security_reference,
user_defined_signature=UserDefinedSignature(
pin=self.pin,
tan=self._get_tan(),
),
)
self.pending_signature = None
message += signature
def verify(self, message: FinTSMessage):
pass
class PinTanOneStepAuthenticationMechanism(PinTanAuthenticationMechanism):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.security_function = '999'
class PinTanTwoStepAuthenticationMechanism(PinTanAuthenticationMechanism):
def __init__(self, client, security_function, *args, **kwargs):
super().__init__(*args, **kwargs)
self.client = client
self.security_function = security_function
def _get_tan(self):
retval = self.client._pending_tan
self.client._pending_tan = None
return retval