The MD5-96 HMAC algorithm. This returns only the first 12 bytes of the digest.

Methods
Public Class methods
new()

Create a new instance of the MD5-96 algorithm.

    # File lib/net/ssh/transport/ossl/hmac/md5-96.rb, line 32
32:             def initialize
33:               super
34:               @mac_length = 12
35:             end

[Validate]