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

77 lines
1.5 KiB
Markdown

# Workflows - Envelope Encryption with AWS KMS
## Workflow 1: Encrypt Data with Envelope Encryption
```
[Application]
|
[Call KMS GenerateDataKey]
(KeyId=CMK ARN, KeySpec=AES_256)
|
[KMS Returns]:
- Plaintext DEK (32 bytes)
- Encrypted DEK (ciphertext blob)
|
[Encrypt Data Locally]
(AES-256-GCM with plaintext DEK)
|
[Store]:
- Encrypted DEK (ciphertext blob)
- Encrypted data (nonce + ciphertext + tag)
- Encryption context metadata
|
[Wipe Plaintext DEK from Memory]
```
## Workflow 2: Decrypt Data
```
[Read Stored Data]
- Encrypted DEK
- Encrypted data
- Encryption context
|
[Call KMS Decrypt]
(CiphertextBlob=Encrypted DEK, EncryptionContext)
|
[KMS Returns Plaintext DEK]
|
[Decrypt Data Locally]
(AES-256-GCM with plaintext DEK)
|
[Return Plaintext Data]
|
[Wipe Plaintext DEK from Memory]
```
## Workflow 3: Key Rotation
```
[Enable Automatic Key Rotation on CMK]
(KMS rotates backing key annually)
|
[New GenerateDataKey calls use new backing key]
|
[Old encrypted DEKs still decrypt]
(KMS tracks all backing key versions)
|
[Optional: Re-encrypt old DEKs]
[Call KMS ReEncrypt to update DEK encryption]
```
## Workflow 4: Multi-Region Encryption
```
[Primary Region (us-east-1)]
|
[Create Multi-Region CMK]
[Replicate to us-west-2, eu-west-1]
|
[Encrypt with Regional Endpoint]
|
[Secondary Region (us-west-2)]
|
[Same Key ID works for Decrypt]
[No cross-region API calls needed]
```