class HMAC::SHA512
Public Class Methods
new(key = nil)
click to toggle source
Calls superclass method
# File lib/hmac-sha2.rb, line 20 def initialize(key = nil) super(Digest::SHA512, 128, 64, key) end