fixed encrypt plugin having bad import

This commit is contained in:
Kevin Froman 2019-07-29 13:13:40 -05:00
parent b7d4aaed9a
commit 2316e3c6e4
1 changed files with 2 additions and 3 deletions

View File

@ -22,8 +22,8 @@
import logger, config, threading, time, datetime, sys, json
from onionrblockapi import Block
from onionrutils import stringvalidators, bytesconverter
from onionrcrypto import encryption, getourkeypair
import onionrexceptions, onionrusers, signing
from onionrcrypto import encryption, keypair, signing
import onionrexceptions, onionrusers
import locale
locale.setlocale(locale.LC_ALL, '')
plugin_name = 'encrypt'
@ -64,7 +64,6 @@ class PlainEncryption:
sys.exit(1)
# Build Message to encrypt
data = {}
keypair = getourkeypair.get_our_keypair()
myPub = keypair[0]
if sign:
data['sig'] = signing.ed_sign(plaintext, key=keypair[1], encodeResult=True)