blob: f71ce19adb9a1b26febcc74344a35ff282a67cbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <string>
using std::string;
#include "crypto_scalarmult.h"
string crypto_scalarmult_base(const string &n)
{
unsigned char q[crypto_scalarmult_BYTES];
if (n.size() != crypto_scalarmult_SCALARBYTES) throw "incorrect scalar length";
crypto_scalarmult_base(q,(const unsigned char *) n.c_str());
return string((char *) q,sizeof q);
}
|