class OpenID::Server::DiffieHellmanSHA256ServerSession

Public Class Methods

new(*args) click to toggle source
# File lib/openid/server.rb, line 272
def initialize(*args)
  super(*args)
  @session_type = 'DH-SHA256'
  @hash_func = CryptUtil.method('sha256')
  @allowed_assoc_types = ['HMAC-SHA256'].freeze
end