#base32 #nix #nixos #hash #byte-slice

nix-base32

Provides a nix (as in NixOS) compatible base32 encoding

3 releases

0.1.2-alpha.0 Apr 18, 2020
0.1.1 Nov 29, 2019
0.1.0 Nov 29, 2019

#908 in Cryptography

Download history 250/week @ 2024-01-02 191/week @ 2024-01-09 217/week @ 2024-01-16 156/week @ 2024-01-23 118/week @ 2024-01-30 343/week @ 2024-02-06 361/week @ 2024-02-13 405/week @ 2024-02-20 728/week @ 2024-02-27 619/week @ 2024-03-05 519/week @ 2024-03-12 685/week @ 2024-03-19 506/week @ 2024-03-26 571/week @ 2024-04-02 691/week @ 2024-04-09 875/week @ 2024-04-16

2,816 downloads per month
Used in 5 crates (4 directly)

Apache-2.0

6KB

nix-base32

Crate

This crate encodes a [u8] byte slice in a nix-compatible way. SHA256 hash codes in nix are usually encoded in base32 with an unusual set of characters (without E O U T).

    assert_eq!(
        to_nix_base32(
            &hex::decode("ab335240fd942ab8191c5e628cd4ff3903c577bda961fb75df08e0303a00527b")
                .unwrap()
        ),
        "0ysj00x31q08vxsznqd9pmvwa0rrzza8qqjy3hcvhallzm054cxb"
    );

lib.rs:

Encodes [u8] as base32 like nix

This crate encodes a [u8] byte slice in a nix-compatible way. SHA256 hash codes in nix are usually encoded in base32 with an unusual set of characters (without E O U T).

No runtime deps