mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-08-01 16:40:24 +00:00
Place useful parts of the surrounding repos into sica-fondt by layer, per the
body model (Ada = membrane; brain/endocrine/capabilities/knowledge non-Ada):
- brain/ LLM reasoning + providers (dapr, hermes, MoMoA)
- capabilities/ REPRAG sidecars: hermes tools/skills, dapr tools, parallel
dispatch, A51 channels, and the OSINT cluster
- knowledge/ LORAG corpus: 754 cyber-skills, agency personas, secure-coding,
MITRE ATT&CK data
- reference/ defensive threat-reference (C3, shhbruh doc) + AdaYaml parser
License handling: AGPL sources (worldosint, advanced_evolution, mercury,
Reticulum) and GPL DeTTECT are SPEC-only clean-room/port descriptions — no
copyleft code copied. MIT/Apache/data parts copied as working trees.
Safety: shhbruh escape/persistence material and C3 covert-C2 kept as reference
only, not wired into the running organism. See CONSOLIDATION.md.
https://claude.ai/code/session_01UehUqEXXJJCsHoA4voCU5c
34 lines
1.2 KiB
Markdown
34 lines
1.2 KiB
Markdown
# Standards and References - Certificate Authority with OpenSSL
|
|
|
|
## Primary Standards
|
|
|
|
### RFC 5280 - Internet X.509 PKI Certificate and CRL Profile
|
|
- **URL**: https://www.rfc-editor.org/rfc/rfc5280
|
|
- **Description**: Core X.509v3 certificate and CRL format specification
|
|
|
|
### RFC 6960 - X.509 OCSP
|
|
- **URL**: https://www.rfc-editor.org/rfc/rfc6960
|
|
- **Description**: Online Certificate Status Protocol
|
|
|
|
### RFC 3647 - Internet X.509 PKI Certificate Policy and Certification Practices Framework
|
|
- **URL**: https://www.rfc-editor.org/rfc/rfc3647
|
|
- **Description**: Framework for CP and CPS documents
|
|
|
|
### NIST SP 800-57 Part 1 Rev. 5
|
|
- **URL**: https://csrc.nist.gov/publications/detail/sp/800-57-part-1/rev-5/final
|
|
- **Description**: Key management recommendations
|
|
|
|
### CA/Browser Forum Baseline Requirements
|
|
- **URL**: https://cabforum.org/baseline-requirements/
|
|
- **Description**: Requirements for publicly trusted CAs
|
|
|
|
## Tools
|
|
|
|
### OpenSSL
|
|
- **URL**: https://www.openssl.org/
|
|
- **Docs**: https://www.openssl.org/docs/man3.0/man1/
|
|
|
|
### Python cryptography library
|
|
- **URL**: https://cryptography.io/en/latest/x509/
|
|
- **Description**: X.509 certificate generation and parsing
|