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

block_length

        # Digest::SHA2.block_length

(from ruby core)
### Implementation from SHA2
---
    digest_obj.block_length -> Integer

---

Return the block length of the digest in bytes.

    Digest::SHA256.new.block_length * 8
    # => 512
    Digest::SHA384.new.block_length * 8
    # => 1024
    Digest::SHA512.new.block_length * 8
    # => 1024



      

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.