Sha256: 81eea8aae355130b5998ad86292dfbc9cbe88622d29c91fc68816ecd14b8ba21

Contents?: true

Size: 1.02 KB

Versions: 3

Compression:

Stored size: 1.02 KB

Contents

#include <string>
using std::string;
#include <stdlib.h>
#include <stdio.h>
#include "crypto_box.h"
#include "randombytes.h"

main()
{
  int mlen;
  for (mlen = 0;mlen < 1000;++mlen) {
    string alicesk;
    string alicepk = crypto_box_keypair(&alicesk);
    string bobsk;
    string bobpk = crypto_box_keypair(&bobsk);
    unsigned char nbytes[crypto_box_NONCEBYTES];
    randombytes(nbytes,crypto_box_NONCEBYTES);
    string n((char *) nbytes,crypto_box_NONCEBYTES);
    unsigned char mbytes[mlen];
    randombytes(mbytes,mlen);
    string m((char *) mbytes,mlen);
    string c = crypto_box(m,n,bobpk,alicesk);
    int caught = 0;
    while (caught < 10) {
      c.replace(random() % c.size(),1,1,random());
      try {
        string m2 = crypto_box_open(c,n,alicepk,bobsk);
        if (m != m2) {
	  printf("forgery\n");
	  return 100;
        }
      } catch(const char *s) {
	if (string(s) == string("ciphertext fails verification"))
	  ++caught;
	else {
	  printf("%s\n",s);
	  return 111;
        }
      }
    }
  }
  return 0;
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby_nacl-0.1.2 ext/ruby_nacl/NaCl/tests/box6.cpp
ruby_nacl-0.1.1 ext/ruby_nacl/NaCl/tests/box6.cpp
ruby_nacl-0.1.0 ext/ruby_nacl/NaCl/tests/box6.cpp