Class: Rex::Proto::Kerberos::Crypto::RsaMd5
- Inherits:
-
Object
- Object
- Rex::Proto::Kerberos::Crypto::RsaMd5
- Defined in:
- lib/rex/proto/kerberos/crypto/rsa_md5.rb
Instance Method Summary collapse
-
#checksum(key, msg_type, data) ⇒ String
The MD5 checksum of the data.
Instance Method Details
#checksum(key, msg_type, data) ⇒ String
The MD5 checksum of the data
14 15 16 |
# File 'lib/rex/proto/kerberos/crypto/rsa_md5.rb', line 14 def checksum(key, msg_type, data) Rex::Text.md5_raw(data) end |