ant-crypto-core

1.0.1 • Public • Published

ant-crypto-core

Modify from the Microsoft Research JavaScript Cryptography Library. I make a little change to make it work on mini program such as Dingtalk EApp and Alipay miniapp.The previous features are are almost unaffected.

What's MSR Crypto Library

The Microsoft Research JavaScript Cryptography Library has been developed for use with cloud services in an HTML5 compliant and forward-looking manner.

The algorithms are exposed via the W3C WebCrypto interface, and are tested against the Microsoft Edge implementation of that interface.

The library currently supports RSA encrypt/decrypt (PKCS#1 v1.5, OAEP, and PSS), AES-CBC and GCM encrypt/decrypt, SHA-256/384/512, HMAC with supported hash functions, PRNG (AES-CTR based) as specified by NIST, ECDH, ECDSA, and KDF (Concat mode).

The library is tested on IE8,9,10,11, Microsoft Edge and latest Firefox, Chrome, Opera, and Safari browsers.

This library includes big-number integer arithmetic to support the aforementioned cryptographic algorithms. It supports unsigned big integer arithmetic with addition, subtraction, multiplication, division, reduction, inversion, GCD, extended Euclidean algorithm (EEA), Montgomery multiplication, and modular exponentiation. It provides useful utility functions, such as endianness management and conversion routines. The big integer library is likely to change in future releases. There are also unit tests and some sample code.

This library is under active development. Future updates to this library may change the programming interfaces.

ant-morse/msrCrypto is a mirror on Github.

Where I modified

msrcrypto.js and msrcrypto.aes.js:

  • Remove the polyfill of Promise. You can provide by yourself If needed.
  • Add export.
  • Run in async mode if window or global is undefined.
  • Jump what EventListener do if addEventListener is undefined.
  • Jump what attachEvent and detachEvent do if they are both undefined.
  • Move out msrcryptoUtilities and publish separately as ant-crypto-utils.

Thanks

Thanks to kevlened for his outstanding work. I got the inspiration from his isomorphic-webcrypto.

Readme

Keywords

none

Package Sidebar

Install

npm i ant-crypto-core

Weekly Downloads

1

Version

1.0.1

License

MIT

Unpacked Size

510 kB

Total Files

6

Last publish

Collaborators

  • fengw