Exemple #1
0
 public static int crypto_box_easy(
     byte *c,
     byte *m,
     ulong mlen,
     byte *n,
     byte *pk,
     byte *sk)
 {
     return(_is32bits
         ? X86.crypto_box_easy(c, m, mlen, n, pk, sk)
         : X64.crypto_box_easy(c, m, mlen, n, pk, sk));
 }