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

3.3 KiB

Standards and References - AES Encryption for Data at Rest

Primary Standards

NIST FIPS 197 - Advanced Encryption Standard (AES)

NIST SP 800-38D - Recommendation for Block Cipher Modes: GCM and GMAC

NIST SP 800-132 - Recommendation for Password-Based Key Derivation

NIST SP 800-38A - Recommendation for Block Cipher Modes of Operation

NIST SP 800-57 Part 1 Rev. 5 - Key Management

RFC Standards

RFC 5116 - An Interface and Algorithms for Authenticated Encryption

RFC 5869 - HMAC-based Extract-and-Expand Key Derivation Function (HKDF)

RFC 9106 - Argon2 Memory-Hard Function

Compliance Frameworks

PCI DSS v4.0 - Requirement 3

  • Encrypt stored cardholder data with strong cryptography
  • AES-256 meets the strong cryptography requirement
  • Key management procedures required

HIPAA Security Rule - 45 CFR 164.312(a)(2)(iv)

  • Encryption of ePHI at rest is an addressable implementation specification
  • AES-256 is an acceptable encryption method

GDPR Article 32 - Security of Processing

  • Encryption is listed as an appropriate technical measure
  • AES-256 satisfies encryption requirements for personal data protection

Python Library References

cryptography (pyca/cryptography)

PyCryptodome