mirror of
https://github.com/denoland/deno.git
synced 2024-12-14 11:27:57 -05:00
ce75e31625
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.
309 lines
7.4 KiB
TypeScript
309 lines
7.4 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_INVALID_ARG_TYPE } from "internal:deno_node/internal/errors.ts";
|
|
import {
|
|
validateInt32,
|
|
validateObject,
|
|
} from "internal:deno_node/internal/validators.mjs";
|
|
import { Buffer } from "internal:deno_node/buffer.ts";
|
|
import { notImplemented } from "internal:deno_node/_utils.ts";
|
|
import type { TransformOptions } from "internal:deno_node/_stream.d.ts";
|
|
import { Transform } from "internal:deno_node/_stream.mjs";
|
|
import { KeyObject } from "internal:deno_node/internal/crypto/keys.ts";
|
|
import type { BufferEncoding } from "internal:deno_node/_global.d.ts";
|
|
import type {
|
|
BinaryLike,
|
|
Encoding,
|
|
} from "internal:deno_node/internal/crypto/types.ts";
|
|
|
|
const { ops } = globalThis.__bootstrap.core;
|
|
|
|
export type CipherCCMTypes =
|
|
| "aes-128-ccm"
|
|
| "aes-192-ccm"
|
|
| "aes-256-ccm"
|
|
| "chacha20-poly1305";
|
|
export type CipherGCMTypes = "aes-128-gcm" | "aes-192-gcm" | "aes-256-gcm";
|
|
export type CipherOCBTypes = "aes-128-ocb" | "aes-192-ocb" | "aes-256-ocb";
|
|
|
|
export type CipherKey = BinaryLike | KeyObject;
|
|
|
|
export interface CipherCCMOptions extends TransformOptions {
|
|
authTagLength: number;
|
|
}
|
|
|
|
export interface CipherGCMOptions extends TransformOptions {
|
|
authTagLength?: number | undefined;
|
|
}
|
|
|
|
export interface CipherOCBOptions extends TransformOptions {
|
|
authTagLength: number;
|
|
}
|
|
|
|
export interface Cipher extends ReturnType<typeof Transform> {
|
|
update(data: BinaryLike): Buffer;
|
|
update(data: string, inputEncoding: Encoding): Buffer;
|
|
update(
|
|
data: ArrayBufferView,
|
|
inputEncoding: undefined,
|
|
outputEncoding: Encoding,
|
|
): string;
|
|
update(
|
|
data: string,
|
|
inputEncoding: Encoding | undefined,
|
|
outputEncoding: Encoding,
|
|
): string;
|
|
|
|
final(): Buffer;
|
|
final(outputEncoding: BufferEncoding): string;
|
|
|
|
setAutoPadding(autoPadding?: boolean): this;
|
|
}
|
|
|
|
export type Decipher = Cipher;
|
|
|
|
export interface CipherCCM extends Cipher {
|
|
setAAD(
|
|
buffer: ArrayBufferView,
|
|
options: {
|
|
plaintextLength: number;
|
|
},
|
|
): this;
|
|
getAuthTag(): Buffer;
|
|
}
|
|
|
|
export interface CipherGCM extends Cipher {
|
|
setAAD(
|
|
buffer: ArrayBufferView,
|
|
options?: {
|
|
plaintextLength: number;
|
|
},
|
|
): this;
|
|
getAuthTag(): Buffer;
|
|
}
|
|
|
|
export interface CipherOCB extends Cipher {
|
|
setAAD(
|
|
buffer: ArrayBufferView,
|
|
options?: {
|
|
plaintextLength: number;
|
|
},
|
|
): this;
|
|
getAuthTag(): Buffer;
|
|
}
|
|
|
|
export interface DecipherCCM extends Decipher {
|
|
setAuthTag(buffer: ArrayBufferView): this;
|
|
setAAD(
|
|
buffer: ArrayBufferView,
|
|
options: {
|
|
plaintextLength: number;
|
|
},
|
|
): this;
|
|
}
|
|
|
|
export interface DecipherGCM extends Decipher {
|
|
setAuthTag(buffer: ArrayBufferView): this;
|
|
setAAD(
|
|
buffer: ArrayBufferView,
|
|
options?: {
|
|
plaintextLength: number;
|
|
},
|
|
): this;
|
|
}
|
|
|
|
export interface DecipherOCB extends Decipher {
|
|
setAuthTag(buffer: ArrayBufferView): this;
|
|
setAAD(
|
|
buffer: ArrayBufferView,
|
|
options?: {
|
|
plaintextLength: number;
|
|
},
|
|
): this;
|
|
}
|
|
|
|
export class Cipheriv extends Transform implements Cipher {
|
|
constructor(
|
|
_cipher: string,
|
|
_key: CipherKey,
|
|
_iv: BinaryLike | null,
|
|
_options?: TransformOptions,
|
|
) {
|
|
super();
|
|
|
|
notImplemented("crypto.Cipheriv");
|
|
}
|
|
|
|
final(): Buffer;
|
|
final(outputEncoding: BufferEncoding): string;
|
|
final(_outputEncoding?: string): Buffer | string {
|
|
notImplemented("crypto.Cipheriv.prototype.final");
|
|
}
|
|
|
|
getAuthTag(): Buffer {
|
|
notImplemented("crypto.Cipheriv.prototype.getAuthTag");
|
|
}
|
|
|
|
setAAD(
|
|
_buffer: ArrayBufferView,
|
|
_options?: {
|
|
plaintextLength: number;
|
|
},
|
|
): this {
|
|
notImplemented("crypto.Cipheriv.prototype.setAAD");
|
|
}
|
|
|
|
setAutoPadding(_autoPadding?: boolean): this {
|
|
notImplemented("crypto.Cipheriv.prototype.setAutoPadding");
|
|
}
|
|
|
|
update(data: BinaryLike): Buffer;
|
|
update(data: string, inputEncoding: Encoding): Buffer;
|
|
update(
|
|
data: ArrayBufferView,
|
|
inputEncoding: undefined,
|
|
outputEncoding: Encoding,
|
|
): string;
|
|
update(
|
|
data: string,
|
|
inputEncoding: Encoding | undefined,
|
|
outputEncoding: Encoding,
|
|
): string;
|
|
update(
|
|
_data: string | BinaryLike | ArrayBufferView,
|
|
_inputEncoding?: Encoding,
|
|
_outputEncoding?: Encoding,
|
|
): Buffer | string {
|
|
notImplemented("crypto.Cipheriv.prototype.update");
|
|
}
|
|
}
|
|
|
|
export class Decipheriv extends Transform implements Cipher {
|
|
constructor(
|
|
_cipher: string,
|
|
_key: CipherKey,
|
|
_iv: BinaryLike | null,
|
|
_options?: TransformOptions,
|
|
) {
|
|
super();
|
|
|
|
notImplemented("crypto.Decipheriv");
|
|
}
|
|
|
|
final(): Buffer;
|
|
final(outputEncoding: BufferEncoding): string;
|
|
final(_outputEncoding?: string): Buffer | string {
|
|
notImplemented("crypto.Decipheriv.prototype.final");
|
|
}
|
|
|
|
setAAD(
|
|
_buffer: ArrayBufferView,
|
|
_options?: {
|
|
plaintextLength: number;
|
|
},
|
|
): this {
|
|
notImplemented("crypto.Decipheriv.prototype.setAAD");
|
|
}
|
|
|
|
setAuthTag(_buffer: BinaryLike, _encoding?: string): this {
|
|
notImplemented("crypto.Decipheriv.prototype.setAuthTag");
|
|
}
|
|
|
|
setAutoPadding(_autoPadding?: boolean): this {
|
|
notImplemented("crypto.Decipheriv.prototype.setAutoPadding");
|
|
}
|
|
|
|
update(data: BinaryLike): Buffer;
|
|
update(data: string, inputEncoding: Encoding): Buffer;
|
|
update(
|
|
data: ArrayBufferView,
|
|
inputEncoding: undefined,
|
|
outputEncoding: Encoding,
|
|
): string;
|
|
update(
|
|
data: string,
|
|
inputEncoding: Encoding | undefined,
|
|
outputEncoding: Encoding,
|
|
): string;
|
|
update(
|
|
_data: string | BinaryLike | ArrayBufferView,
|
|
_inputEncoding?: Encoding,
|
|
_outputEncoding?: Encoding,
|
|
): Buffer | string {
|
|
notImplemented("crypto.Decipheriv.prototype.update");
|
|
}
|
|
}
|
|
|
|
export function getCipherInfo(
|
|
nameOrNid: string | number,
|
|
options?: { keyLength?: number; ivLength?: number },
|
|
) {
|
|
if (typeof nameOrNid !== "string" && typeof nameOrNid !== "number") {
|
|
throw new ERR_INVALID_ARG_TYPE(
|
|
"nameOrNid",
|
|
["string", "number"],
|
|
nameOrNid,
|
|
);
|
|
}
|
|
|
|
if (typeof nameOrNid === "number") {
|
|
validateInt32(nameOrNid, "nameOrNid");
|
|
}
|
|
|
|
let keyLength, ivLength;
|
|
|
|
if (options !== undefined) {
|
|
validateObject(options, "options");
|
|
|
|
({ keyLength, ivLength } = options);
|
|
|
|
if (keyLength !== undefined) {
|
|
validateInt32(keyLength, "options.keyLength");
|
|
}
|
|
|
|
if (ivLength !== undefined) {
|
|
validateInt32(ivLength, "options.ivLength");
|
|
}
|
|
}
|
|
|
|
notImplemented("crypto.getCipherInfo");
|
|
}
|
|
|
|
export function privateEncrypt(
|
|
privateKey: ArrayBufferView | string | KeyObject,
|
|
buffer: ArrayBufferView | string | KeyObject,
|
|
): Buffer {
|
|
const padding = privateKey.padding || 1;
|
|
return ops.op_node_private_encrypt(privateKey, buffer, padding);
|
|
}
|
|
|
|
export function privateDecrypt(
|
|
privateKey: ArrayBufferView | string | KeyObject,
|
|
buffer: ArrayBufferView | string | KeyObject,
|
|
): Buffer {
|
|
const padding = privateKey.padding || 1;
|
|
return ops.op_node_private_decrypt(privateKey, buffer, padding);
|
|
}
|
|
|
|
export function publicEncrypt(
|
|
publicKey: ArrayBufferView | string | KeyObject,
|
|
buffer: ArrayBufferView | string | KeyObject,
|
|
): Buffer {
|
|
const padding = publicKey.padding || 1;
|
|
return ops.op_node_public_encrypt(publicKey, buffer, padding);
|
|
}
|
|
|
|
export function publicDecrypt() {
|
|
notImplemented("crypto.publicDecrypt");
|
|
}
|
|
|
|
export default {
|
|
privateDecrypt,
|
|
privateEncrypt,
|
|
publicDecrypt,
|
|
publicEncrypt,
|
|
Cipheriv,
|
|
Decipheriv,
|
|
getCipherInfo,
|
|
};
|