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