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