secubox-openwrt/package/secubox/secubox-identity/Makefile
CyberMind-FR 006ff03c86 feat(mirrornet): Add v0.19 MirrorNetworking core packages
MirrorNet Core (secubox-mirrornet):
- DID-based identity (did:plc:) with keypair management
- Peer reputation scoring (0-100) with trust levels
- Service mirroring via reverse proxy chaining
- Enhanced gossip protocol with priority routing
- Health monitoring with anomaly detection
- mirrorctl CLI with 30+ commands

Identity Package (secubox-identity):
- Standalone DID generation (AT Protocol compatible)
- HMAC-SHA256 keys with Ed25519 fallback
- Key rotation with backup support
- Trust scoring integration
- identityctl CLI with 25+ commands

P2P Intel Package (secubox-p2p-intel):
- Signed IOC sharing for mesh
- Collectors: CrowdSec, mitmproxy, WAF, DNS Guard
- Cryptographic signing and validation
- Source trust verification
- Application: nftables/iptables/CrowdSec
- Approval workflow for manual review
- p2p-intelctl CLI with 20+ commands

LuCI Dashboard (luci-app-secubox-mirror):
- Identity card with DID, hostname, role
- Peer reputation table with trust levels
- Gossip protocol statistics
- Health alerts with acknowledgment
- RPCD handler with 15 methods

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-05 18:43:19 +01:00

54 lines
1.4 KiB
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=secubox-identity
PKG_VERSION:=0.1.0
PKG_RELEASE:=1
PKG_MAINTAINER:=SecuBox Team <dev@secubox.io>
PKG_LICENSE:=GPL-3.0
include $(INCLUDE_DIR)/package.mk
define Package/secubox-identity
SECTION:=secubox
CATEGORY:=SecuBox
TITLE:=SecuBox Identity Management
DEPENDS:=+jsonfilter +openssl-util
PKGARCH:=all
endef
define Package/secubox-identity/description
Decentralized identity management for SecuBox mesh nodes.
Features:
- DID generation (did:plc:<fingerprint>)
- Cryptographic keypair management
- Key rotation with backup
- Identity document export/import
- Peer identity verification
- Trust scoring integration
endef
define Package/secubox-identity/conffiles
/etc/config/identity
endef
define Build/Compile
endef
define Package/secubox-identity/install
$(INSTALL_DIR) $(1)/etc/config
$(INSTALL_CONF) ./files/etc/config/identity $(1)/etc/config/identity
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) ./files/usr/sbin/identityctl $(1)/usr/sbin/identityctl
$(INSTALL_DIR) $(1)/usr/lib/secubox-identity
$(INSTALL_DATA) ./files/usr/lib/secubox-identity/core.sh $(1)/usr/lib/secubox-identity/core.sh
$(INSTALL_DATA) ./files/usr/lib/secubox-identity/keys.sh $(1)/usr/lib/secubox-identity/keys.sh
$(INSTALL_DATA) ./files/usr/lib/secubox-identity/trust.sh $(1)/usr/lib/secubox-identity/trust.sh
$(INSTALL_DIR) $(1)/var/lib/secubox-identity
endef
$(eval $(call BuildPackage,secubox-identity))