JSPM

pandora-crypto-browserify

1.1.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 42
  • Score
    100M100P100Q66624F
  • License MIT

Javascript Crypto Library for AES and sha256 for browser

Package Exports

  • pandora-crypto-browserify
  • pandora-crypto-browserify/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (pandora-crypto-browserify) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

pandora-crypto-browserify

Javascript Crypto Library for AES and sha256 for browser

Install

npm install pandora-crypto-browserify

Usage

AES

AES 加密解密。默认使用gcm模式。

createKey 生成密钥

import Crypto from 'pandora-crypto-browserify';

Crypto.AES.createKey();

使用该方法生成密钥后,会缓存该密钥,使用加密(encrypt)或解密(decrypt)方法时也可不提供密钥。

encrypt 加密

import Crypto from 'pandora-crypto-browserify';

Crypto.AES.encrypt(data, '密钥');

该方法会先执行JSON.stringify(data),将数据转为json格式的字符串,然后使用AES加密。

decrypt 解密

import Crypto from 'pandora-crypto-browserify';

Crypto.AES.decrypt('encrypted message', '密钥');

该方法会使用AES解密,再执行JSON.parse,获取数据。

getKey 获取密钥

import Crypto from 'pandora-crypto-browserify';

Crypto.AES.getKey();

setKey 设置密钥

import Crypto from 'pandora-crypto-browserify';

Crypto.AES.setKey('密钥');

clearKey 清除密钥

import Crypto from 'pandora-crypto-browserify';

Crypto.AES.clearKey();

SHA256

import Crypto from 'pandora-crypto-browserify';

Crypto.SHA256('message');

代码示例

AES加解密代码示例