@akanass/nestjsx-crypto

NestJS crypto module provides some functions for security features like AES key, Key pair, RSA key, PKCS12, Certificate, PEM and more


Keywords
Crypto, RSA, PEM, PrivateKey, PublicKey, Certificate, RandomString, AES, PKCS12, KeyPair, JWT, NestJS, Framework, NodeJS, Node, Streams, Async, Decorator, RxJS, Rx, ReactiveX, Observable, Observer, Module, ES2015, ES2016, ES2017, ES6, ES7, ES8, Typescript, nestjsx-crypto, openssl, rxjs7
License
MIT
Install
npm install @akanass/nestjsx-crypto@4.0.0

Documentation

NestJSX-Crypto

Crypto module for NestJS framework provides some functions for security features like AES key, Key pair, PKCS12, RSA key, Certificate, JWT and more.

This module is a wrapper to use @akanass-rx-crypto library inside NestJS application in an easy way.

All most important crypto features in only one module.

Table of contents

Using crypto module inside NestJS application

yarn or npm it in your package.json

$ npm install --save @akanass/nestjsx-crypto @nestjs/common rxjs reflect-metadata

or

$ yarn add @akanass/nestjsx-crypto @nestjs/common rxjs reflect-metadata
"dependencies": {
    "@akanass/nestjsx-crypto": "^3.0.0",
    "@nestjs/common": "^8.0.11",
    "reflect-metadata": "^0.1.13",
    "rxjs": "^7.4.0"
    //...
}
//...

import CryptoModule

import { CryptoModule } from '@akanass/nestjsx-crypto';
import { Module } from '@nestjs/common';
import { NestJSServiceWithCrypto } from './crypto.service.ts';

@Module({
    imports: [
        CryptoModule
    ],
    providers: [
        NestJSServiceWithCrypto
    ]
})
export class NestJSModuleNeedsCryptoModule {}

use it anywhere

You can use AesService, HashService, PemService, RandomStringService, JwtService and RsaService anywhere in your module with dependency injection.

import { RsaService, NodeRSA } from '@akanass/nestjsx-crypto';
import { Injectable } from '@nestjs/common';

@Injectable()
export class NestJSServiceWithCrypto {
    constructor(private readonly _rsaService: RsaService) {}
    
    createRsaKey(): void {
        this._rsaService.createKey().subscribe(
            (k: NodeRSA) => console.log(k), // Show NodeRSA instance in console
            e => console.error(e) // Show error in console
        );
    }
}

Back to top

API in Detail

We implemented some services and to see their details go to documentation folder:

Back to top

Contributing

To set up your development environment:

  1. clone the repo to your workspace,
  2. in the shell cd to the main folder,
  3. hit npm or yarn install,
  4. run npm or yarn run test.
    • It will lint the code and execute all tests.
    • The test coverage report can be viewed from ./coverage/lcov-report/index.html.

Back to top

Change History

  • v3.0.0 (2021-10-08)
    • Update packages' versions
    • Latest @akanass/rx-crypto version 2.2.0
    • Latest rxjs version 7.4.0
    • Latest nestjs version 8.0.11
    • Update tests
  • v2.0.0 (2021-06-07)
    • Update packages' versions
    • Latest @akanass/rx-crypto version 2.0.0
    • Latest rxjs version 7.1.0
  • v1.1.0 (2021-01-31)
    • Update packages' versions
    • Fix tests
    • Fix tslint
  • v1.0.0 (2019-09-12)
    • Implementation of CryptoModule with AesService, HashService, JwtService, PemService, RandomStringService and RsaService
    • Implementation of Observable's operators for AesService and RsaService features.
    • Related tests.
    • Documentation.

License

Copyright (c) 2021 Nicolas Jessel Licensed under the MIT license.

Back to top