2016-05-14 11:29:54 +02:00
|
|
|
import libtox
|
|
|
|
import util
|
2016-05-15 12:39:03 +02:00
|
|
|
from ctypes import c_size_t, create_string_buffer, byref, c_int, ArgumentError, c_char_p
|
2016-05-14 11:29:54 +02:00
|
|
|
|
|
|
|
|
2016-05-15 10:00:45 +02: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 11:29:54 +02:00
|
|
|
|
|
|
|
class LibToxEncryptSave(util.Singleton):
|
|
|
|
|
|
|
|
libtoxencryptsave = libtox.LibToxEncryptSave()
|
|
|
|
|
2016-05-15 15:45:05 +02:00
|
|
|
def __init__(self):
|
|
|
|
self._passphrase = None
|
2016-05-15 10:00:45 +02:00
|
|
|
|
|
|
|
def set_password(self, passphrase):
|
|
|
|
self._passphrase = passphrase
|
|
|
|
|
2016-05-15 15:45:05 +02:00
|
|
|
def has_password(self):
|
|
|
|
return bool(self._passphrase)
|
|
|
|
|
|
|
|
def is_data_encrypted(self, data):
|
|
|
|
result = self.libtoxencryptsave.tox_is_data_encrypted(c_char_p(data))
|
|
|
|
return bool(result)
|
|
|
|
|
2016-05-15 10:00:45 +02: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()
|
2016-05-15 12:39:03 +02:00
|
|
|
self.libtoxencryptsave.tox_pass_encrypt(c_char_p(data),
|
|
|
|
c_size_t(len(data)),
|
|
|
|
c_char_p(self._passphrase),
|
|
|
|
c_size_t(len(self._passphrase)),
|
|
|
|
out,
|
|
|
|
byref(tox_err_encryption))
|
2016-05-15 10:00:45 +02:00
|
|
|
tox_err_encryption = tox_err_encryption.value
|
|
|
|
if tox_err_encryption == TOX_ERR_ENCRYPTION['OK']:
|
2016-05-15 12:39:03 +02:00
|
|
|
return out[:]
|
2016-05-15 10:00:45 +02: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 11:29:54 +02:00
|
|
|
|
2016-05-15 10:00:45 +02:00
|
|
|
:return: output array
|
|
|
|
"""
|
|
|
|
out = create_string_buffer(len(data) - TOX_PASS_ENCRYPTION_EXTRA_LENGTH)
|
|
|
|
tox_err_decryption = c_int()
|
2016-05-15 12:39:03 +02:00
|
|
|
self.libtoxencryptsave.tox_pass_decrypt(c_char_p(data),
|
|
|
|
c_size_t(len(data)),
|
|
|
|
c_char_p(self._passphrase),
|
|
|
|
c_size_t(len(self._passphrase)),
|
|
|
|
out,
|
|
|
|
byref(tox_err_decryption))
|
2016-05-15 10:00:45 +02:00
|
|
|
tox_err_decryption = tox_err_decryption.value
|
|
|
|
if tox_err_decryption == TOX_ERR_DECRYPTION['OK']:
|
2016-05-15 12:39:03 +02:00
|
|
|
return out[:]
|
2016-05-15 10:00:45 +02: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.')
|