fil-sapling-crypto 0.3.0

Cryptographic library for Zcash Sapling
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(target_arch = "x86_64")]
extern crate cc;

fn main() {
    if cfg!(target_arch = "x86_64") {
        cc::Build::new()
            .flag("-c")
            .file("./asm/ext_twisted_ed_add.S")
            .compile("libsncrypto-twisted.a");
    }
}