├── .github └── workflows │ ├── ci.yml │ ├── ci.yml.in │ ├── codeql-analysis.yml │ ├── codespell.yml │ └── coverity.yml ├── .gitignore ├── COPYING ├── INSTALL.md ├── Makefile.am ├── Makefile.mak ├── Makefile.mingw ├── NEWS ├── README.md ├── bootstrap ├── codespell_ignore_words.txt ├── configure.ac ├── doc ├── Makefile.am ├── doxygen-footer.html ├── doxygen.conf.in └── opensc-logo.gif ├── examples ├── Makefile.am ├── README ├── auth.c ├── decrypt.c ├── eckeygen.c ├── ed25519keygen.c ├── ed448keygen.c ├── getrandom.c ├── listkeys.c ├── listkeys_ext.c ├── rsakeygen.c └── storecert.c ├── m4 ├── .keep ├── ax_pthread.m4 └── ld-version-script.m4 ├── make.rules.mak ├── src ├── Makefile.am ├── Makefile.mak ├── eng_back.c ├── eng_err.c ├── eng_err.h ├── eng_front.c ├── engine.h ├── libp11-int.h ├── libp11.exports ├── libp11.h ├── libp11.pc.in ├── libp11.rc ├── libp11.rc.in ├── libpkcs11.c ├── p11.ec ├── p11_atfork.c ├── p11_attr.c ├── p11_cert.c ├── p11_ckr.c ├── p11_ec.c ├── p11_eddsa.c ├── p11_err.c ├── p11_err.h ├── p11_front.c ├── p11_key.c ├── p11_load.c ├── p11_misc.c ├── p11_pkey.c ├── p11_pthread.h ├── p11_rsa.c ├── p11_slot.c ├── pkcs11.exports ├── pkcs11.h ├── pkcs11.rc ├── pkcs11.rc.in ├── pkcs11prov.exports ├── pkcs11prov.rc ├── pkcs11prov.rc.in ├── provider.c ├── util.h └── util_uri.c ├── testall.sh └── tests ├── Makefile.am ├── case-insensitive.softhsm ├── check-all-prov.c ├── check-privkey-prov.c ├── check-privkey.c ├── common.sh ├── dup-key-prov.c ├── dup-key.c ├── ec-cert-store.softhsm ├── ec-cert.der ├── ec-check-privkey.softhsm ├── ec-copy.softhsm ├── ec-evp-sign.softhsm ├── ec-keygen.c ├── ec-keygen.softhsm ├── ec-privkey.der ├── ec-pubkey.der ├── ec-testfork.softhsm ├── ed25519-keygen-prov.c ├── ed25519-keygen.c ├── ed25519-keygen.softhsm ├── ed448-keygen-prov.c ├── ed448-keygen.c ├── ed448-keygen.softhsm ├── eddsa_common.c ├── eddsa_common.h ├── engines.cnf.in ├── evp-sign-prov.c ├── evp-sign.c ├── fork-change-slot-prov.c ├── fork-change-slot.c ├── fork-change-slot.softhsm ├── fork-test.c ├── helpers_prov.c ├── helpers_prov.h ├── list-tokens.c ├── openssl-settings.sh ├── openssl_version.c ├── pkcs11-uri-pin-source.softhsm ├── pkcs11-uri-without-token.softhsm ├── provider-case-insensitive.softhsm ├── provider-ec-check-all.softhsm ├── provider-ec-check-privkey.softhsm ├── provider-ec-copy.softhsm ├── provider-ec-evp-sign.softhsm ├── provider-ed25519-keygen.softhsm ├── provider-ed448-keygen.softhsm ├── provider-fork-change-slot.softhsm ├── provider-pkcs11-uri-without-token.softhsm ├── provider-rsa-check-all.softhsm ├── provider-rsa-check-privkey.softhsm ├── provider-rsa-evp-sign.softhsm ├── provider-rsa-oaep.softhsm ├── provider-rsa-pss-sign.softhsm ├── provider-search-all-matching-tokens.softhsm ├── rsa-cert-store.softhsm ├── rsa-cert.der ├── rsa-check-privkey.softhsm ├── rsa-evp-sign.softhsm ├── rsa-keygen.c ├── rsa-keygen.softhsm ├── rsa-oaep-prov.c ├── rsa-oaep.c ├── rsa-oaep.softhsm ├── rsa-privkey.der ├── rsa-pss-sign-prov.c ├── rsa-pss-sign.c ├── rsa-pss-sign.softhsm ├── rsa-pubkey.der ├── rsa-testfork.softhsm ├── rsa-testlistkeys.softhsm ├── rsa-testlistkeys_ext.softhsm ├── rsa-testpkcs11.softhsm └── search-all-matching-tokens.softhsm /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/.github/workflows/ci.yml.in -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/codespell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/.github/workflows/codespell.yml -------------------------------------------------------------------------------- /.github/workflows/coverity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/.github/workflows/coverity.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/INSTALL.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/Makefile.mak -------------------------------------------------------------------------------- /Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/Makefile.mingw -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/bootstrap -------------------------------------------------------------------------------- /codespell_ignore_words.txt: -------------------------------------------------------------------------------- 1 | nmake 2 | parms 3 | ro 4 | fo 5 | gost 6 | standarts 7 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/doxygen-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/doc/doxygen-footer.html -------------------------------------------------------------------------------- /doc/doxygen.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/doc/doxygen.conf.in -------------------------------------------------------------------------------- /doc/opensc-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/doc/opensc-logo.gif -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/examples/README -------------------------------------------------------------------------------- /examples/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/examples/auth.c -------------------------------------------------------------------------------- /examples/decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/examples/decrypt.c -------------------------------------------------------------------------------- /examples/eckeygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/examples/eckeygen.c -------------------------------------------------------------------------------- /examples/ed25519keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/examples/ed25519keygen.c -------------------------------------------------------------------------------- /examples/ed448keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/examples/ed448keygen.c -------------------------------------------------------------------------------- /examples/getrandom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/examples/getrandom.c -------------------------------------------------------------------------------- /examples/listkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/examples/listkeys.c -------------------------------------------------------------------------------- /examples/listkeys_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/examples/listkeys_ext.c -------------------------------------------------------------------------------- /examples/rsakeygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/examples/rsakeygen.c -------------------------------------------------------------------------------- /examples/storecert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/examples/storecert.c -------------------------------------------------------------------------------- /m4/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /m4/ld-version-script.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/m4/ld-version-script.m4 -------------------------------------------------------------------------------- /make.rules.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/make.rules.mak -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/Makefile.mak -------------------------------------------------------------------------------- /src/eng_back.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/eng_back.c -------------------------------------------------------------------------------- /src/eng_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/eng_err.c -------------------------------------------------------------------------------- /src/eng_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/eng_err.h -------------------------------------------------------------------------------- /src/eng_front.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/eng_front.c -------------------------------------------------------------------------------- /src/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/engine.h -------------------------------------------------------------------------------- /src/libp11-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/libp11-int.h -------------------------------------------------------------------------------- /src/libp11.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/libp11.exports -------------------------------------------------------------------------------- /src/libp11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/libp11.h -------------------------------------------------------------------------------- /src/libp11.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/libp11.pc.in -------------------------------------------------------------------------------- /src/libp11.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/libp11.rc -------------------------------------------------------------------------------- /src/libp11.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/libp11.rc.in -------------------------------------------------------------------------------- /src/libpkcs11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/libpkcs11.c -------------------------------------------------------------------------------- /src/p11.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/p11.ec -------------------------------------------------------------------------------- /src/p11_atfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/p11_atfork.c -------------------------------------------------------------------------------- /src/p11_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/p11_attr.c -------------------------------------------------------------------------------- /src/p11_cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/p11_cert.c -------------------------------------------------------------------------------- /src/p11_ckr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/p11_ckr.c -------------------------------------------------------------------------------- /src/p11_ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/p11_ec.c -------------------------------------------------------------------------------- /src/p11_eddsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/p11_eddsa.c -------------------------------------------------------------------------------- /src/p11_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/p11_err.c -------------------------------------------------------------------------------- /src/p11_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/p11_err.h -------------------------------------------------------------------------------- /src/p11_front.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/p11_front.c -------------------------------------------------------------------------------- /src/p11_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/p11_key.c -------------------------------------------------------------------------------- /src/p11_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/p11_load.c -------------------------------------------------------------------------------- /src/p11_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/p11_misc.c -------------------------------------------------------------------------------- /src/p11_pkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/p11_pkey.c -------------------------------------------------------------------------------- /src/p11_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/p11_pthread.h -------------------------------------------------------------------------------- /src/p11_rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/p11_rsa.c -------------------------------------------------------------------------------- /src/p11_slot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/p11_slot.c -------------------------------------------------------------------------------- /src/pkcs11.exports: -------------------------------------------------------------------------------- 1 | v_check 2 | bind_engine 3 | -------------------------------------------------------------------------------- /src/pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/pkcs11.h -------------------------------------------------------------------------------- /src/pkcs11.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/pkcs11.rc -------------------------------------------------------------------------------- /src/pkcs11.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/pkcs11.rc.in -------------------------------------------------------------------------------- /src/pkcs11prov.exports: -------------------------------------------------------------------------------- 1 | OSSL_provider_init 2 | -------------------------------------------------------------------------------- /src/pkcs11prov.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/pkcs11prov.rc -------------------------------------------------------------------------------- /src/pkcs11prov.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/pkcs11prov.rc.in -------------------------------------------------------------------------------- /src/provider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/provider.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/util.h -------------------------------------------------------------------------------- /src/util_uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/src/util_uri.c -------------------------------------------------------------------------------- /testall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/testall.sh -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/case-insensitive.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/case-insensitive.softhsm -------------------------------------------------------------------------------- /tests/check-all-prov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/check-all-prov.c -------------------------------------------------------------------------------- /tests/check-privkey-prov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/check-privkey-prov.c -------------------------------------------------------------------------------- /tests/check-privkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/check-privkey.c -------------------------------------------------------------------------------- /tests/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/common.sh -------------------------------------------------------------------------------- /tests/dup-key-prov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/dup-key-prov.c -------------------------------------------------------------------------------- /tests/dup-key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/dup-key.c -------------------------------------------------------------------------------- /tests/ec-cert-store.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/ec-cert-store.softhsm -------------------------------------------------------------------------------- /tests/ec-cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/ec-cert.der -------------------------------------------------------------------------------- /tests/ec-check-privkey.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/ec-check-privkey.softhsm -------------------------------------------------------------------------------- /tests/ec-copy.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/ec-copy.softhsm -------------------------------------------------------------------------------- /tests/ec-evp-sign.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/ec-evp-sign.softhsm -------------------------------------------------------------------------------- /tests/ec-keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/ec-keygen.c -------------------------------------------------------------------------------- /tests/ec-keygen.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/ec-keygen.softhsm -------------------------------------------------------------------------------- /tests/ec-privkey.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/ec-privkey.der -------------------------------------------------------------------------------- /tests/ec-pubkey.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/ec-pubkey.der -------------------------------------------------------------------------------- /tests/ec-testfork.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/ec-testfork.softhsm -------------------------------------------------------------------------------- /tests/ed25519-keygen-prov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/ed25519-keygen-prov.c -------------------------------------------------------------------------------- /tests/ed25519-keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/ed25519-keygen.c -------------------------------------------------------------------------------- /tests/ed25519-keygen.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/ed25519-keygen.softhsm -------------------------------------------------------------------------------- /tests/ed448-keygen-prov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/ed448-keygen-prov.c -------------------------------------------------------------------------------- /tests/ed448-keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/ed448-keygen.c -------------------------------------------------------------------------------- /tests/ed448-keygen.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/ed448-keygen.softhsm -------------------------------------------------------------------------------- /tests/eddsa_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/eddsa_common.c -------------------------------------------------------------------------------- /tests/eddsa_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/eddsa_common.h -------------------------------------------------------------------------------- /tests/engines.cnf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/engines.cnf.in -------------------------------------------------------------------------------- /tests/evp-sign-prov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/evp-sign-prov.c -------------------------------------------------------------------------------- /tests/evp-sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/evp-sign.c -------------------------------------------------------------------------------- /tests/fork-change-slot-prov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/fork-change-slot-prov.c -------------------------------------------------------------------------------- /tests/fork-change-slot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/fork-change-slot.c -------------------------------------------------------------------------------- /tests/fork-change-slot.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/fork-change-slot.softhsm -------------------------------------------------------------------------------- /tests/fork-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/fork-test.c -------------------------------------------------------------------------------- /tests/helpers_prov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/helpers_prov.c -------------------------------------------------------------------------------- /tests/helpers_prov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/helpers_prov.h -------------------------------------------------------------------------------- /tests/list-tokens.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/list-tokens.c -------------------------------------------------------------------------------- /tests/openssl-settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/openssl-settings.sh -------------------------------------------------------------------------------- /tests/openssl_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/openssl_version.c -------------------------------------------------------------------------------- /tests/pkcs11-uri-pin-source.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/pkcs11-uri-pin-source.softhsm -------------------------------------------------------------------------------- /tests/pkcs11-uri-without-token.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/pkcs11-uri-without-token.softhsm -------------------------------------------------------------------------------- /tests/provider-case-insensitive.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/provider-case-insensitive.softhsm -------------------------------------------------------------------------------- /tests/provider-ec-check-all.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/provider-ec-check-all.softhsm -------------------------------------------------------------------------------- /tests/provider-ec-check-privkey.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/provider-ec-check-privkey.softhsm -------------------------------------------------------------------------------- /tests/provider-ec-copy.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/provider-ec-copy.softhsm -------------------------------------------------------------------------------- /tests/provider-ec-evp-sign.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/provider-ec-evp-sign.softhsm -------------------------------------------------------------------------------- /tests/provider-ed25519-keygen.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/provider-ed25519-keygen.softhsm -------------------------------------------------------------------------------- /tests/provider-ed448-keygen.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/provider-ed448-keygen.softhsm -------------------------------------------------------------------------------- /tests/provider-fork-change-slot.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/provider-fork-change-slot.softhsm -------------------------------------------------------------------------------- /tests/provider-pkcs11-uri-without-token.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/provider-pkcs11-uri-without-token.softhsm -------------------------------------------------------------------------------- /tests/provider-rsa-check-all.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/provider-rsa-check-all.softhsm -------------------------------------------------------------------------------- /tests/provider-rsa-check-privkey.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/provider-rsa-check-privkey.softhsm -------------------------------------------------------------------------------- /tests/provider-rsa-evp-sign.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/provider-rsa-evp-sign.softhsm -------------------------------------------------------------------------------- /tests/provider-rsa-oaep.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/provider-rsa-oaep.softhsm -------------------------------------------------------------------------------- /tests/provider-rsa-pss-sign.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/provider-rsa-pss-sign.softhsm -------------------------------------------------------------------------------- /tests/provider-search-all-matching-tokens.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/provider-search-all-matching-tokens.softhsm -------------------------------------------------------------------------------- /tests/rsa-cert-store.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/rsa-cert-store.softhsm -------------------------------------------------------------------------------- /tests/rsa-cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/rsa-cert.der -------------------------------------------------------------------------------- /tests/rsa-check-privkey.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/rsa-check-privkey.softhsm -------------------------------------------------------------------------------- /tests/rsa-evp-sign.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/rsa-evp-sign.softhsm -------------------------------------------------------------------------------- /tests/rsa-keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/rsa-keygen.c -------------------------------------------------------------------------------- /tests/rsa-keygen.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/rsa-keygen.softhsm -------------------------------------------------------------------------------- /tests/rsa-oaep-prov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/rsa-oaep-prov.c -------------------------------------------------------------------------------- /tests/rsa-oaep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/rsa-oaep.c -------------------------------------------------------------------------------- /tests/rsa-oaep.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/rsa-oaep.softhsm -------------------------------------------------------------------------------- /tests/rsa-privkey.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/rsa-privkey.der -------------------------------------------------------------------------------- /tests/rsa-pss-sign-prov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/rsa-pss-sign-prov.c -------------------------------------------------------------------------------- /tests/rsa-pss-sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/rsa-pss-sign.c -------------------------------------------------------------------------------- /tests/rsa-pss-sign.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/rsa-pss-sign.softhsm -------------------------------------------------------------------------------- /tests/rsa-pubkey.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/rsa-pubkey.der -------------------------------------------------------------------------------- /tests/rsa-testfork.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/rsa-testfork.softhsm -------------------------------------------------------------------------------- /tests/rsa-testlistkeys.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/rsa-testlistkeys.softhsm -------------------------------------------------------------------------------- /tests/rsa-testlistkeys_ext.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/rsa-testlistkeys_ext.softhsm -------------------------------------------------------------------------------- /tests/rsa-testpkcs11.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/rsa-testpkcs11.softhsm -------------------------------------------------------------------------------- /tests/search-all-matching-tokens.softhsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSC/libp11/HEAD/tests/search-all-matching-tokens.softhsm --------------------------------------------------------------------------------