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
| import secrets from Crypto.PublicKey import RSA
DEATH_CAUSES = [ 'a fever', 'dysentery', 'measles', 'cholera', 'typhoid', 'exhaustion', 'a snakebite', 'a broken leg', 'a broken arm', 'drowning', ]
def run_ot(key, msg0, msg1): ''' https://en.wikipedia.org/wiki/Oblivious_transfer#1–2_oblivious_transfer ''' x0 = secrets.randbelow(key.n) x1 = secrets.randbelow(key.n) print(f'n: {key.n}') print(f'e: {key.e}') print(f'x0: {x0}') print(f'x1: {x1}') v = int(input('v: ')) assert 0 <= v < key.n, 'invalid value' k0 = pow(v - x0, key.d, key.n) k1 = pow(v - x1, key.d, key.n) m0 = int.from_bytes(msg0.encode(), 'big') m1 = int.from_bytes(msg1.encode(), 'big') c0 = (m0 + k0) % key.n c1 = (m1 + k1) % key.n print(f'c0: {c0}') print(f'c1: {c1}')
if __name__ == '__main__': with open('flag.txt') as f: flag = f.read().strip()
print('=== CHOOSE YOUR OWN ADVENTURE: Vorpal Sword Edition ===') print('you enter a cave.')
for _ in range(64): print('the tunnel forks ahead. do you take the left or right path?') key = RSA.generate(1024) msgs = [None, None] page = secrets.randbits(32) live = f'you continue walking. turn to page {page}.' die = f'you die of {secrets.choice(DEATH_CAUSES)}.' msgs = (live, die) if secrets.randbits(1) else (die, live) run_ot(key, *msgs) page_guess = int(input('turn to page: ')) if page_guess != page: exit()
print(f'you find a chest containing {flag}')
|