-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmac.py
37 lines (26 loc) · 950 Bytes
/
mac.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
#!/usr/bin/env python3
from hashlib import sha256
# Pretend that you don't know anything about the secret key apart from its length.
secret_key = b'VERY_SECRET_KEY_'
secret_key_len = len(secret_key)
def authenticate(message: bytes) -> bytes:
"""Authenticate a given message."""
global secret_key
h = sha256()
h.update(secret_key)
h.update(message)
return h.digest()
def verify(message: bytes, tag: bytes) -> bool:
"""Verify a given message and authentication tag."""
t = authenticate(message)
return t == tag
def main():
print(f'length of secret key: {secret_key_len} bytes')
message = b'This is a test message.'
tag = authenticate(message)
print(f'message = {message} ({len(message)} bytes)')
print(f'tag = {tag.hex()}')
assert tag.hex() == 'a587c96990b5d6ea1ba9dbec664bb7aa0df1a7176a2b87a590f87ae9600d2c30'
assert verify(message, tag)
if __name__ == '__main__':
main()