diff options
author | George Hazan <ghazan@miranda.im> | 2022-09-17 17:34:23 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-09-17 17:34:23 +0300 |
commit | 06dedffd244b0bacea0d3a8c0983a78afc7a7e33 (patch) | |
tree | bcef88be621f35b3d8fd450b7f8210a233eef225 /protocols/WhatsAppWeb/src/db.h | |
parent | c3589dee07aff8f098ed1855af8c191786d82b77 (diff) |
Noise processing code extracted to the separate module
Diffstat (limited to 'protocols/WhatsAppWeb/src/db.h')
-rw-r--r-- | protocols/WhatsAppWeb/src/db.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/protocols/WhatsAppWeb/src/db.h b/protocols/WhatsAppWeb/src/db.h index d2153b3305..66f1686ecc 100644 --- a/protocols/WhatsAppWeb/src/db.h +++ b/protocols/WhatsAppWeb/src/db.h @@ -17,8 +17,19 @@ Copyright © 2019-22 George Hazan #define DBKEY_SERVER_TOKEN "ServerToken" #define DBKEY_BROWSER_TOKEN "BrowserToken" -#define DBKEY_PUB_KEY "PublicKey" -#define DBKEY_PRIVATE_KEY "PrivateKey" +#define DBKEY_NOISE_PUB "NoisePublicKey" +#define DBKEY_NOISE_PRIV "NoisePrivateKey" +#define DBKEY_SIGNED_IDENTITY_PUB "SignedIdentityPublicKey" +#define DBKEY_SIGNED_IDENTITY_PRIV "SignedIdentityPrivateKey" +#define DBKEY_PREKEY_PUB "PrekeyPublicKey" +#define DBKEY_PREKEY_PRIV "PrekeyPrivateKey" +#define DBKEY_PREKEY_SIGN "PrekeySignature" +#define DBKEY_PREKEY_KEYID "PrekeyKeyId" +#define DBKEY_PREKEY_NEXT_ID "PrekeyNextId" +#define DBKEY_PREKEY_UPLOAD_ID "PrekeyUploadId" + +#define DBKEY_REG_ID "RegistrationId" +#define DBKEY_SECRET_KEY "AdvSecretKey" #define DBKEY_NICK "Nick" #define DBKEY_DEF_GROUP "DefaultGroup" |