mirror of
https://github.com/denoland/deno.git
synced 2024-11-29 16:30:56 -05:00
b40086fd7d
This commit changes "include_js_files!" macro from "deno_core" in a way that "dir" option doesn't cause specifiers to be rewritten to include it. Example: ``` include_js_files! { dir "js", "hello.js", } ``` The above definition required embedders to use: `import ... from "internal:<ext_name>/js/hello.js"`. But with this change, the "js" directory in which the files are stored is an implementation detail, which for embedders results in: `import ... from "internal:<ext_name>/hello.js"`. The directory the files are stored in, is an implementation detail and in some cases might result in a significant size difference for the snapshot. As an example, in "deno_node" extension, we store the source code in "polyfills" directory; which resulted in each specifier to look like "internal:deno_node/polyfills/<module_name>", but with this change it's "internal:deno_node/<module_name>". Given that "deno_node" has over 100 files, many of them having several import specifiers to the same extension, this change removes 10 characters from each import specifier.
510 lines
11 KiB
TypeScript
510 lines
11 KiB
TypeScript
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
// Copyright Joyent, Inc. and Node.js contributors. All rights reserved. MIT license.
|
|
|
|
import { ERR_CRYPTO_FIPS_FORCED } from "internal:deno_node/internal/errors.ts";
|
|
import { crypto as constants } from "internal:deno_node/internal_binding/constants.ts";
|
|
import { getOptionValue } from "internal:deno_node/internal/options.ts";
|
|
import {
|
|
getFipsCrypto,
|
|
setFipsCrypto,
|
|
timingSafeEqual,
|
|
} from "internal:deno_node/internal_binding/crypto.ts";
|
|
import {
|
|
checkPrime,
|
|
checkPrimeSync,
|
|
generatePrime,
|
|
generatePrimeSync,
|
|
randomBytes,
|
|
randomFill,
|
|
randomFillSync,
|
|
randomInt,
|
|
randomUUID,
|
|
} from "internal:deno_node/internal/crypto/random.ts";
|
|
import type {
|
|
CheckPrimeOptions,
|
|
GeneratePrimeOptions,
|
|
GeneratePrimeOptionsArrayBuffer,
|
|
GeneratePrimeOptionsBigInt,
|
|
LargeNumberLike,
|
|
} from "internal:deno_node/internal/crypto/random.ts";
|
|
import {
|
|
pbkdf2,
|
|
pbkdf2Sync,
|
|
} from "internal:deno_node/internal/crypto/pbkdf2.ts";
|
|
import type {
|
|
Algorithms,
|
|
NormalizedAlgorithms,
|
|
} from "internal:deno_node/internal/crypto/pbkdf2.ts";
|
|
import {
|
|
scrypt,
|
|
scryptSync,
|
|
} from "internal:deno_node/internal/crypto/scrypt.ts";
|
|
import { hkdf, hkdfSync } from "internal:deno_node/internal/crypto/hkdf.ts";
|
|
import {
|
|
generateKey,
|
|
generateKeyPair,
|
|
generateKeyPairSync,
|
|
generateKeySync,
|
|
} from "internal:deno_node/internal/crypto/keygen.ts";
|
|
import type {
|
|
BasePrivateKeyEncodingOptions,
|
|
DSAKeyPairKeyObjectOptions,
|
|
DSAKeyPairOptions,
|
|
ECKeyPairKeyObjectOptions,
|
|
ECKeyPairOptions,
|
|
ED25519KeyPairKeyObjectOptions,
|
|
ED25519KeyPairOptions,
|
|
ED448KeyPairKeyObjectOptions,
|
|
ED448KeyPairOptions,
|
|
KeyPairKeyObjectResult,
|
|
KeyPairSyncResult,
|
|
RSAKeyPairKeyObjectOptions,
|
|
RSAKeyPairOptions,
|
|
RSAPSSKeyPairKeyObjectOptions,
|
|
RSAPSSKeyPairOptions,
|
|
X25519KeyPairKeyObjectOptions,
|
|
X25519KeyPairOptions,
|
|
X448KeyPairKeyObjectOptions,
|
|
X448KeyPairOptions,
|
|
} from "internal:deno_node/internal/crypto/keygen.ts";
|
|
import {
|
|
createPrivateKey,
|
|
createPublicKey,
|
|
createSecretKey,
|
|
KeyObject,
|
|
} from "internal:deno_node/internal/crypto/keys.ts";
|
|
import type {
|
|
AsymmetricKeyDetails,
|
|
JsonWebKeyInput,
|
|
JwkKeyExportOptions,
|
|
KeyExportOptions,
|
|
KeyObjectType,
|
|
} from "internal:deno_node/internal/crypto/keys.ts";
|
|
import {
|
|
DiffieHellman,
|
|
diffieHellman,
|
|
DiffieHellmanGroup,
|
|
ECDH,
|
|
} from "internal:deno_node/internal/crypto/diffiehellman.ts";
|
|
import {
|
|
Cipheriv,
|
|
Decipheriv,
|
|
getCipherInfo,
|
|
privateDecrypt,
|
|
privateEncrypt,
|
|
publicDecrypt,
|
|
publicEncrypt,
|
|
} from "internal:deno_node/internal/crypto/cipher.ts";
|
|
import type {
|
|
Cipher,
|
|
CipherCCM,
|
|
CipherCCMOptions,
|
|
CipherCCMTypes,
|
|
CipherGCM,
|
|
CipherGCMOptions,
|
|
CipherGCMTypes,
|
|
CipherKey,
|
|
CipherOCB,
|
|
CipherOCBOptions,
|
|
CipherOCBTypes,
|
|
Decipher,
|
|
DecipherCCM,
|
|
DecipherGCM,
|
|
DecipherOCB,
|
|
} from "internal:deno_node/internal/crypto/cipher.ts";
|
|
import type {
|
|
BinaryLike,
|
|
BinaryToTextEncoding,
|
|
CharacterEncoding,
|
|
ECDHKeyFormat,
|
|
Encoding,
|
|
HASH_DATA,
|
|
KeyFormat,
|
|
KeyType,
|
|
LegacyCharacterEncoding,
|
|
PrivateKeyInput,
|
|
PublicKeyInput,
|
|
} from "internal:deno_node/internal/crypto/types.ts";
|
|
import {
|
|
Sign,
|
|
signOneShot,
|
|
Verify,
|
|
verifyOneShot,
|
|
} from "internal:deno_node/internal/crypto/sig.ts";
|
|
import type {
|
|
DSAEncoding,
|
|
KeyLike,
|
|
SigningOptions,
|
|
SignKeyObjectInput,
|
|
SignPrivateKeyInput,
|
|
VerifyKeyObjectInput,
|
|
VerifyPublicKeyInput,
|
|
} from "internal:deno_node/internal/crypto/sig.ts";
|
|
import {
|
|
createHash,
|
|
Hash,
|
|
Hmac,
|
|
} from "internal:deno_node/internal/crypto/hash.ts";
|
|
import { X509Certificate } from "internal:deno_node/internal/crypto/x509.ts";
|
|
import type {
|
|
PeerCertificate,
|
|
X509CheckOptions,
|
|
} from "internal:deno_node/internal/crypto/x509.ts";
|
|
import {
|
|
getCiphers,
|
|
getCurves,
|
|
getHashes,
|
|
secureHeapUsed,
|
|
setEngine,
|
|
} from "internal:deno_node/internal/crypto/util.ts";
|
|
import type { SecureHeapUsage } from "internal:deno_node/internal/crypto/util.ts";
|
|
import Certificate from "internal:deno_node/internal/crypto/certificate.ts";
|
|
import type {
|
|
TransformOptions,
|
|
WritableOptions,
|
|
} from "internal:deno_node/_stream.d.ts";
|
|
import { crypto as webcrypto } from "internal:deno_crypto/00_crypto.js";
|
|
|
|
const fipsForced = getOptionValue("--force-fips");
|
|
|
|
function createCipheriv(
|
|
algorithm: CipherCCMTypes,
|
|
key: CipherKey,
|
|
iv: BinaryLike,
|
|
options: CipherCCMOptions,
|
|
): CipherCCM;
|
|
function createCipheriv(
|
|
algorithm: CipherOCBTypes,
|
|
key: CipherKey,
|
|
iv: BinaryLike,
|
|
options: CipherOCBOptions,
|
|
): CipherOCB;
|
|
function createCipheriv(
|
|
algorithm: CipherGCMTypes,
|
|
key: CipherKey,
|
|
iv: BinaryLike,
|
|
options?: CipherGCMOptions,
|
|
): CipherGCM;
|
|
function createCipheriv(
|
|
algorithm: string,
|
|
key: CipherKey,
|
|
iv: BinaryLike | null,
|
|
options?: TransformOptions,
|
|
): Cipher;
|
|
function createCipheriv(
|
|
cipher: string,
|
|
key: CipherKey,
|
|
iv: BinaryLike | null,
|
|
options?: TransformOptions,
|
|
): Cipher {
|
|
return new Cipheriv(cipher, key, iv, options);
|
|
}
|
|
|
|
function createDecipheriv(
|
|
algorithm: CipherCCMTypes,
|
|
key: CipherKey,
|
|
iv: BinaryLike,
|
|
options: CipherCCMOptions,
|
|
): DecipherCCM;
|
|
function createDecipheriv(
|
|
algorithm: CipherOCBTypes,
|
|
key: CipherKey,
|
|
iv: BinaryLike,
|
|
options: CipherOCBOptions,
|
|
): DecipherOCB;
|
|
function createDecipheriv(
|
|
algorithm: CipherGCMTypes,
|
|
key: CipherKey,
|
|
iv: BinaryLike,
|
|
options?: CipherGCMOptions,
|
|
): DecipherGCM;
|
|
function createDecipheriv(
|
|
algorithm: string,
|
|
key: CipherKey,
|
|
iv: BinaryLike | null,
|
|
options?: TransformOptions,
|
|
): Decipher {
|
|
return new Decipheriv(algorithm, key, iv, options);
|
|
}
|
|
|
|
function createDiffieHellman(
|
|
primeLength: number,
|
|
generator?: number | ArrayBufferView,
|
|
): DiffieHellman;
|
|
function createDiffieHellman(prime: ArrayBufferView): DiffieHellman;
|
|
function createDiffieHellman(
|
|
prime: string,
|
|
primeEncoding: BinaryToTextEncoding,
|
|
): DiffieHellman;
|
|
function createDiffieHellman(
|
|
prime: string,
|
|
primeEncoding: BinaryToTextEncoding,
|
|
generator: number | ArrayBufferView,
|
|
): DiffieHellman;
|
|
function createDiffieHellman(
|
|
prime: string,
|
|
primeEncoding: BinaryToTextEncoding,
|
|
generator: string,
|
|
generatorEncoding: BinaryToTextEncoding,
|
|
): DiffieHellman;
|
|
function createDiffieHellman(
|
|
sizeOrKey: number | string | ArrayBufferView,
|
|
keyEncoding?: number | ArrayBufferView | BinaryToTextEncoding,
|
|
generator?: number | ArrayBufferView | string,
|
|
generatorEncoding?: BinaryToTextEncoding,
|
|
): DiffieHellman {
|
|
return new DiffieHellman(
|
|
sizeOrKey,
|
|
keyEncoding,
|
|
generator,
|
|
generatorEncoding,
|
|
);
|
|
}
|
|
|
|
function createDiffieHellmanGroup(name: string): DiffieHellmanGroup {
|
|
return new DiffieHellmanGroup(name);
|
|
}
|
|
|
|
function createECDH(curve: string): ECDH {
|
|
return new ECDH(curve);
|
|
}
|
|
|
|
function createHmac(
|
|
hmac: string,
|
|
key: string | ArrayBuffer | KeyObject,
|
|
options?: TransformOptions,
|
|
) {
|
|
return Hmac(hmac, key, options);
|
|
}
|
|
|
|
function createSign(algorithm: string, options?: WritableOptions): Sign {
|
|
return new Sign(algorithm, options);
|
|
}
|
|
|
|
function createVerify(algorithm: string, options?: WritableOptions): Verify {
|
|
return new Verify(algorithm, options);
|
|
}
|
|
|
|
function setFipsForced(val: boolean) {
|
|
if (val) {
|
|
return;
|
|
}
|
|
|
|
throw new ERR_CRYPTO_FIPS_FORCED();
|
|
}
|
|
|
|
function getFipsForced() {
|
|
return 1;
|
|
}
|
|
|
|
Object.defineProperty(constants, "defaultCipherList", {
|
|
value: getOptionValue("--tls-cipher-list"),
|
|
});
|
|
|
|
const getDiffieHellman = createDiffieHellmanGroup;
|
|
|
|
const getFips = fipsForced ? getFipsForced : getFipsCrypto;
|
|
const setFips = fipsForced ? setFipsForced : setFipsCrypto;
|
|
|
|
const sign = signOneShot;
|
|
const verify = verifyOneShot;
|
|
|
|
export default {
|
|
Certificate,
|
|
checkPrime,
|
|
checkPrimeSync,
|
|
Cipheriv,
|
|
constants,
|
|
createCipheriv,
|
|
createDecipheriv,
|
|
createDiffieHellman,
|
|
createDiffieHellmanGroup,
|
|
createECDH,
|
|
createHash,
|
|
createHmac,
|
|
createPrivateKey,
|
|
createPublicKey,
|
|
createSecretKey,
|
|
createSign,
|
|
createVerify,
|
|
Decipheriv,
|
|
DiffieHellman,
|
|
diffieHellman,
|
|
DiffieHellmanGroup,
|
|
ECDH,
|
|
generateKey,
|
|
generateKeyPair,
|
|
generateKeyPairSync,
|
|
generateKeySync,
|
|
generatePrime,
|
|
generatePrimeSync,
|
|
getCipherInfo,
|
|
getCiphers,
|
|
getCurves,
|
|
getDiffieHellman,
|
|
getFips,
|
|
getHashes,
|
|
Hash,
|
|
hkdf,
|
|
hkdfSync,
|
|
Hmac,
|
|
KeyObject,
|
|
pbkdf2,
|
|
pbkdf2Sync,
|
|
privateDecrypt,
|
|
privateEncrypt,
|
|
publicDecrypt,
|
|
publicEncrypt,
|
|
randomBytes,
|
|
randomFill,
|
|
randomFillSync,
|
|
randomInt,
|
|
randomUUID,
|
|
scrypt,
|
|
scryptSync,
|
|
secureHeapUsed,
|
|
setEngine,
|
|
setFips,
|
|
Sign,
|
|
sign,
|
|
timingSafeEqual,
|
|
Verify,
|
|
verify,
|
|
webcrypto,
|
|
X509Certificate,
|
|
};
|
|
|
|
export type {
|
|
Algorithms,
|
|
AsymmetricKeyDetails,
|
|
BasePrivateKeyEncodingOptions,
|
|
BinaryLike,
|
|
BinaryToTextEncoding,
|
|
CharacterEncoding,
|
|
CheckPrimeOptions,
|
|
Cipher,
|
|
CipherCCM,
|
|
CipherCCMOptions,
|
|
CipherCCMTypes,
|
|
CipherGCM,
|
|
CipherGCMOptions,
|
|
CipherGCMTypes,
|
|
CipherKey,
|
|
CipherOCB,
|
|
CipherOCBOptions,
|
|
CipherOCBTypes,
|
|
Decipher,
|
|
DecipherCCM,
|
|
DecipherGCM,
|
|
DecipherOCB,
|
|
DSAEncoding,
|
|
DSAKeyPairKeyObjectOptions,
|
|
DSAKeyPairOptions,
|
|
ECDHKeyFormat,
|
|
ECKeyPairKeyObjectOptions,
|
|
ECKeyPairOptions,
|
|
ED25519KeyPairKeyObjectOptions,
|
|
ED25519KeyPairOptions,
|
|
ED448KeyPairKeyObjectOptions,
|
|
ED448KeyPairOptions,
|
|
Encoding,
|
|
GeneratePrimeOptions,
|
|
GeneratePrimeOptionsArrayBuffer,
|
|
GeneratePrimeOptionsBigInt,
|
|
HASH_DATA,
|
|
JsonWebKeyInput,
|
|
JwkKeyExportOptions,
|
|
KeyExportOptions,
|
|
KeyFormat,
|
|
KeyLike,
|
|
KeyObjectType,
|
|
KeyPairKeyObjectResult,
|
|
KeyPairSyncResult,
|
|
KeyType,
|
|
LargeNumberLike,
|
|
LegacyCharacterEncoding,
|
|
NormalizedAlgorithms,
|
|
PeerCertificate,
|
|
PrivateKeyInput,
|
|
PublicKeyInput,
|
|
RSAKeyPairKeyObjectOptions,
|
|
RSAKeyPairOptions,
|
|
RSAPSSKeyPairKeyObjectOptions,
|
|
RSAPSSKeyPairOptions,
|
|
SecureHeapUsage,
|
|
SigningOptions,
|
|
SignKeyObjectInput,
|
|
SignPrivateKeyInput,
|
|
VerifyKeyObjectInput,
|
|
VerifyPublicKeyInput,
|
|
X25519KeyPairKeyObjectOptions,
|
|
X25519KeyPairOptions,
|
|
X448KeyPairKeyObjectOptions,
|
|
X448KeyPairOptions,
|
|
X509CheckOptions,
|
|
};
|
|
|
|
export {
|
|
Certificate,
|
|
checkPrime,
|
|
checkPrimeSync,
|
|
Cipheriv,
|
|
constants,
|
|
createCipheriv,
|
|
createDecipheriv,
|
|
createDiffieHellman,
|
|
createDiffieHellmanGroup,
|
|
createECDH,
|
|
createHash,
|
|
createHmac,
|
|
createPrivateKey,
|
|
createPublicKey,
|
|
createSecretKey,
|
|
createSign,
|
|
createVerify,
|
|
Decipheriv,
|
|
DiffieHellman,
|
|
diffieHellman,
|
|
DiffieHellmanGroup,
|
|
ECDH,
|
|
generateKey,
|
|
generateKeyPair,
|
|
generateKeyPairSync,
|
|
generateKeySync,
|
|
generatePrime,
|
|
generatePrimeSync,
|
|
getCipherInfo,
|
|
getCiphers,
|
|
getCurves,
|
|
getDiffieHellman,
|
|
getFips,
|
|
getHashes,
|
|
Hash,
|
|
hkdf,
|
|
hkdfSync,
|
|
Hmac,
|
|
KeyObject,
|
|
pbkdf2,
|
|
pbkdf2Sync,
|
|
privateDecrypt,
|
|
privateEncrypt,
|
|
publicDecrypt,
|
|
publicEncrypt,
|
|
randomBytes,
|
|
randomFill,
|
|
randomFillSync,
|
|
randomInt,
|
|
randomUUID,
|
|
scrypt,
|
|
scryptSync,
|
|
secureHeapUsed,
|
|
setEngine,
|
|
setFips,
|
|
Sign,
|
|
sign,
|
|
timingSafeEqual,
|
|
Verify,
|
|
verify,
|
|
webcrypto,
|
|
X509Certificate,
|
|
};
|