crypto/tapping

This commit is contained in:
Oystein Kristoffer Tveit 2024-09-03 00:04:53 +02:00
parent b16afe6213
commit ab4ae425a7
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
2 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1 @@
.--. .. -.-. --- -.-. - ..-. { -- ----- .-. ... ...-- -.-. ----- -.. ...-- .---- ... ..-. ..- -. ...-- ----. ----- ..--- ----- .---- ----. ..... .---- ----. }

54
crypto/tapping/solve.py Executable file
View File

@ -0,0 +1,54 @@
#!/usr/bin/env python
MORSE_MAP = {
'.-': 'A',
'-...': 'B',
'-.-.': 'C',
'-..': 'D',
'.': 'E',
'..-.': 'F',
'--.': 'G',
'....': 'H',
'..': 'I',
'.---': 'J',
'-.-': 'K',
'.-..': 'L',
'--': 'M',
'-.': 'N',
'---': 'O',
'.--.': 'P',
'--.-': 'Q',
'.-.': 'R',
'...': 'S',
'-': 'T',
'..-': 'U',
'...-': 'V',
'.--': 'W',
'-..-': 'X',
'-.--': 'Y',
'--..': 'Z',
'-----': '0',
'.----': '1',
'..---': '2',
'...--': '3',
'....-': '4',
'.....': '5',
'-....': '6',
'--...': '7',
'---..': '8',
'----.': '9',
'{': '{',
'}': '}',
}
with open('output.txt', 'r') as f:
content = f.read().strip()
result = ''
for word in content.split(' '):
result += MORSE_MAP.get(word, '?')
# PICO -> pico
result = result[:4].lower() + result[4:]
print(result)