module OpenSSL::DigestBase
Direct including types
Defined in:
openssl/digest/digest_base.crInstance Method Summary
-
#<<(data) : Digest
Reads the io's data and updates the digest with it.
-
#base64digest : String
Returns a base64-encoded digest.
-
#digest : Bytes
Clones and finishes the digest.
-
#file(file_name : Path | String) : Digest
Reads the file's content and updates the digest with it.
-
#hexdigest : String
Returns a hexadecimal-encoded digest.
-
#to_s(io : IO) : Nil
Returns a hexadecimal-encoded digest.
-
#update(io : IO) : Digest
Reads the io's data and updates the digest with it.
Instance Method Detail
Reads the file's content and updates the digest with it.