Sha256: ec5309f2e879fe5c7fb6bdf81b1284344d6839eb44ace852f0cb2f2448546928
Contents?: true
Size: 627 Bytes
Versions: 281
Compression:
Stored size: 627 Bytes
Contents
using System; using System.Numerics; public static class DiffieHellman { public static BigInteger PrivateKey(BigInteger primeP) { throw new NotImplementedException("You need to implement this function."); } public static BigInteger PublicKey(BigInteger primeP, BigInteger primeG, BigInteger privateKey) { throw new NotImplementedException("You need to implement this function."); } public static BigInteger Secret(BigInteger primeP, BigInteger publicKey, BigInteger privateKey) { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
281 entries across 281 versions & 1 rubygems