Esempio n. 1
0
 internal static extern int hydro_kx_kk_3(ref KeyState keyState, out SessionKeyPair sessionKeyPair, byte[] packet, ref KeyPair keyPair);
Esempio n. 2
0
 public static bool KK3(ref KeyState keyState, out SessionKeyPair sessionKeyPair, byte[] packet, ref KeyPair keyPair)
 {
     return(Native.hydro_kx_kk_3(ref keyState, out sessionKeyPair, packet, ref keyPair) == 0);
 }
Esempio n. 3
0
 internal static extern int hydro_kx_kk_1(out KeyState keyState, byte[] packet, byte[] publicKey, ref KeyPair keyPair);
Esempio n. 4
0
 public static bool KK1(out KeyState keyState, byte[] packet, byte[] publicKey, ref KeyPair keyPair)
 {
     return(Native.hydro_kx_kk_1(out keyState, packet, publicKey, ref keyPair) == 0);
 }