Example #1
0
 def encode(self, wallet, msg):
     password, iv, wallet_id = self.wallets[wallet]
     encrypted = aes_encrypt_with_iv(password, iv, msg.encode('utf8'))
     return base64.b64encode(encrypted).decode()
Example #2
0
 def encode(self, wallet: 'Abstract_Wallet', msg: str) -> str:
     password, iv, wallet_id = self.wallets[wallet]
     encrypted = aes_encrypt_with_iv(password, iv, msg.encode('utf8'))
     return base64.b64encode(encrypted).decode()