MODP
MODP refers to a class of predefined Diffie-Hellman groups used for secure key exchange. Each MODP group consists of a large prime modulus p and a generator g. In a typical exchange, party A computes A = g^a mod p and party B computes B = g^b mod p, and both derive the shared secret g^(ab) mod p. The security relies on the difficulty of the discrete logarithm problem in the chosen group, while the predefined nature of the parameters promotes interoperability between implementations without requiring on-the-fly prime generation.
Standard MODP groups are published and maintained to ensure compatibility across protocols. A widely cited set
Usage and security: MODP groups are used to establish ephemeral, forward-secure keys in protocols such as TLS,
---