certify 0.5.2

Generate client cert with CA cert
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Certify

Create client certificates for your TLS app.

```rust
let ca = load_ca(ca_cert_pem, ca_key_pem)?;
let (cert_pem, key_pem) = generate_cert(&ca, &[], "US", "web", "abcd1234", true, 365)?;
```

## License

`certify` is distributed under the terms of MIT.

See [LICENSE](LICENSE.md) for details.

Copyright 2021 Tyr Chen