blob: 07989813451fd5bb399a0a6274cd845b7a8a3d54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include <string>
using std::string;
#include "crypto_secretbox.h"
string crypto_secretbox_open(const string &c,const string &n,const string &k)
{
if (k.size() != crypto_secretbox_KEYBYTES) throw "incorrect key length";
if (n.size() != crypto_secretbox_NONCEBYTES) throw "incorrect nonce length";
size_t clen = c.size() + crypto_secretbox_BOXZEROBYTES;
unsigned char cpad[clen];
for (int i = 0;i < crypto_secretbox_BOXZEROBYTES;++i) cpad[i] = 0;
for (int i = crypto_secretbox_BOXZEROBYTES;i < clen;++i) cpad[i] = c[i - crypto_secretbox_BOXZEROBYTES];
unsigned char mpad[clen];
if (crypto_secretbox_open(mpad,cpad,clen,(const unsigned char *) n.c_str(),(const unsigned char *) k.c_str()) != 0)
throw "ciphertext fails verification";
if (clen < crypto_secretbox_ZEROBYTES)
throw "ciphertext too short"; // should have been caught by _open
return string(
(char *) mpad + crypto_secretbox_ZEROBYTES,
clen - crypto_secretbox_ZEROBYTES
);
}
|