This package has been deprecated

Author message:

library moved to original developer repository @akanass/rx-crypto

@hapiness/crypto
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

Hapiness

Crypto Module

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

We use existing node modules to provide these functions: NodeRSA, PEM, JWT and RandomString but we add Observable feature for asynchronous and stream processes.

All most important crypto features in only one module.

Table of contents

Using http module inside Hapiness application

yarn or npm it in your package.json

$ npm install --save @hapiness/core @hapiness/crypto rxjs

or

$ yarn add @hapiness/core @hapiness/crypto rxjs
"dependencies": {
    "@hapiness/core": "^1.3.0",
    "@hapiness/crypto": "^1.0.0",
    "rxjs": "^5.5.5",
    //...
}
//...

import CryptoModule

import { HapinessModule } from '@hapiness/core';
import { CryptoModule } from '@hapiness/crypto';

@HapinessModule({
    version: '1.0.0',
    declarations: [
        LibWithCrypto
    ],
    imports: [
        CryptoModule
    ]
})
class HapinessModuleNeedsCryptoModule {}

use it anywhere

You can use AESService, HashService, PEMService, RandomstringService, JWTService and RSAService anywhere in your module with dependency injection.

import { Lib } from '@hapiness/core';
import { RSAService, NodeRSA } from '@hapiness/crypto';

@Lib()
class LibWithCrypto {
    constructor(private _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

  • v1.0.1 (2018-11-15)
    • Fix of cipher.final() in AESService.encryptWithAesKey() and AESService.decryptWithAesKey() operators
  • v1.0.0 (2017-12-19)
    • Implementation of CryptoModule with AESService, HashService, PEMService, RandomstringService and RSAService
    • Implementation of Observable's operators for AESService and RSAService features.
    • Implementation of Lettable operators for AESService and RSAService features.
    • Related tests.
    • Documentation.

Maintainers

tadaweb
Julien Fauville Antoine Gomez Sébastien Ritz Nicolas Jessel

License

Copyright (c) 2017 Hapiness Licensed under the MIT license.

Back to top

Package Sidebar

Install

npm i @hapiness/crypto

Weekly Downloads

1

Version

1.0.1

License

SEE LICENSE IN https://github.com/hapinessjs/crypto-module/blob/master/LICENSE.md

Unpacked Size

305 kB

Total Files

201

Last publish

Collaborators

  • hapiness