51 lines
1.7 KiB
Python
51 lines
1.7 KiB
Python
'''
|
|
Onionr - P2P Anonymous Storage Network
|
|
|
|
Contains abstractions for interacting with users of Onionr
|
|
'''
|
|
'''
|
|
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/>.
|
|
'''
|
|
class OnionrUser:
|
|
def __init__(self, coreInst, publicKey):
|
|
self.trust = 0
|
|
self._core = coreInst
|
|
self.publicKey = publicKey
|
|
|
|
self.trust = self._core.getPeerInfo(self.publicKey, 'trust')
|
|
return
|
|
|
|
def setTrust(self, newTrust):
|
|
'''Set the peers trust. 0 = not trusted, 1 = friend, 2 = ultimate'''
|
|
self._core.setPeerInfo(self.publicKey, 'trust', newTrust)
|
|
|
|
def isFriend(self):
|
|
if self._core.getPeerInfo(self.publicKey, 6) == 1:
|
|
return True
|
|
return False
|
|
|
|
def encrypt(self, data):
|
|
encrypted = coreInst._crypto.pubKeyEncrypt(data, self.publicKey, encodedData=True)
|
|
return encrypted
|
|
|
|
def decrypt(self, data):
|
|
decrypted = coreInst._crypto.pubKeyDecrypt(data, self.publicKey, encodedData=True)
|
|
return decrypted
|
|
|
|
def forwardEncrypt(self, data):
|
|
return
|
|
|
|
def forwardDecrypt(self, encrypted):
|
|
return
|
|
|