Exemplo n.º 1
0
 public static int crypto_box_open_easy(
     byte *m,
     byte *c,
     ulong clen,
     byte *n,
     byte *pk,
     byte *sk)
 {
     return(_is32bits
         ? X86.crypto_box_open_easy(m, c, clen, n, pk, sk)
         : X64.crypto_box_open_easy(m, c, clen, n, pk, sk));
 }