OCaml library for Crockford's Base32

license headers

Changed files
+10
lib
+5
lib/crockford.ml
···
+
(*---------------------------------------------------------------------------
+
Copyright (c) 2025 Anil Madhavapeddy. All rights reserved.
+
SPDX-License-Identifier: MIT
+
---------------------------------------------------------------------------*)
+
type invalid_length = { length: int; message: string }
type invalid_character = { char: char; message: string }
type invalid_checksum = { checksum: string; message: string }
+5
lib/crockford.mli
···
+
(*---------------------------------------------------------------------------
+
Copyright (c) 2025 Anil Madhavapeddy. All rights reserved.
+
SPDX-License-Identifier: MIT
+
---------------------------------------------------------------------------*)
+
(** Crockford Base32 encoding for OCaml *)
(** {1 Error Types} *)