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

1.8 KiB

HSM Key Storage — API Reference

Libraries

Library Install Purpose
boto3 pip install boto3 AWS CloudHSM and KMS API
python-pkcs11 pip install python-pkcs11 PKCS#11 interface for HSM operations

Key boto3 CloudHSMv2 Methods

Method Description
describe_clusters() List CloudHSM clusters
describe_backups() List cluster backups
create_cluster(HsmType, SubnetIds) Create new cluster
create_hsm(ClusterId, AvailabilityZone) Add HSM to cluster
initialize_cluster(ClusterId, SignedCert, TrustAnchor) Initialize cluster

Key boto3 KMS Methods (Custom Key Store)

Method Description
create_custom_key_store() Create KMS custom key store backed by CloudHSM
describe_key(KeyId) Get key metadata including CustomKeyStoreId
create_key(Origin="AWS_CLOUDHSM", CustomKeyStoreId=) Create key in HSM

PKCS#11 Operations

Function Description
C_Initialize Initialize PKCS#11 library
C_OpenSession Open session with HSM
C_Login Authenticate with HSM PIN
C_GenerateKeyPair Generate asymmetric key pair
C_Sign / C_Verify Cryptographic signing operations

HSM Types

Type Use Case
AWS CloudHSM Cloud-native FIPS 140-2 Level 3
Thales Luna On-premises enterprise HSM
nCipher nShield High-assurance code signing

External References