Files
simple-rust-tests/__security/sensitive/src/main.rs
2023-09-09 00:33:22 +08:00

8 lines
157 B
Rust

use std::str::FromStr;
use secstr::SecStr;
fn main() {
let sec_str = SecStr::from_str("hello world").expect("secstr");
println!("{:?}", sec_str);
}