# base16 **Repository Path**: fastdgiot/base16 ## Basic Information - **Project Name**: base16 - **Description**: base16 - **Primary Language**: Erlang - **License**: BSD-2-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-12-22 - **Last Updated**: 2025-12-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Base16 encoding and decoding ============================ API --- Both `encode/1` and `decode/1` functions are of `(binary()) -> binary()` type. The usage looks like: ```erlang B = crypto:rand_bytes(10). H = base16:encode(B). B = base16:decode(H). ``` Please, note: * `base16:encode/1` uses upper-case latters. * `base16:decode/1` requires the argument to be a binary of odd-number size. License ------- The library itself is licensed under the Simplified (2-clause) BSD license.