toxygen/toxygen/toxencryptsave.py

114 lines
5.2 KiB
Python
Raw Permalink Normal View History

2016-05-14 09:29:54 +00:00
import libtox
import util
2016-05-15 14:39:49 +00:00
from ctypes import c_size_t, create_string_buffer, byref, c_int, ArgumentError, c_char_p, c_bool
2016-05-14 09:29:54 +00:00
2016-05-15 08:00:45 +00:00
TOX_ERR_ENCRYPTION = {
# The function returned successfully.
'OK': 0,
# Some input data, or maybe the output pointer, was null.
'NULL': 1,
# The crypto lib was unable to derive a key from the given passphrase, which is usually a lack of memory issue. The
# functions accepting keys do not produce this error.
'KEY_DERIVATION_FAILED': 2,
# The encryption itself failed.
'FAILED': 3
}
TOX_ERR_DECRYPTION = {
# The function returned successfully.
'OK': 0,
# Some input data, or maybe the output pointer, was null.
'NULL': 1,
# The input data was shorter than TOX_PASS_ENCRYPTION_EXTRA_LENGTH bytes
'INVALID_LENGTH': 2,
# The input data is missing the magic number (i.e. wasn't created by this module, or is corrupted)
'BAD_FORMAT': 3,
# The crypto lib was unable to derive a key from the given passphrase, which is usually a lack of memory issue. The
# functions accepting keys do not produce this error.
'KEY_DERIVATION_FAILED': 4,
# The encrypted byte array could not be decrypted. Either the data was corrupt or the password/key was incorrect.
'FAILED': 5,
}
TOX_PASS_ENCRYPTION_EXTRA_LENGTH = 80
2016-05-14 09:29:54 +00:00
2016-07-01 20:15:00 +00:00
class ToxEncryptSave(util.Singleton):
2016-05-14 09:29:54 +00:00
2016-05-15 13:45:05 +00:00
def __init__(self):
2016-06-22 11:35:22 +00:00
super().__init__()
2016-07-28 20:21:57 +00:00
self.libtoxencryptsave = libtox.LibToxEncryptSave()
2016-05-15 13:45:05 +00:00
self._passphrase = None
2016-05-15 08:00:45 +00:00
def set_password(self, passphrase):
self._passphrase = passphrase
2016-05-15 13:45:05 +00:00
def has_password(self):
return bool(self._passphrase)
2016-07-02 12:40:06 +00:00
def is_password(self, password):
return self._passphrase == password
2016-05-15 13:45:05 +00:00
def is_data_encrypted(self, data):
2016-05-15 14:39:49 +00:00
func = self.libtoxencryptsave.tox_is_data_encrypted
func.restype = c_bool
2016-06-21 11:58:11 +00:00
result = func(c_char_p(bytes(data)))
2016-05-15 14:39:49 +00:00
return result
2016-05-15 13:45:05 +00:00
2016-05-15 08:00:45 +00:00
def pass_encrypt(self, data):
"""
Encrypts the given data with the given passphrase.
:return: output array
"""
out = create_string_buffer(len(data) + TOX_PASS_ENCRYPTION_EXTRA_LENGTH)
tox_err_encryption = c_int()
self.libtoxencryptsave.tox_pass_encrypt(c_char_p(data),
2016-05-15 10:39:03 +00:00
c_size_t(len(data)),
c_char_p(bytes(self._passphrase, 'utf-8')),
2016-05-15 10:39:03 +00:00
c_size_t(len(self._passphrase)),
out,
byref(tox_err_encryption))
2016-05-15 08:00:45 +00:00
tox_err_encryption = tox_err_encryption.value
if tox_err_encryption == TOX_ERR_ENCRYPTION['OK']:
2016-05-15 10:39:03 +00:00
return out[:]
2016-05-15 08:00:45 +00:00
elif tox_err_encryption == TOX_ERR_ENCRYPTION['NULL']:
raise ArgumentError('Some input data, or maybe the output pointer, was null.')
elif tox_err_encryption == TOX_ERR_ENCRYPTION['KEY_DERIVATION_FAILED']:
raise RuntimeError('The crypto lib was unable to derive a key from the given passphrase, which is usually a'
' lack of memory issue. The functions accepting keys do not produce this error.')
elif tox_err_encryption == TOX_ERR_ENCRYPTION['FAILED']:
raise RuntimeError('The encryption itself failed.')
def pass_decrypt(self, data):
"""
Decrypts the given data with the given passphrase.
2016-05-14 09:29:54 +00:00
2016-05-15 08:00:45 +00:00
:return: output array
"""
out = create_string_buffer(len(data) - TOX_PASS_ENCRYPTION_EXTRA_LENGTH)
tox_err_decryption = c_int()
2016-06-21 11:58:11 +00:00
self.libtoxencryptsave.tox_pass_decrypt(c_char_p(bytes(data)),
2016-05-15 10:39:03 +00:00
c_size_t(len(data)),
c_char_p(bytes(self._passphrase, 'utf-8')),
2016-05-15 10:39:03 +00:00
c_size_t(len(self._passphrase)),
out,
byref(tox_err_decryption))
2016-05-15 08:00:45 +00:00
tox_err_decryption = tox_err_decryption.value
if tox_err_decryption == TOX_ERR_DECRYPTION['OK']:
2016-05-15 10:39:03 +00:00
return out[:]
2016-05-15 08:00:45 +00:00
elif tox_err_decryption == TOX_ERR_DECRYPTION['NULL']:
raise ArgumentError('Some input data, or maybe the output pointer, was null.')
elif tox_err_decryption == TOX_ERR_DECRYPTION['INVALID_LENGTH']:
raise ArgumentError('The input data was shorter than TOX_PASS_ENCRYPTION_EXTRA_LENGTH bytes')
elif tox_err_decryption == TOX_ERR_DECRYPTION['BAD_FORMAT']:
raise ArgumentError('The input data is missing the magic number (i.e. wasn\'t created by this module, or is'
' corrupted)')
elif tox_err_decryption == TOX_ERR_DECRYPTION['KEY_DERIVATION_FAILED']:
raise RuntimeError('The crypto lib was unable to derive a key from the given passphrase, which is usually a'
' lack of memory issue. The functions accepting keys do not produce this error.')
elif tox_err_decryption == TOX_ERR_DECRYPTION['FAILED']:
raise RuntimeError('The encrypted byte array could not be decrypted. Either the data was corrupt or the '
'password/key was incorrect.')