├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── pull_request_template.md ├── .gitignore ├── .go-version ├── .travis.yml ├── LICENCE.txt ├── README.md ├── aead.go ├── attributes.go ├── attributes_test.go ├── blockmode.go ├── blockmode_test.go ├── certificates.go ├── certificates_test.go ├── close_test.go ├── common.go ├── common_test.go ├── config ├── crypto11.go ├── crypto11_test.go ├── dsa.go ├── dsa_test.go ├── ecdsa.go ├── ecdsa_test.go ├── go.mod ├── go.sum ├── hmac.go ├── hmac_test.go ├── keys.go ├── keys_test.go ├── rand.go ├── rand_test.go ├── rsa.go ├── rsa_test.go ├── sessions.go ├── skip_test.go ├── symmetric.go ├── symmetric_test.go └── thread_test.go /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/.gitignore -------------------------------------------------------------------------------- /.go-version: -------------------------------------------------------------------------------- 1 | 1.25.1 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/README.md -------------------------------------------------------------------------------- /aead.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/aead.go -------------------------------------------------------------------------------- /attributes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/attributes.go -------------------------------------------------------------------------------- /attributes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/attributes_test.go -------------------------------------------------------------------------------- /blockmode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/blockmode.go -------------------------------------------------------------------------------- /blockmode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/blockmode_test.go -------------------------------------------------------------------------------- /certificates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/certificates.go -------------------------------------------------------------------------------- /certificates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/certificates_test.go -------------------------------------------------------------------------------- /close_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/close_test.go -------------------------------------------------------------------------------- /common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/common.go -------------------------------------------------------------------------------- /common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/common_test.go -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/config -------------------------------------------------------------------------------- /crypto11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/crypto11.go -------------------------------------------------------------------------------- /crypto11_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/crypto11_test.go -------------------------------------------------------------------------------- /dsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/dsa.go -------------------------------------------------------------------------------- /dsa_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/dsa_test.go -------------------------------------------------------------------------------- /ecdsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/ecdsa.go -------------------------------------------------------------------------------- /ecdsa_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/ecdsa_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/go.sum -------------------------------------------------------------------------------- /hmac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/hmac.go -------------------------------------------------------------------------------- /hmac_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/hmac_test.go -------------------------------------------------------------------------------- /keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/keys.go -------------------------------------------------------------------------------- /keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/keys_test.go -------------------------------------------------------------------------------- /rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/rand.go -------------------------------------------------------------------------------- /rand_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/rand_test.go -------------------------------------------------------------------------------- /rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/rsa.go -------------------------------------------------------------------------------- /rsa_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/rsa_test.go -------------------------------------------------------------------------------- /sessions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/sessions.go -------------------------------------------------------------------------------- /skip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/skip_test.go -------------------------------------------------------------------------------- /symmetric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/symmetric.go -------------------------------------------------------------------------------- /symmetric_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/symmetric_test.go -------------------------------------------------------------------------------- /thread_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/crypto11/HEAD/thread_test.go --------------------------------------------------------------------------------