This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

base64digest

        # OpenSSL::HMAC.base64digest

(from ruby core)
### Implementation from HMAC
---
    HMAC.base64digest(digest, key, data) -> aString

---

Returns the authentication code as a Base64-encoded string. The *digest*
parameter specifies the digest algorithm to use. This may be a String
representing the algorithm name or an instance of OpenSSL::Digest.

### Example
    key = 'key'
    data = 'The quick brown fox jumps over the lazy dog'

    hmac = OpenSSL::HMAC.base64digest('SHA1', key, data)
    #=> "3nybhbi3iqa8ino29wqQcBydtNk="


(from ruby core)
### Implementation from HMAC
---
    hmac.base64digest -> string

---

Returns the authentication code an a Base64-encoded string.



      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.