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-14 20:18:47 +00:00
2020-09-10 21:32:59 +00:00
2020-09-14 20:32:17 +00:00
2020-09-10 21:32:59 +00:00
class CLI ( Logger ) :
ROUTES = {
2020-09-13 13:58:58 +00:00
' help ' : ' seek help ' ,
2020-09-13 14:15:06 +00:00
' register ' : ' join the komrades ' ,
2020-09-13 18:06:41 +00:00
' login ' : ' log back in ' ,
2020-09-14 08:48:23 +00:00
' meet ' : ' meet a komrade ' ,
2020-09-14 20:10:31 +00:00
' who ' : ' show contacts or info ' ,
2020-09-14 22:00:13 +00:00
' msg ' : ' write people ' ,
2020-09-15 08:51:52 +00:00
' check ' : ' check mail ' ,
2020-09-15 10:17:06 +00:00
' read ' : ' read mail ' ,
2020-09-15 08:51:52 +00:00
' verbose ' : ' show/hide log output '
2020-09-10 21:32:59 +00:00
}
2020-09-12 07:55:23 +00:00
def __init__ ( self , name = ' ' , cmd = ' ' , persona = None ) :
2020-09-13 18:47:25 +00:00
self . name = name
2020-09-12 07:55:23 +00:00
self . cmd = cmd
2020-09-13 18:47:25 +00:00
self . komrade = None
self . loggedin = False
2020-09-10 21:32:59 +00:00
2020-09-15 08:51:52 +00:00
def verbose ( self , * x ) :
self . toggle_log ( )
2020-09-11 14:35:47 +00:00
def run ( self , inp = ' ' , name = ' ' ) :
2020-09-13 18:47:25 +00:00
# if name: self.name=name
2020-09-13 14:34:54 +00:00
# clear_screen()
# self.boot()
2020-09-15 08:51:52 +00:00
if not inp :
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-13 14:15:06 +00:00
# print(inp,'??')
2020-09-15 08:51:52 +00:00
self . route ( inp )
2020-09-13 14:48:26 +00:00
except ( KeyboardInterrupt , EOFError ) as e :
exit ( ' \n Goodbye. ' )
2020-09-15 08:51:52 +00:00
except KomradeException as e :
print ( f ' @Operator: I could not handle your request. { e } \n ' )
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 ( )
2020-09-13 14:15:06 +00:00
# print('route got:',[inp])
2020-09-10 21:32:59 +00:00
if not inp . startswith ( ' / ' ) : return
cmd = inp . split ( ) [ 0 ]
dat = inp [ len ( cmd ) : ] . strip ( )
cmd = cmd [ 1 : ]
2020-09-13 14:15:06 +00:00
# print([cmd,dat])
2020-09-10 21:32:59 +00:00
if cmd in self . ROUTES and hasattr ( self , cmd ) :
f = getattr ( self , cmd )
return f ( dat )
2020-09-13 14:57:34 +00:00
def boot ( self , indent = 13 ) :
2020-09-11 14:35:47 +00:00
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-13 14:55:17 +00:00
logo = tw . indent ( logo , ' ' * indent )
2020-09-11 14:35:47 +00:00
scan_print ( logo , max_pause = 0.005 )
2020-09-10 21:32:59 +00:00
2020-09-13 14:34:17 +00:00
def help ( self , * x , * * y ) :
2020-09-13 14:34:36 +00:00
clear_screen ( )
self . boot ( )
2020-09-14 20:18:47 +00:00
HELPSTR = """
/ login [ name ] - - > log back in
/ register [ name ] - - > new komrade """ + (( """
2020-09-15 10:17:06 +00:00
2020-09-14 20:18:47 +00:00
/ meet [ name ] - - > exchange info
/ msg [ name ] [ msg ] - - > write to person or group
2020-09-14 22:00:13 +00:00
/ who [ name ] - - > show contact info
2020-09-15 10:17:06 +00:00
/ check [ inbox ] - - > check for new posts
/ read [ inbox ] - - > read posts """ )
2020-09-14 20:18:47 +00:00
if self . with_required_login ( quiet = True ) else " " ) + """
/ help - - > seek help
"""
2020-09-13 14:01:01 +00:00
print ( HELPSTR )
2020-09-10 21:32:59 +00:00
def intro ( self ) :
2020-09-14 08:48:23 +00:00
self . status ( None )
2020-09-14 08:48:40 +00:00
def who ( self , whom ) :
2020-09-14 08:48:23 +00:00
if self . with_required_login ( ) :
contacts = self . komrade . contacts ( )
print ( ' ' + ' \n ' . join ( contacts ) )
2020-09-10 21:32:59 +00:00
2020-09-13 13:57:06 +00:00
def register ( self , name = None ) :
2020-09-13 18:20:19 +00:00
if not name : name = input ( ' name: ' )
if not name : return
2020-09-13 18:47:25 +00:00
self . komrade = Komrade ( name )
res = self . komrade . register ( )
2020-09-13 14:35:41 +00:00
if res and type ( res ) == dict and ' success ' in res and res [ ' success ' ] :
2020-09-13 18:47:25 +00:00
self . name = self . komrade . name
self . loggedin = True
2020-09-13 14:29:53 +00:00
else :
2020-09-13 18:47:25 +00:00
self . name = None
self . loggedin = False
self . komrade = None
2020-09-14 06:20:02 +00:00
if res and ' status ' in res :
# self.boot()
print ( ' \n @Operator: ' + res . get ( ' status ' , ' ? ' ) + ' \n ' )
2020-09-13 14:15:06 +00:00
def login ( self , name ) :
2020-09-14 07:58:26 +00:00
# print(self,name,self.name,self.komrade,self.loggedin)
2020-09-13 14:25:00 +00:00
if not name : name = input ( ' name: ' )
if not name : return
2020-09-13 18:47:25 +00:00
self . komrade = Komrade ( name )
2020-09-13 18:20:19 +00:00
2020-09-13 18:47:25 +00:00
res = self . komrade . login ( )
2020-09-13 18:20:19 +00:00
2020-09-13 14:35:41 +00:00
if res and type ( res ) == dict and ' success ' in res and res [ ' success ' ] :
2020-09-13 18:47:25 +00:00
self . name = self . komrade . name
self . loggedin = True
2020-09-13 14:29:53 +00:00
else :
2020-09-13 18:47:25 +00:00
self . name = None
self . loggedin = False
self . komrade = None
2020-09-14 07:58:26 +00:00
if res and ' status ' in res :
2020-09-15 10:23:32 +00:00
self . help ( )
2020-09-13 14:31:27 +00:00
print ( ' @Operator: ' + res . get ( ' status ' , ' ? ' ) + ' \n ' )
2020-09-13 14:15:06 +00:00
2020-09-13 18:06:41 +00:00
@property
def logged_in ( self ) :
2020-09-13 18:47:25 +00:00
return ( self . loggedin and self . komrade and self . name )
2020-09-13 18:06:41 +00:00
2020-09-14 08:48:23 +00:00
2020-09-14 20:18:47 +00:00
def with_required_login ( self , quiet = False ) :
2020-09-13 18:06:41 +00:00
if not self . logged_in :
2020-09-14 20:18:47 +00:00
if not quiet :
print ( ' @Operator: You must be logged in first. \n ' )
2020-09-14 08:48:23 +00:00
return False
return True
def meet ( self , name ) :
2020-09-13 18:06:41 +00:00
if not name :
name = input ( f ' @Operator: To whom would you like to introduce yourself? \n \n @ { self . name } : ' )
if not name : return
# meet?
self . komrade . meet ( name )
2020-09-13 17:42:05 +00:00
2020-09-14 20:10:31 +00:00
def msg ( self , dat ) :
2020-09-14 20:18:47 +00:00
if self . with_required_login ( ) :
name_or_pubkey , msg = dat . split ( ' ' , 1 )
self . log ( f ' Composed msg to { name_or_pubkey } : { msg } ' )
msg_obj = self . komrade . msg (
name_or_pubkey ,
msg
)
self . log ( f ' Sent msg obj to { name_or_pubkey } : { msg_obj } ' )
2020-09-13 17:42:05 +00:00
2020-09-14 22:00:13 +00:00
def check ( self , dat ) :
if self . with_required_login ( ) :
2020-09-15 10:17:06 +00:00
res = self . komrade . refresh ( )
if not res [ ' success ' ] :
print ( f " @Operator: { res [ ' status ' ] } \n " )
else :
unr = res . get ( ' unread ' , [ ] )
inb = res . get ( ' inbox ' , [ ] )
print ( f ' @Operator: You have { len ( unr ) } unread messages, with { len ( inb ) } total in your inbox. \n ' )
def read ( self , dat ) :
if self . with_required_login ( ) :
msgs = self . komrade . inbox ( )
if not msgs :
print ( ' @Operator: No messages. ' )
else :
clear_screen ( )
for i , msg in enumerate ( msgs ) :
print ( f ' @Operator: Message { i + 1 } of { len ( msgs ) } : \n \n ' )
print ( msg )
do_pause ( )
clear_screen ( )
2020-09-13 17:42:05 +00:00
2020-09-13 14:15:06 +00:00
2020-09-11 14:35:47 +00:00
### 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-13 18:47:25 +00:00
f ''' @ { TELEPHONEname } : 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? ' ,
2020-09-13 18:47:25 +00:00
f ' @ { TELEPHONEname } : Visit the Keymaker. ' ,
2020-09-10 21:32:59 +00:00
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
2020-09-14 20:10:31 +00:00
def run_cli ( inp ) :
2020-09-10 21:32:59 +00:00
cli = CLI ( )
2020-09-14 20:10:31 +00:00
cli . run ( inp ) #'/register elon') #'/register',name='elon')
2020-09-10 21:32:59 +00:00
if __name__ == ' __main__ ' :
2020-09-14 20:10:31 +00:00
inp = ' ' . join ( sys . argv [ 1 : ] )
run_cli ( inp )
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. " ,
)
"""