@ordojs/security
Version:
Security package for OrdoJS with XSS, CSRF, and injection protection
12 lines (9 loc) • 304 B
text/typescript
/**
* CSRF Protection Module
* Provides comprehensive CSRF protection with token generation, validation,
* session management, and double-submit cookie pattern support
*/
export * from './csrf-manager';
export * from './session-manager';
export * from './token-generator';
export * from './types';