Claude 24f816b6a3
Consolidate 22 sibling repos into layered organism structure
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
2026-06-10 06:53:01 +00:00

37 lines
1.3 KiB
Markdown

# Standards and References - Digital Signatures with Ed25519
## Primary Standards
### RFC 8032 - Edwards-Curve Digital Signature Algorithm (EdDSA)
- **URL**: https://www.rfc-editor.org/rfc/rfc8032
- **Description**: Defines Ed25519 and Ed448 signature algorithms
### RFC 8709 - Ed25519 and Ed448 Public Key Algorithms for SSH
- **URL**: https://www.rfc-editor.org/rfc/rfc8709
- **Description**: SSH key format for Ed25519
### NIST FIPS 186-5 - Digital Signature Standard
- **URL**: https://csrc.nist.gov/publications/detail/fips/186/5/final
- **Description**: Includes EdDSA as approved signature algorithm
### RFC 7748 - Elliptic Curves for Security
- **URL**: https://www.rfc-editor.org/rfc/rfc7748
- **Description**: Defines Curve25519 and Curve448
## Python Libraries
### cryptography (pyca/cryptography)
- **Ed25519**: `cryptography.hazmat.primitives.asymmetric.ed25519`
- **Docs**: https://cryptography.io/en/latest/hazmat/primitives/asymmetric/ed25519/
### PyNaCl (libsodium)
- **URL**: https://pynacl.readthedocs.io/
- **Ed25519**: `nacl.signing`
- **Docs**: https://pynacl.readthedocs.io/en/latest/signing/
## Related
### Daniel J. Bernstein et al. - High-speed high-security signatures
- **URL**: https://ed25519.cr.yp.to/
- **Description**: Original Ed25519 paper and reference implementation