mirror of
https://github.com/dyzulk/trustlab-docs.git
synced 2026-01-26 13:32:08 +07:00
doc: remove policies and code signing
This commit is contained in:
@@ -10,9 +10,5 @@
|
|||||||
"knowledge": {
|
"knowledge": {
|
||||||
"title": "Knowledge Base",
|
"title": "Knowledge Base",
|
||||||
"type": "page"
|
"type": "page"
|
||||||
},
|
|
||||||
"policies": {
|
|
||||||
"title": "Policies",
|
|
||||||
"type": "page"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"smime": "S/MIME for Email",
|
"smime": "S/MIME for Email",
|
||||||
"web-servers": "Web Servers (Nginx/IIS)",
|
"web-servers": "Web Servers (Nginx/IIS)"
|
||||||
"code-signing": "Code Signing"
|
|
||||||
}
|
}
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
# Code Signing
|
|
||||||
|
|
||||||
Code signing ensures that scripts and executables have not been tampered with and originate from a trusted source (Internal Developer).
|
|
||||||
|
|
||||||
## Supported Formats
|
|
||||||
- **Microsoft Authenticode** (Executables, PowerShell scripts)
|
|
||||||
- **Java Archive** (JAR files)
|
|
||||||
|
|
||||||
## Signing with SignTool (Windows)
|
|
||||||
|
|
||||||
1. **Install SignTool**: Included in the Windows SDK.
|
|
||||||
2. **Download PFX**: Get your Code Signing certificate in `.pfx` format.
|
|
||||||
3. **Run Command**:
|
|
||||||
|
|
||||||
```powershell
|
|
||||||
signtool sign /f "MyCert.pfx" /p "password" /tr http://timestamp.digicert.com /td sha256 /fd sha256 .\MyApp.exe
|
|
||||||
```
|
|
||||||
|
|
||||||
- `/tr`: Timestamp Server (Recommended so the signature is valid even after cert expiry).
|
|
||||||
- `/fd`: File Digest algorithm (Use SHA256).
|
|
||||||
|
|
||||||
## Verifying Signature
|
|
||||||
Right-click the `.exe` file -> **Properties** -> **Digital Signatures** tab. You should see "TrustLab Internal CA" in the certificate path.
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
# Policies
|
|
||||||
|
|
||||||
Official documents governing the operations and usage of TrustLab PKI.
|
|
||||||
|
|
||||||
- [Certificate Policy (CP)](/policies/cp)
|
|
||||||
- [Certification Practice Statement (CPS)](/policies/cps)
|
|
||||||
Reference in New Issue
Block a user