class DiffieHellmanParameters: (source)
| Class Method | fromFile |
Load parameters from a file. |
| Method | __init__ |
Undocumented |
| Instance Variable | _dhFile |
Undocumented |
Load parameters from a file.
Such a file can be generated using the openssl command line tool as following:
openssl dhparam -out dh_param_2048.pem -2 2048
Please refer to OpenSSL's dhparam documentation for further details.
| Parameters | |
filePath:FilePath | A file containing parameters for Diffie-Hellman key exchange. |
| Returns | |
DiffieHellmanParameters | An instance that loads its parameters from filePath. |