Initial Deno support (#1448)
This commit is contained in:
parent
d6139daa79
commit
ce5174dd21
|
@ -10,6 +10,7 @@ OpenPGP.js [
|
- [Performance](#performance)
|
||||||
- [Getting started](#getting-started)
|
- [Getting started](#getting-started)
|
||||||
- [Node.js](#nodejs)
|
- [Node.js](#nodejs)
|
||||||
|
- [Deno (experimental)](#deno-experimental)
|
||||||
- [Browser (webpack)](#browser-webpack)
|
- [Browser (webpack)](#browser-webpack)
|
||||||
- [Browser (plain files)](#browser-plain-files)
|
- [Browser (plain files)](#browser-plain-files)
|
||||||
- [Examples](#examples)
|
- [Examples](#examples)
|
||||||
|
@ -109,6 +110,14 @@ Or as an ES6 module, from an .mjs file:
|
||||||
import * as openpgp from 'openpgp';
|
import * as openpgp from 'openpgp';
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Deno (experimental)
|
||||||
|
|
||||||
|
Import as an ES6 module, using /dist/openpgp.mjs.
|
||||||
|
|
||||||
|
```js
|
||||||
|
import * as openpgp from './openpgpjs/dist/openpgp.mjs';
|
||||||
|
```
|
||||||
|
|
||||||
#### Browser (webpack)
|
#### Browser (webpack)
|
||||||
|
|
||||||
Install OpenPGP.js using npm and save it in your devDependencies:
|
Install OpenPGP.js using npm and save it in your devDependencies:
|
||||||
|
|
|
@ -77,7 +77,7 @@ if (nodeCrypto) { // Use Node native crypto for all hash functions
|
||||||
} else { // Use JS fallbacks
|
} else { // Use JS fallbacks
|
||||||
hashFunctions = {
|
hashFunctions = {
|
||||||
md5: md5,
|
md5: md5,
|
||||||
sha1: asmcryptoHash(Sha1, navigator.userAgent.indexOf('Edge') === -1 && 'SHA-1'),
|
sha1: asmcryptoHash(Sha1, (!navigator.userAgent || navigator.userAgent.indexOf('Edge') === -1) && 'SHA-1'),
|
||||||
sha224: hashjsHash(sha224),
|
sha224: hashjsHash(sha224),
|
||||||
sha256: asmcryptoHash(Sha256, 'SHA-256'),
|
sha256: asmcryptoHash(Sha256, 'SHA-256'),
|
||||||
sha384: hashjsHash(sha384, 'SHA-384'),
|
sha384: hashjsHash(sha384, 'SHA-384'),
|
||||||
|
|
|
@ -51,7 +51,7 @@ async function CTR(key) {
|
||||||
if (
|
if (
|
||||||
util.getWebCrypto() &&
|
util.getWebCrypto() &&
|
||||||
key.length !== 24 && // WebCrypto (no 192 bit support) see: https://www.chromium.org/blink/webcrypto#TOC-AES-support
|
key.length !== 24 && // WebCrypto (no 192 bit support) see: https://www.chromium.org/blink/webcrypto#TOC-AES-support
|
||||||
navigator.userAgent.indexOf('Edge') === -1
|
(!navigator.userAgent || navigator.userAgent.indexOf('Edge') === -1)
|
||||||
) {
|
) {
|
||||||
key = await webCrypto.importKey('raw', key, { name: 'AES-CTR', length: key.length * 8 }, false, ['encrypt']);
|
key = await webCrypto.importKey('raw', key, { name: 'AES-CTR', length: key.length * 8 }, false, ['encrypt']);
|
||||||
return async function(pt, iv) {
|
return async function(pt, iv) {
|
||||||
|
|
|
@ -56,7 +56,7 @@ async function GCM(cipher, key) {
|
||||||
!pt.length ||
|
!pt.length ||
|
||||||
// iOS does not support GCM-en/decrypting empty messages
|
// iOS does not support GCM-en/decrypting empty messages
|
||||||
// Also, synchronous en/decryption might be faster in this case.
|
// Also, synchronous en/decryption might be faster in this case.
|
||||||
(!adata.length && navigator.userAgent.indexOf('Edge') !== -1)
|
(!adata.length && navigator.userAgent && navigator.userAgent.indexOf('Edge') !== -1)
|
||||||
// Edge does not support GCM-en/decrypting without ADATA
|
// Edge does not support GCM-en/decrypting without ADATA
|
||||||
) {
|
) {
|
||||||
return AES_GCM.encrypt(pt, key, iv, adata);
|
return AES_GCM.encrypt(pt, key, iv, adata);
|
||||||
|
@ -70,7 +70,7 @@ async function GCM(cipher, key) {
|
||||||
ct.length === tagLength ||
|
ct.length === tagLength ||
|
||||||
// iOS does not support GCM-en/decrypting empty messages
|
// iOS does not support GCM-en/decrypting empty messages
|
||||||
// Also, synchronous en/decryption might be faster in this case.
|
// Also, synchronous en/decryption might be faster in this case.
|
||||||
(!adata.length && navigator.userAgent.indexOf('Edge') !== -1)
|
(!adata.length && navigator.userAgent && navigator.userAgent.indexOf('Edge') !== -1)
|
||||||
// Edge does not support GCM-en/decrypting without ADATA
|
// Edge does not support GCM-en/decrypting without ADATA
|
||||||
) {
|
) {
|
||||||
return AES_GCM.decrypt(ct, key, iv, adata);
|
return AES_GCM.decrypt(ct, key, iv, adata);
|
||||||
|
|
|
@ -12,7 +12,7 @@ module.exports = () => tryTests('Application Worker', tests, {
|
||||||
function tests() {
|
function tests() {
|
||||||
|
|
||||||
it('Should support loading OpenPGP.js from inside a Web Worker', async function() {
|
it('Should support loading OpenPGP.js from inside a Web Worker', async function() {
|
||||||
if (/Edge/.test(navigator.userAgent)) {
|
if (navigator.userAgent && /Edge/.test(navigator.userAgent)) {
|
||||||
this.skip(); // Old Edge doesn't support crypto.getRandomValues inside a Worker.
|
this.skip(); // Old Edge doesn't support crypto.getRandomValues inside a Worker.
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user