Skip to content

colinnielsen/noir-u2b

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Noir u2b

License: MIT Nargo Test 🌌

Noir u2b contains helpers functions for converting unsigned integers to [u8] arrays of appropriate size

Usage

In your Nargo.toml file, add the following dependency:

[dependencies]
u2b = { tag = "v0.3.0", git = "https://github.com/colinnielsen/noir-u2b" }

Conversion functions are available for all unsigned integer types u(8-128). They can be used as follows:

use dep::u2b;

fn main(){
    let num: u16 = 256;

    let num_arr = u64_to_u8(num);

    ...

    let num: u64 = 123451224112;

    let num_arr: [u8; 8] = u64_to_u8(num);
}

License

This project is licensed under the MIT License. See the LICENSE file for details.