Beispiel #1
0
 internal static extern int hydro_kx_kk_3(ref KeyState keyState, out SessionKeyPair sessionKeyPair, byte[] packet, ref KeyPair keyPair);
Beispiel #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);
 }
Beispiel #3
0
 internal static extern int hydro_kx_kk_1(out KeyState keyState, byte[] packet, byte[] publicKey, ref KeyPair keyPair);
Beispiel #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);
 }