1.0.6 • Published 9 months ago

ciam-encrypt v1.0.6

Weekly downloads
-
License
ISC
Repository
-
Last release
9 months ago

mmp-api

Installation.

Getting Started

for applications that will be using via npm
run this command on you front end application if you are having npm
npm install git://github.com/visionmedia/express.git

for the creator, how to build this project

run this command
npm run-script build

how to use

import { AesUtil } from "ciam-encrypt";

var aesUtil = new AesUtil(rsaPublicKey);
var encryptedObject = aesUtil.encrypt(data);
//note that encryptedObject have variables
//  iv
//  salt
//  key- encrypted key via rsa public key
//  ciphertext - encrypted text using aes

this.sendData(encryptedObject.iv, encryptedObject.salt, encryptedObject.key, encryptedObject.ciphertext)

todo

make this automated and installed on npm repo or what.
1.0.6

9 months ago

1.0.5

9 months ago

1.0.4

9 months ago

1.0.3

9 months ago

1.0.2

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago