finished encrypt/decryption of data
This commit is contained in:
parent
bfe16ee2b0
commit
94c1368f72
5
core.py
5
core.py
@ -52,9 +52,12 @@ class Core:
|
|||||||
try:
|
try:
|
||||||
decrypted = simplecrypt.decrypt(password, data)
|
decrypted = simplecrypt.decrypt(password, data)
|
||||||
except simplecrypt.DecryptionException:
|
except simplecrypt.DecryptionException:
|
||||||
return (False, 'wrong password')
|
return (False, 'wrong password (or corrupted archive)')
|
||||||
else:
|
else:
|
||||||
open('data.tar', 'wb').write(decrypted)
|
open('data.tar', 'wb').write(decrypted)
|
||||||
|
tar = tarfile.open('data.tar')
|
||||||
|
tar.extractall()
|
||||||
|
tar.close()
|
||||||
return (True, '')
|
return (True, '')
|
||||||
def daemonQueue(self):
|
def daemonQueue(self):
|
||||||
# This function intended to be used by the client
|
# This function intended to be used by the client
|
||||||
|
23
onionr.py
23
onionr.py
@ -14,8 +14,9 @@
|
|||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
'''
|
'''
|
||||||
import sys, os, threading, configparser, base64, random
|
import sys, os, threading, configparser, base64, random, getpass, shutil
|
||||||
import gui, api, colors
|
import gui, api, colors, core
|
||||||
|
from onionrutils import OnionrUtils
|
||||||
from colors import Colors
|
from colors import Colors
|
||||||
|
|
||||||
class Onionr:
|
class Onionr:
|
||||||
@ -23,13 +24,24 @@ class Onionr:
|
|||||||
|
|
||||||
colors = Colors()
|
colors = Colors()
|
||||||
|
|
||||||
|
onionrCore = core.Core()
|
||||||
|
onionrUtils = OnionrUtils()
|
||||||
|
|
||||||
# Get configuration and Handle commands
|
# Get configuration and Handle commands
|
||||||
|
|
||||||
self.debug = False # Whole application debugging
|
self.debug = False # Whole application debugging
|
||||||
|
|
||||||
os.chdir(sys.path[0])
|
os.chdir(sys.path[0])
|
||||||
|
if os.path.exists('data-encrypted.dat'):
|
||||||
if not os.path.exists('data'):
|
while True:
|
||||||
|
print('Enter password to decrypt:')
|
||||||
|
password = getpass.getpass()
|
||||||
|
result = onionrCore.dataDirDecrypt(password)
|
||||||
|
if os.path.exists('data/'):
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
print('Failed to decrypt: ' + result[1])
|
||||||
|
else:
|
||||||
os.mkdir('data')
|
os.mkdir('data')
|
||||||
|
|
||||||
# Get configuration
|
# Get configuration
|
||||||
@ -65,6 +77,9 @@ class Onionr:
|
|||||||
else:
|
else:
|
||||||
print(colors.RED, 'Invalid Command', colors.RESET)
|
print(colors.RED, 'Invalid Command', colors.RESET)
|
||||||
return
|
return
|
||||||
|
encryptionPassword = onionrUtils.getPassword('Enter password to encrypt directory.')
|
||||||
|
onionrCore.dataDirEncrypt(encryptionPassword)
|
||||||
|
shutil.rmtree('data/')
|
||||||
return
|
return
|
||||||
def daemon(self):
|
def daemon(self):
|
||||||
os.system('./communicator.py')
|
os.system('./communicator.py')
|
||||||
|
33
onionrutils.py
Normal file
33
onionrutils.py
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
'''
|
||||||
|
Onionr - P2P Microblogging Platform & Social network
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
'''
|
||||||
|
# Misc functions that do not fit in the main api, but are useful
|
||||||
|
import getpass
|
||||||
|
class OnionrUtils():
|
||||||
|
def __init__(self):
|
||||||
|
return
|
||||||
|
def getPassword(self, message='Enter password: '):
|
||||||
|
# Get a password safely with confirmation and return it
|
||||||
|
while True:
|
||||||
|
print(message)
|
||||||
|
pass1 = getpass.getpass()
|
||||||
|
print('Confirm password: ')
|
||||||
|
pass2 = getpass.getpass()
|
||||||
|
if pass1 != pass2:
|
||||||
|
print("Passwords do not match.")
|
||||||
|
input()
|
||||||
|
else:
|
||||||
|
break
|
||||||
|
return pass1
|
Loading…
Reference in New Issue
Block a user