├── .gitattributes ├── .github └── workflows │ ├── android.yml │ ├── ios.yml │ ├── linux.yml │ ├── macos.yml │ └── windows.yml ├── .gitignore ├── CHANGELOG ├── LICENSE.md ├── NOTICE.md ├── README.md └── src ├── cryptoki ├── pkcs11.h ├── pkcs11f.h └── pkcs11t.h ├── empty-pkcs11.c └── empty-pkcs11.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pkcs11Interop/empty-pkcs11/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pkcs11Interop/empty-pkcs11/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pkcs11Interop/empty-pkcs11/HEAD/.github/workflows/ios.yml -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pkcs11Interop/empty-pkcs11/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pkcs11Interop/empty-pkcs11/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pkcs11Interop/empty-pkcs11/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pkcs11Interop/empty-pkcs11/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pkcs11Interop/empty-pkcs11/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pkcs11Interop/empty-pkcs11/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pkcs11Interop/empty-pkcs11/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pkcs11Interop/empty-pkcs11/HEAD/README.md -------------------------------------------------------------------------------- /src/cryptoki/pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pkcs11Interop/empty-pkcs11/HEAD/src/cryptoki/pkcs11.h -------------------------------------------------------------------------------- /src/cryptoki/pkcs11f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pkcs11Interop/empty-pkcs11/HEAD/src/cryptoki/pkcs11f.h -------------------------------------------------------------------------------- /src/cryptoki/pkcs11t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pkcs11Interop/empty-pkcs11/HEAD/src/cryptoki/pkcs11t.h -------------------------------------------------------------------------------- /src/empty-pkcs11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pkcs11Interop/empty-pkcs11/HEAD/src/empty-pkcs11.c -------------------------------------------------------------------------------- /src/empty-pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pkcs11Interop/empty-pkcs11/HEAD/src/empty-pkcs11.h --------------------------------------------------------------------------------