Flowdock
method

generate_key!

Importance_1
Ruby latest stable (v2_5_5) - 0 notes - Class: DH
generate_key!() public

Generates a private and public key unless a private key already exists. If this DH instance was generated from public DH parameters (e.g. by encoding the result of DH#public_key), then this method needs to be called first in order to generate the per-session keys before performing the actual key exchange.

Example

dh = OpenSSL::PKey::DH.new(2048)
public_key = dh.public_key #contains no private/public key yet
public_key.generate_key!
puts public_key.private? # => true
Show source
Register or log in to add new notes.