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