wrapper-stream.cpp 435 B

123456789101112
  1. #include <string>
  2. using std::string;
  3. #include "crypto_stream.h"
  4. string crypto_stream(size_t clen,const string &n,const string &k)
  5. {
  6. if (n.size() != crypto_stream_NONCEBYTES) throw "incorrect nonce length";
  7. if (k.size() != crypto_stream_KEYBYTES) throw "incorrect key length";
  8. unsigned char c[clen];
  9. crypto_stream(c,clen,(const unsigned char *) n.c_str(),(const unsigned char *) k.c_str());
  10. return string((char *) c,clen);
  11. }