Esempio n. 1
0
        public static byte[] ComputeSharedKey(DHPrivateKey privateKey, DHPublicKey publicKey)
        {
            DiffieHellman dh = new DiffieHellmanManaged(privateKey.P, privateKey.G, privateKey.X);

            return(dh.DecryptKeyExchange(publicKey.KeyExchangeData));
        }
Esempio n. 2
0
 public DHKeyPair(DHPrivateKey privateKey, DHPublicKey publicKey)
 {
     this._privateKey = privateKey;
     this._publicKey = publicKey;
 }
Esempio n. 3
0
 public DHKeyPair(DHPrivateKey privateKey, DHPublicKey publicKey)
 {
     this._privateKey = privateKey;
     this._publicKey  = publicKey;
 }
Esempio n. 4
0
 public static byte[] ComputeSharedKey(DHPrivateKey privateKey, DHPublicKey publicKey)
 {
     DiffieHellman dh = new DiffieHellmanManaged(privateKey.P, privateKey.G, privateKey.X);
     return dh.DecryptKeyExchange(publicKey.KeyExchangeData);
 }