mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Merge branch 'encrypted_data' of https://github.com/dubslow/toxcore into encrypted_data
This commit is contained in:
commit
c3fda668f9
|
@ -898,7 +898,7 @@ int tox_encrypted_save(const Tox *tox, uint8_t *data, uint8_t *passphrase, uint3
|
|||
{ /* out of memory most likely */
|
||||
return -1;
|
||||
}
|
||||
randombytes_buf(passphrase, pplength); /* wipe plaintext pw */
|
||||
sodium_memzero(passphrase, pplength); /* wipe plaintext pw */
|
||||
|
||||
/* next get plain save data */
|
||||
uint32_t temp_size = tox_size(tox);
|
||||
|
@ -958,7 +958,7 @@ int tox_encrypted_load(Tox *tox, const uint8_t *data, uint32_t length, uint8_t *
|
|||
{ /* out of memory most likely */
|
||||
return -1;
|
||||
}
|
||||
randombytes_buf(passphrase, pplength); /* wipe plaintext pw */
|
||||
sodium_memzero(passphrase, pplength); /* wipe plaintext pw */
|
||||
|
||||
/* decrypt the data */
|
||||
uint8_t temp_data[decrypt_length];
|
||||
|
|
Loading…
Reference in New Issue
Block a user