feat:
- added retry logic with exponential backoff - per request base_url setting - configurable key_dir - protocol downgrade protection - public secure memory API
This commit is contained in:
parent
3b1792e613
commit
76b2a284d5
5 changed files with 220 additions and 37 deletions
10
src/index.ts
10
src/index.ts
|
|
@ -13,3 +13,13 @@ export * from './types/crypto';
|
|||
|
||||
// Export errors
|
||||
export * from './errors';
|
||||
|
||||
// Secure memory public API — mirrors Python's get_memory_protection_info(),
|
||||
// disable_secure_memory(), enable_secure_memory(), and SecureBuffer/secure_bytearray()
|
||||
export {
|
||||
getMemoryProtectionInfo,
|
||||
disableSecureMemory,
|
||||
enableSecureMemory,
|
||||
SecureByteContext,
|
||||
createSecureMemory,
|
||||
} from './core/memory/secure';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue