#sgx-sdk #intel-sgx #rand #applications #derive #write #ability

sgxrandderive

Rust SGX SDK提供在Rust编程语言中编写Intel SGX应用的能力

10个稳定版本

1.1.1 2020年4月2日
1.1.0 2019年12月19日
1.0.9 2019年9月16日
1.0.8 2019年6月11日
0.9.8 2018年3月27日

#22 in #能力

每月26次下载

自定义许可证

7KB
86

注意

请访问我们的首页了解使用方法。谢谢!


lib.rs:

支持#[derive(Rand)]

注意

TcsPolicy必须绑定。

示例

extern crate sgx_rand;
#[macro_use]
extern crate sgx_rand_derive;

#[derive(Rand, Debug)]
struct MyStruct {
    a: i32,
    b: u32,
}

fn main() {
    println!("{:?}", sgx_rand::random::<MyStruct>());
}

依赖关系

~1.5MB
~41K SLoC