attest-tpm 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Readme.md +159 -0
- package/attest-tpm.mjs +1261 -0
- package/package.json +8 -0
package/package.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "attest-tpm",
|
|
3
|
+
"description": "Hardware protected Code Signing without USB tokens. Run a CA/B compliant Code Signing certificate authority that requires Trusted Platform Module key attestation, or use your TPM to obtain a certificate from such an authority and sign `.exe` files.",
|
|
4
|
+
"version": "1.0.1",
|
|
5
|
+
"dependencies": { "koffi": "2.15.1" },
|
|
6
|
+
"repository": { "url": "git+https://github.com/epistemancering/attest-tpm.git" },
|
|
7
|
+
"main": "attest-tpm.mjs"
|
|
8
|
+
}
|