#openpgp #pgp #sequoia #random

openpgp-ca-lib

OpenPGP CA是一个用于管理和认证OpenPGP密钥的工具

11个版本

0.14.0 2024年7月10日
0.13.1 2024年1月27日
0.13.0 2023年8月18日
0.13.0-alpha.12023年4月23日
0.10.1 2021年5月7日

#2354 in 密码学


2 crates 中使用

GPL-3.0-or-later

220KB
4.5K SLoC

将OpenPGP CA功能作为库

示例用法

// all state of an OpenPGP CA instance is persisted in one SQLite database
let db_filename = "/tmp/openpgp-ca.sqlite";

// Set up a new, uninitialized OpenPGP CA database
// (implicitly creates the database file).
let ca_uninit = Uninit::new(Some(db_filename)).expect("Failed to set up CA");

// Initialize the CA, create the CA key (with domain name and descriptive name)
let ca = ca_uninit
    .init_softkey("example.org", Some("Example Org OpenPGP CA Key"), None)
    .unwrap();

// Create a new user, certified by the CA, and a trust signature by the user
// key on the CA key.
//
// The new private key for the user is printed to stdout and needs to be manually
// processed from there.
ca.user_new(
    Some(&"Alice"),
    &["alice@example.org"],
    None,
    false,
    None,
    false,
    None,
    true,
    true,
    false,
)
.unwrap();

依赖项

~68MB
~1M SLoC