8 lines
161 B
Rust
8 lines
161 B
Rust
use occlum_ratls::prelude::*;
|
|
|
|
fn main() {
|
|
println!("Example of sealing");
|
|
let config = SealingConfig::new().unwrap();
|
|
config.print_sealing_key();
|
|
}
|