bigblocks
Version:
Complete Bitcoin UI component library - authentication, social, wallet, market, inscriptions, and blockchain interactions for React
18 lines (17 loc) • 979 B
JavaScript
// BAP Identity Management Module
// Advanced Bitcoin Attestation Protocol components for identity management
// Components
export { BapKeyRotationManager } from "./components/BapKeyRotationManager.js";
export { BapFileSigner } from "./components/BapFileSigner.js";
export { BapEncryptionSuite } from "./components/BapEncryptionSuite.js";
export { MasterKeyMigration } from "./components/MasterKeyMigration.js";
export { BackupFormatDetector } from "./components/BackupFormatDetector.js";
export { BapProfileSync } from "./components/BapProfileSync.js";
// Individual hooks
export { useBapKeyRotation } from "./hooks/useBapKeyRotation.js";
export { useBapSigning } from "./hooks/useBapSigning.js";
export { useBapEncryption } from "./hooks/useBapEncryption.js";
export { useMasterKeyMigration } from "./hooks/useMasterKeyMigration.js";
export { useBapProfileSync } from "./hooks/useBapProfileSync.js";
// Combined hook
export { useBapIdentity } from "./hooks/useBapIdentity.js";