IIS Crypto 3.2 not getting rid of Diffie-Hellman algorithms of less than 2048-bits

I’m trying to stop a server using Diffie Hellman key exchanges of less than 2048 bits, but I’m getting confusing results.
I’ve run
Get-TlsCipherSuite | Format-Table Name, Exchange, Cipher, Hash, Certificate
and I can see
TLS_DHE_RSA_WITH_A… Continue reading IIS Crypto 3.2 not getting rid of Diffie-Hellman algorithms of less than 2048-bits

ElGamal and discrete logarithm cryptography, modern standards and state of the art literature

I’m implementing an ElGamal encryption system for academic purposes but I am not sure of the latest recommendations, standards and state of the art literature about this. Note that my system is already implemented and fully working, I only… Continue reading ElGamal and discrete logarithm cryptography, modern standards and state of the art literature

Tor: How does entry nodes communicate with middle nodes? How does middle nodes communicate with exit nodes?

In Tor, when a client communicates with an entry node, they exchange the parameters such as the prime number and the generator with each other through DH.
What about when an entry node communicating with a middle node, or a middle node com… Continue reading Tor: How does entry nodes communicate with middle nodes? How does middle nodes communicate with exit nodes?