work on encryption

This commit is contained in:
Kevin Froman 2018-04-15 03:46:50 -05:00
parent 2071def07b
commit 3a2efce637
No known key found for this signature in database
GPG key ID: 0D414D0FE405B63B
2 changed files with 9 additions and 9 deletions

View file

@ -40,13 +40,13 @@ class OnionrUtils:
def sendPM(self, pubkey, message):
'''High level function to encrypt a message to a peer and insert it as a block'''
forwardKey = self._core.getPeerInfo(pubkey, 'forwardKey')
#forwardKey = self._core.getPeerInfo(pubkey, 'forwardKey')
if self._core.getPeerInfo(pubkey, 'pubkeyExchanged') == 1:
pass
if len(forwardKey) > 0:
pass
#if self._core.getPeerInfo(pubkey, 'pubkeyExchanged') == 1:
# pass
encrypted = self._core._crypto.pubKeyEncrypt(message, pubkey, anonymous=True, encodedData=True)
logger.info(encrypted)
return
return