method

finish

ruby latest stable - Class: Digest::HMAC

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2_1_10) is shown here.

finish()
private

No documentation available.

# File ext/digest/lib/digest/hmac.rb, line 98
    def finish # :nodoc:
      d = @md.digest!
      @md.update(@opad)
      @md.update(d)
      @md.digest!
    end