summaryrefslogtreecommitdiff
path: root/toxencryptsave
diff options
context:
space:
mode:
authorDubslow <bunslow@gmail.com>2015-04-01 15:26:09 -0500
committerDubslow <bunslow@gmail.com>2015-04-01 15:28:39 -0500
commit36ed4956fdeacd73243d9348dcb7ef279f22c726 (patch)
treec0f3bad865be4e4189772c9c162c0511d23d9427 /toxencryptsave
parentf7beee495e9c3199ecbae91fde2e92f1698f48b2 (diff)
Enough pestering me please
Diffstat (limited to 'toxencryptsave')
-rw-r--r--toxencryptsave/toxencryptsave.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/toxencryptsave/toxencryptsave.h b/toxencryptsave/toxencryptsave.h
index 103cf874..078bd879 100644
--- a/toxencryptsave/toxencryptsave.h
+++ b/toxencryptsave/toxencryptsave.h
@@ -60,6 +60,15 @@ struct Tox_Options;
60 * Ditto if they forget their password, there is no way to recover the data. 60 * Ditto if they forget their password, there is no way to recover the data.
61 */ 61 */
62 62
63/* Since apparently no one actually bothered to learn about the module previously,
64 * the recently removed functions tox_encrypted_new and tox_get_encrypted_savedata
65 * may be trivially replaced by calls to tox_pass_decrypt -> tox_new or
66 * tox_get_savedata -> tox_pass_encrypt as appropriate. The removed functions
67 * were never more than 5 line wrappers of the other public API functions anyways.
68 * (As has always been, tox_pass_decrypt and tox_pass_encrypt are interchangeable
69 * with tox_pass_key_decrypt and tox_pass_key_encrypt, as the client program requires.)
70 */
71
63typedef enum TOX_ERR_KEY_DERIVATION { 72typedef enum TOX_ERR_KEY_DERIVATION {
64 TOX_ERR_KEY_DERIVATION_OK, 73 TOX_ERR_KEY_DERIVATION_OK,
65 /** 74 /**