package sha

  1. Overview
  2. Docs
Binding to the SHA cryptographic functions

Install

Dune Dependency

Authors

Maintainers

Sources

sha-v1.14.tbz
sha256=29d051bf35f30132d11e45069688257002bfe26463befda257eedce672f39b84
sha512=029a86e1aab43bc496f7cd285f056f0d5b192e0e90ce989d628b2e64ae1dc03860f91d382337a6a772635fe746cc63fe283e1857fa6ab2f51019c3adb3f19108

doc/sha/Sha256/index.html

Module Sha256Source

SHA256 OCaml binding

Sourcetype ctx

context type - opaque

Sourcetype t

digest type - opaque

Sourceval zero : t

The zero digest

Sourceval init : unit -> ctx

Create a new context

Sourceval unsafe_update_substring : ctx -> string -> int -> int -> unit

Sha256.unsafe_update_substring ctx s ofs len updates the context with the substring of s starting at character number ofs and containing len characters. Unsafe: No range checking!

Sourceval update_substring : ctx -> string -> int -> int -> unit

Sha256.update_substring ctx s ofs len updates the context with the substring of s starting at character number ofs and containing len characters.

Sourceval update_string : ctx -> string -> unit

Sha256.update_string ctx s updates the context with s.

Sourceval update_buffer : ctx -> buf -> unit

Sha256.update_buffer ctx a updates the context with a. Runs parallel to other threads if any exist.

Sourceval finalize : ctx -> t

Finalize the context and return digest

Sourceval copy : ctx -> ctx

Return an copy of the context

Sourceval string : string -> t

Return the digest of the given string.

Sourceval substring : string -> int -> int -> t

Sha256.substring s ofs len returns the digest of the substring of s starting at character number ofs and containing len characters.

Sourceval buffer : buf -> t

Return the digest of the given buffer.

Sourceval channel : in_channel -> int -> t

If len is nonnegative, Sha256.channel ic len reads len characters from channel ic and returns their digest, or raises End_of_file if end-of-file is reached before len characters are read. If len is negative, Sha256.channel ic len reads all characters from ic until end-of-file is reached and return their digest.

Sourceval file : string -> t

Return the digest of the file whose name is given.

Sourceval file_fast : string -> t

Return the digest of the file whose name is given using fast C function

Sourceval output : out_channel -> t -> unit

Write a digest on the given output channel.

Sourceval input : in_channel -> t

Read a digest from the given input channel.

Sourceval to_bin : t -> string

return a binary representation of the given digest

Sourceval to_hex : t -> string

return a printable hexadecimal representation of the given digest

OCaml

Innovation. Community. Security.