Type:
Class

An implementation of the Diffie-Hellman key exchange protocol based on discrete logarithms in finite fields, the same basis that DSA is built on.

Accessor methods for the Diffie-Hellman parameters

  • DH#p

The prime (an OpenSSL::BN) of the Diffie-Hellman parameters.

  • DH#g

The generator (an OpenSSL::BN) g of the Diffie-Hellman parameters.

  • DH#pub_key

The per-session public key (an OpenSSL::BN) matching the private key. This needs to be passed to #compute_key.

  • DH#priv_key

The per-session private key, an OpenSSL::BN.

Example of a key exchange

dh1 = OpenSSL::PKey::DH.new(2048)
der = dh1.public_key.to_der #you may send this publicly to the participating party
dh2 = OpenSSL::PKey::DH.new(der)
dh2.generate_key! #generate the per-session key pair
symm_key1 = dh1.compute_key(dh2.pub_key)
symm_key2 = dh2.compute_key(dh1.pub_key)

puts symm_key1 == symm_key2 # => true
private?

dh.private? â true | false Instance Public methods Indicates whether this

2015-04-25 14:41:51
generate

DH.generate(size [, generator]) â dh Class Public methods Creates a new

2015-04-25 14:08:54
public?

dh.public? â true | false Instance Public methods Indicates whether this

2015-04-25 14:45:06
to_s

to_s() Instance Public methods Alias for:

2015-04-25 15:04:56
to_pem

to_pem() Instance Public methods Alias for:

2015-04-25 15:01:54
public_key

dh.public_key â aDH Instance Public methods Returns a new

2015-04-25 14:51:53
generate_key!

dh.generate_key! â self Instance Public methods Generates a private and public

2015-04-25 14:28:05
to_der

dh.to_der â aString Instance Public methods Encodes this

2015-04-25 14:57:43
new

DH.new([size [, generator] | string]) â dh Class Public methods Either generates

2015-04-25 14:13:44
compute_key

dh.compute_key(pub_bn) â aString Instance Public methods Returns a String containing

2015-04-25 14:18:47