4 releases

0.1.3 Mar 23, 2022
0.1.2 Jan 24, 2021
0.1.1 Jan 10, 2021
0.1.0 Jan 10, 2021

#1284 in Cryptography

Download history 18/week @ 2024-01-01 23/week @ 2024-01-08 31/week @ 2024-01-15 23/week @ 2024-01-22 34/week @ 2024-01-29 23/week @ 2024-02-05 41/week @ 2024-02-12 42/week @ 2024-02-19 47/week @ 2024-02-26 36/week @ 2024-03-04 38/week @ 2024-03-11 33/week @ 2024-03-18 20/week @ 2024-03-25 65/week @ 2024-04-01 33/week @ 2024-04-08 57/week @ 2024-04-15

179 downloads per month
Used in 2 crates (via lpc55)

Apache-2.0 OR MIT

20KB
360 lines

API docs: https://nickray.github.io/pkcs11-uri/pkcs11_uri/

Getting started

One way to generate URIs to feed into this library is the p11tool in GnuTLS. Running p11tool --list-tokens returns the URIs for all available tokens. Running p11tool --list-all <token URI> then lists all the objects in that token. For private keys, use GNUTLS_PIN=<pin> p11tool --login --list-all <token URI>.

One way to create keypairs to use is with softhsm-util and pkcs11-tool:

softhsm2-util --init-token --free --label my-ca --pin 1234 --so-pin 1234
pkcs11-tool --module /usr/lib/libsofthsm2.so --token my-ca --login --pin 1234 --keypairgen --label my-signing-key --key-type RSA:2048

lib.rs:

PKCS#11 URI

Bare bones implementation of the RFC 7512 URI scheme for locating keys and other PKCS#11 objects.

This library is patched together from existing libraries, namely pkcs11, uriparse and percent-encoding, and is a work in progress.

Dependencies

~1.4–1.8MB
~32K SLoC