# File lib/net/ssh/transport/kex/ecdh_sha2_nistp256.rb, line 21
21:     def initialize(algorithms, connection, data)
22:       @algorithms = algorithms
23:       @connection = connection
24: 
25:       @digester = digester
26:       @data = data.dup
27:       @ecdh = generate_key
28:       @logger = @data.delete(:logger)
29:     end