2020-09-10 21:32:59 +00:00
import os , sys ; sys . path . append ( os . path . abspath ( os . path . join ( os . path . abspath ( os . path . join ( os . path . dirname ( __file__ ) , ' .. ' ) ) , ' .. ' ) ) )
from komrade import *
from komrade . backend import *
import art
2020-09-11 14:35:47 +00:00
import textwrap as tw
2020-09-10 21:32:59 +00:00
class CLI ( Logger ) :
ROUTES = {
' help ' : ' see help messages ' ,
' register ' : ' register new user ' ,
' login ' : ' log back in '
}
2020-09-12 07:55:23 +00:00
def __init__ ( self , name = ' ' , cmd = ' ' , persona = None ) :
self . name = name
self . cmd = cmd
self . persona = persona
2020-09-10 21:32:59 +00:00
2020-09-11 14:35:47 +00:00
def run ( self , inp = ' ' , name = ' ' ) :
self . name = name
2020-09-10 21:32:59 +00:00
clear_screen ( )
2020-09-11 17:17:21 +00:00
# self.boot()
# self.help()
2020-09-10 21:32:59 +00:00
if inp : self . route ( inp )
while True :
try :
2020-09-11 14:35:47 +00:00
inp = input ( f ' @ { self . name if self . name else " ? " } : ' )
2020-09-10 21:32:59 +00:00
except KeyboardInterrupt :
exit ( )
self . route ( inp )
2020-09-11 14:35:47 +00:00
#await asyncio.sleep(0.5)
2020-09-10 21:32:59 +00:00
def route ( self , inp ) :
inp = inp . strip ( )
if not inp . startswith ( ' / ' ) : return
cmd = inp . split ( ) [ 0 ]
dat = inp [ len ( cmd ) : ] . strip ( )
cmd = cmd [ 1 : ]
if cmd in self . ROUTES and hasattr ( self , cmd ) :
f = getattr ( self , cmd )
return f ( dat )
2020-09-11 14:35:47 +00:00
def boot ( self , indent = 5 ) :
logo = art . text2art ( CLI_TITLE , font = CLI_FONT )
2020-09-11 17:17:21 +00:00
# logo=make_key_discreet_str(logo,chance_redacted=0.1) #.decode()
2020-09-11 14:35:47 +00:00
logo = tw . indent ( logo , ' ' * indent )
scan_print ( logo , max_pause = 0.005 )
2020-09-10 21:32:59 +00:00
def help ( self ) :
print ( )
for cmd , info in self . ROUTES . items ( ) :
print ( f ' / { cmd } : { info } ' )
2020-09-11 14:35:47 +00:00
# print('\n')
2020-09-10 21:32:59 +00:00
print ( ' \n ' )
def intro ( self ) :
self . status ( None , )
2020-09-11 14:35:47 +00:00
def register ( self , dat ) :
self . persona = Persona ( self . name )
self . persona . register ( )
### DIALOGUES
2020-09-10 21:32:59 +00:00
2020-09-11 14:35:47 +00:00
# hello, op?
2020-09-11 17:17:21 +00:00
def status_keymaker_part1 ( self , name ) :
2020-09-11 14:35:47 +00:00
self . status ( None , { ART_OLDPHONE4 + ' \n ' , True } , 3 ) #,scan=False,width=None,pause=None,clear=None)
2020-09-10 21:32:59 +00:00
nm = name if name else ' ? '
self . status (
2020-09-11 14:35:47 +00:00
f ' \n \n \n @ { nm } : Uh yes hello, Operator? I would like to join Komrade, the socialist network. Could you patch me through? ' , clear = False )
2020-09-10 21:32:59 +00:00
while not name :
name = self . status ( ( ' name ' , ' @TheTelephone: Of course, Komrade...? \n @ ' ) ) . get ( ' vals ' ) . get ( ' name ' ) . strip ( )
print ( )
self . status (
f ' @TheTelephone: Of course, Komrade @ { name } . A fine name. ' ,
''' @TheTelephone: However, I ' m just the local operator who lives on your device; my only job is to communicate with the remote operator securely. ''' ,
''' Komrade @TheOperator lives on the deep web. She ' s the one you want to speak with. ''' ,
2020-09-11 14:35:47 +00:00
None , { ART_OLDPHONE4 } , f ''' @ { name } : Hm, ok. Well, could you patch me through to the remote operator then? ''' ,
2020-09-10 21:32:59 +00:00
2020-09-12 07:55:23 +00:00
f ''' @ { TELEPHONE_NAME } : I could, but it ' s not safe yet. Your information could be exposed. You need to cut your encryption keys first. ''' ,
2020-09-10 21:32:59 +00:00
f ' @ { name } : Fine, but how do I do that? ' ,
f ' @ { TELEPHONE_NAME } : Visit the Keymaker. ' ,
clear = False , pause = True )
### KEYMAKER
2020-09-11 14:35:47 +00:00
self . status ( None , { tw . indent ( ART_KEY , ' ' * 5 ) + ' \n ' , True } , 3 ) #,clear=False,indent=10,pause=False)
2020-09-10 21:32:59 +00:00
# convo
2020-09-11 14:35:47 +00:00
self . status (
f ' \n @ { name } : Hello, Komrade @Keymaker? I would like help forging a new set of keys. ' ,
2020-09-10 21:32:59 +00:00
f ' @Keymaker: Of course, Komrade @ { name } . ' ,
2020-09-11 14:35:47 +00:00
)
2020-09-10 21:32:59 +00:00
2020-09-11 17:17:21 +00:00
self . status (
2020-09-12 07:55:23 +00:00
' I will cut for you two matching keys, part of an " asymmetric " pair. ' ,
2020-09-11 17:17:21 +00:00
' Please, watch me work. ' ,
2020-09-11 14:35:47 +00:00
2020-09-11 17:17:21 +00:00
None , { tw . indent ( ART_KEY , ' ' * 5 ) + ' \n ' } ,
2020-09-11 14:35:47 +00:00
2020-09-11 17:17:21 +00:00
' I use a high-level cryptographic function from Themis, a well-respected open-source cryptography library. ' ,
' I use the iron-clad Elliptic Curve algorthm to generate the asymmetric keypair. ' ,
' > GenerateKeyPair(KEY_PAIR_TYPE.EC) ' ,
3
)
self . status (
None ,
{ ART_KEY_PAIR , True }
) #,clear=False,indent=10,pause=False)
2020-09-12 07:55:23 +00:00
return name
def status_keymaker_part2 ( self , name , passphrase , pubkey , privkey , hasher , persona ) :
from getpass import getpass
# gen what we need
uri_id = pubkey . data_b64
qr_str = get_qr_str ( uri_id )
qr_path = os . path . join ( PATH_QRCODES , name + ' .png ' )
# what are pub/priv?
# self.status(
# None,{ART_KEY_PAIR},
# 'A matching set of keys have been generated.',
# None,{ART_KEY_PAIR2A+'\nA matching set of keys have been generated.'+'\n'},
# 'First, I have made a "public key" which you can share with anyone:',
# f'(1) {pubkey.data_b64.decode()}',
# 'This key is a randomly-generated binary string, which acts as your "address" on Komrade.',
# 'With it, someone can write you an encrypted message which only you can read.'
# )
# self.status(
# None,{ART_KEY_PAIR2A},
# f'You can share your public key by copy/pasting it to them over a secure channel (e.g. Signal).',
# 'Or, you can share it as a QR code, especially IRL:',
# {qr_str+'\n\n',True,5},
# f'\n\n(If registration is successful, this QR code be saved as an image to your device at: {qr_path}.)'
# )
2020-09-10 21:32:59 +00:00
2020-09-11 14:35:47 +00:00
# private keys
2020-09-11 17:17:21 +00:00
self . status ( None ,
{ ART_KEY_PAIR2B } ,
2020-09-12 07:55:23 +00:00
' Second, I have cut a matching " private key " . ' ,
" It ' s too dangerous to show in full, so here it is 66 % r edacted: " ,
f ' (2) { make_key_discreet ( privkey . data_b64 , 0.3 ) } ' ,
' With it, you can decrypt and read any message sent to you via your public key. ' ,
' You can also encrypt and send messages to other people whose public keys you have. ' ,
2020-09-11 17:17:21 +00:00
)
2020-09-12 07:55:23 +00:00
# private keys
2020-09-11 17:17:21 +00:00
self . status ( None ,
2020-09-12 07:55:23 +00:00
{ CUBEKEY } ,
' So if someone were to steal your private key, they could read your mail and forge your signature. '
' You you should never, ever give your private key to anyone. ' ,
' In fact, this key is so dangerous that we need to lock it away immediately. ' ,
" We ' ll even throw away the key we use to lock this private key with! " ,
" How? By regenerating it each time from your password. " ,
2020-09-10 21:32:59 +00:00
)
2020-09-11 14:35:47 +00:00
if not passphrase :
2020-09-11 17:17:21 +00:00
from getpass import getpass
2020-09-11 14:35:47 +00:00
self . status (
' And it looks like you haven \' t yet chosen a password. ' ,
3 , " Don ' t tell it to me! Never tell it to anyone. " ,
" Ideally, don ' t even save it on your computer; just remember it, or write it down on paper. " ,
" Instead, whisper it to Komrade @Hasher, who scrambles information ' 1-way ' , like a blender. " ,
)
2020-09-11 17:17:21 +00:00
2020-09-11 14:35:47 +00:00
res = self . status ( None ,
2020-09-11 17:17:21 +00:00
{ indent_str ( ART_FROG_BLENDER , 10 ) , True } ,
2020-09-11 14:35:47 +00:00
" @Keymaker: Go ahead, try it. Type anything to @Hasher. " ,
( ' str_to_hash ' , f ' @ { name } : ' , input )
)
str_to_hash = res . get ( ' vals ' ) . get ( ' str_to_hash ' )
2020-09-11 17:17:21 +00:00
hashed_str1 = hasher ( str_to_hash . encode ( ) )
2020-09-11 14:35:47 +00:00
res = self . status (
2020-09-11 17:17:21 +00:00
' @Hasher: ' + hashed_str1
2020-09-11 14:35:47 +00:00
)
res = self . status (
2020-09-11 17:17:21 +00:00
' @Keymaker: Whatever you typed, there \' s no way to reconstruct it from that garbled mess. ' ,
' But whatever you typed will always produce the *same* garbled mess. ' ,
( ' str_to_hash ' , f ' Try typing the exact same thing over again: \n @ { name } : ' , input )
2020-09-11 14:35:47 +00:00
)
str_to_hash = res . get ( ' vals ' ) . get ( ' str_to_hash ' )
2020-09-11 17:17:21 +00:00
hashed_str2 = hasher ( str_to_hash . encode ( ) )
2020-09-11 14:35:47 +00:00
res = self . status (
2020-09-11 17:17:21 +00:00
' @Hasher: ' + hashed_str2
2020-09-11 14:35:47 +00:00
)
2020-09-11 17:17:21 +00:00
if hashed_str1 == hashed_str2 :
self . status ( ' See how the hashed values are also exactly the same? ' )
else :
self . status ( ' See how the hashed values have also changed? ' )
2020-09-11 14:35:47 +00:00
res = self . status (
2020-09-11 17:17:21 +00:00
( ' str_to_hash ' , f ' Now try typing something just a little bit different: \n @ { name } : ' , input )
2020-09-11 14:35:47 +00:00
)
str_to_hash = res . get ( ' vals ' ) . get ( ' str_to_hash ' )
2020-09-11 17:17:21 +00:00
hashed_str3 = hasher ( str_to_hash . encode ( ) )
2020-09-11 14:35:47 +00:00
res = self . status (
2020-09-11 17:17:21 +00:00
' @Hasher: ' + hashed_str3
2020-09-11 14:35:47 +00:00
)
2020-09-11 17:17:21 +00:00
if hashed_str2 == hashed_str3 :
self . status ( ' See how the hashed values are also the same? ' )
2020-09-11 14:35:47 +00:00
else :
2020-09-11 17:17:21 +00:00
self . status ( ' See how the hashed values have also changed? ' )
2020-09-11 14:35:47 +00:00
2020-09-11 17:17:21 +00:00
self . status (
None , { indent_str ( ART_FROG_BLENDER , 10 ) } ,
' @Keymaker: Behind the scenes, @Hasher is using the SHA-256 hashing function, which was designed by the NSA. ' ,
' But @Hasher also adds a secret " salt " to the recipe, as it \' s called. ' ,
' To whatever you type in, @Hasher adds a secret phrase: another random string of characters which never changes. ' ,
" By doing so, the hash output is \" salted \" : made even more idiosyncratic to outside observers. " ,
)
self . status (
None , { indent_str ( ART_FROG_BLENDER , 10 ) } ,
f " I ' ve taken the liberty of generating a random secret for your device, which I show here mostly redacted: " ,
make_key_discreet_str ( persona . crypt_keys . secret . decode ( ) , 0.25 ) ,
' The full version of this secret is silently added to every input you type into @Hasher. ' ,
" I ' ve saved this secret phrase to a hidden location on your device hardware. " ,
)
self . status (
None , { indent_str ( ART_FROG_BLENDER , 10 ) } ,
' However, this means that you will be unable to log in to your account from any other device. ' ,
' This limitation provides yet another level of hardware protection against network attacks. ' ,
' However, you can always choose (not recommended) to the secret file with another device by a secure channel. ' ,
3 , f ' But, please excuse me Komrade @ { name } -- I digress. '
)
while not passphrase :
res = self . status ( None ,
{ indent_str ( ART_FROG_BLENDER , 10 ) } ,
" @Keymaker: Please type your chosen password into @Hasher. " ,
( ' str_to_hash ' , f ' \n @ { name } : ' , getpass ) ,
pause = False
)
str_to_hash = res . get ( ' vals ' ) . get ( ' str_to_hash ' )
hashed_pass1 = hasher ( str_to_hash . encode ( ) )
res = self . status (
' \n @Hasher: ' + hashed_pass1 ,
pause = False
)
res = self . status (
' \n Now type in the same password one more time to verify it: ' ,
( ' str_to_hash ' , f ' \n @ { name } : ' , getpass ) ,
pause = False
)
str_to_hash = res . get ( ' vals ' ) . get ( ' str_to_hash ' )
hashed_pass2 = hasher ( str_to_hash . encode ( ) )
res = self . status (
' \n @Hasher: ' + hashed_pass2 ,
pause = False
)
if hashed_pass1 == hashed_pass2 :
self . status ( ' ' , ' @Keymaker: Excellent. The passwords clearly matched, because the hashed values matched. ' , pause = False )
passphrase = hashed_pass1
else :
self . status ( ' @Keymaker: A pity. It looks like the passwords didn \' t match, since the hashed values didn \' t match either. Try again? ' )
return passphrase
def status_keymaker_part3 ( self , privkey , privkey_decr , privkey_encr , passphrase ) :
2020-09-12 07:55:23 +00:00
self . status (
None , { tw . indent ( ART_KEY , ' ' * 5 ) + ' \n ' , True } ,
# None,{ART_+'\n',True},
' Now that we have a hashed passphrase, we can generate the (2A) encryption key. ' ,
{ ART_KEY_KEY2A , True , 0.1 } ,
''' The key is formed using Themis ' s high-level symmetric encryption library: SecureCell, using Seal mode. ''' ,
' This key (2A) then uses the AES-256 encryption algorithm to encrypt the super-sensitive private key (2): '
)
2020-09-11 17:17:21 +00:00
2020-09-12 07:55:23 +00:00
s0 = str . center ( ' [Encryption Process] ' , CLI_WIDTH )
2020-09-12 09:25:09 +00:00
s1 = s0 + ' \n \n ' + self . printt ( ' Now that we have (2A), we can use it to encrypt the super-sensitive private key (2): ' , ret = True )
s2a = self . printt ( f " (2A) { make_key_discreet_str ( passphrase ) } " , ret = True )
s2 = self . printt ( f " (2) { make_key_discreet ( privkey . data_b64 ) } " , ret = True )
s2b = self . printt ( f " (2B) { make_key_discreet ( b64encode ( privkey_encr ) ) } " , ret = True )
2020-09-12 07:55:23 +00:00
self . status (
# screen 1
None , { f ' { s1 } ' } ,
False ,
# 2
None , { f ' { s1 } \n \n { ART_KEY_PAIR_SPLITTING1 } ' } ,
{ s2a , True } ,
False ,
# 3
None , { f ' { s1 } \n \n { ART_KEY_PAIR_SPLITTING2 } \n { s2a } ' } ,
{ ' \n ' + s2 , True } ,
False ,
# 4
None , { f ' { s1 } \n \n { ART_KEY_PAIR_SPLITTING3 } \n { s2a } \n \n { s2 } ' } ,
{ ' \n ' + s2b , True } ,
False ,
)
2020-09-11 14:35:47 +00:00
2020-09-12 07:55:23 +00:00
2020-09-12 09:25:09 +00:00
shdr = str . center ( ' [Decryption Process] ' , CLI_WIDTH ) + ' \n \n ' + self . printt ( ' Once we have (2B), we don \' t need (2A) or (2) anymore. We can regenerate them! ' , ret = True )
2020-09-12 07:55:23 +00:00
from getpass import getpass
passhash = None
2020-09-11 14:35:47 +00:00
2020-09-12 07:55:23 +00:00
while passhash != passphrase :
res = self . status (
None , { shdr } , False if passhash is None else True ,
2020-09-11 14:35:47 +00:00
2020-09-12 09:25:09 +00:00
( " pass " , self . printt ( f " Let ' s try. Re-type your password into @Hasher: " , ret = True ) + f " \n " , getpass )
2020-09-12 07:55:23 +00:00
)
passhash = self . persona . crypt_keys . hash ( res . get ( ' vals ' ) . get ( ' pass ' ) . encode ( ) )
if passhash != passphrase :
self . status ( { ' Looks like they don \' t match. Try again? ' } , False )
2020-09-11 14:35:47 +00:00
2020-09-12 07:55:23 +00:00
self . status (
{ ' Excellent. We can now regenerate the decryption key: ' } , False ,
{ s2a , True } , False ,
)
2020-09-11 14:35:47 +00:00
2020-09-12 07:55:23 +00:00
# self.status('great')
# shdr2=
self . status (
# 2
None , { f ' { shdr } \n \n { ART_KEY_PAIR_SPLITTING1 } ' } ,
{ s2a , True } ,
False ,
# 3
# None,{f'{s1}\n\n{ART_KEY_PAIR_SPLITTING2}\n{s2a}'},
# {'\n'+s2,True},
# False,
# 4
None , { f ' { s1 } \n \n { ART_KEY_PAIR_SPLITTING4 } \n { s2a } \n \n \n \n ' } ,
{ ' \n ' + s2b , True } ,
False ,
)
2020-09-11 14:35:47 +00:00
2020-09-10 21:32:59 +00:00
def run_cli ( ) :
cli = CLI ( )
2020-09-11 14:35:47 +00:00
cli . run ( ' /register ' , ' elon ' ) #'/register',name='elon')
2020-09-10 21:32:59 +00:00
if __name__ == ' __main__ ' :
run_cli ( )
2020-09-12 07:55:23 +00:00
# asyncio.run(test_async())
"""
Outtakes
self . status ( None ,
{ ART_KEY_PAIR31A } ,
{ ART_KEY_PAIR3B + ' \n ' , True } ,
3 , ' Allow me to explain. ' ,
' (2A) is a separate encryption key generated by your password. ' ,
' (2B) is a version of (2) which has been encrypted by (2A). ' ,
" Because (2) will be destroyed, to rebuild it requires decrypting (2B) with (2A). " ,
)
self . status (
None , { ART_KEY_PAIR5 + ' \n ' } ,
" However, in a final move, I will now destroy (2A), too. " ,
None , { ART_KEY_PAIR4Z1 + ' \n ' } ,
' Why? Because now only you can regenerate it by remembering the password which created it. ' ,
# None,{ART_KEY_PAIR4Z1+'\n'},
' However, this also means that if you lose or forget your password, you \' re screwed. ' ,
None , { ART_KEY_PAIR4Z2 + ' \n ' } ,
" Because without key (2A),you couldn never unlock (2B). " ,
None , { ART_KEY_PAIR4Z3 + ' \n ' } ,
" And without (2B) and (2A) together, you could never re-assemble the private key of (2). " ,
None , { ART_KEY_PAIR4Z42 + ' \n ' } ,
" And without (2), you couldn ' t read messages sent to your public key. " ,
)
"""