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

digest_length

        # OpenSSL::Digest.digest_length

(from ruby core)
### Implementation from Digest
---
    digest.digest_length -> integer

---

Returns the output size of the digest, i.e. the length in bytes of the
final message digest result.

### Example
    digest = OpenSSL::Digest.new('SHA1')
    puts digest.digest_length # => 20



      

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.