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.
9 lines
190 B
TypeScript
9 lines
190 B
TypeScript
import { Module } from "@nestjs/common";
|
|
import { CryptoService } from "./crypto.service";
|
|
|
|
@Module({
|
|
providers: [CryptoService],
|
|
exports: [CryptoService],
|
|
})
|
|
export class CryptoModule {}
|