Files
memegoat/backend/src/crypto/crypto.module.ts
Mathis HERRIOT 810acd8ed4 feat: implement CryptoModule with comprehensive cryptographic utilities and testing
Added CryptoModule providing services for Argon2 hashing, JWT handling, JWE encryption/decryption, JWS signing/verification, and post-quantum cryptography (ML-KEM). Includes extensive unit tests for all features.
2026-01-06 12:09:44 +01:00

9 lines
190 B
TypeScript

import { Module } from "@nestjs/common";
import { CryptoService } from "./crypto.service";
@Module({
providers: [CryptoService],
exports: [CryptoService],
})
export class CryptoModule {}