@gorbchain-xyz/chaindecode
Version:
GorbchainSDK V1.3+ - Complete Solana development toolkit with advanced cryptography, messaging, and collaboration features. Build secure applications with blockchain, DeFi, and end-to-end encryption.
21 lines (20 loc) • 709 B
TypeScript
/**
* Cryptographic operations for Gorbchain SDK
*
* Provides secure encryption and decryption functionality:
* - Personal encryption (using private key)
* - Direct encryption (to specific recipients)
* - Group encryption (static and dynamic groups)
* - Signature-based access control
* - Shared key management (scalable encryption)
* - Seamless single-to-group encryption transitions
*/
export * from './types.js';
export * from './personal.js';
export * from './direct.js';
export * from './group.js';
export * from './signature-group.js';
export * from './shared-key-manager.js';
export * from './scalable-encryption.js';
export * from './utils.js';
export { CryptoManager } from './manager.js';