2024-01-01 14:58:21 -05:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-06-27 02:18:22 -04:00
|
|
|
|
2024-08-07 02:43:58 -04:00
|
|
|
// This file is here because to break a circular dependency between streams and
|
|
|
|
// crypto.
|
|
|
|
|
2023-06-27 02:18:22 -04:00
|
|
|
// TODO(petamoriken): enable prefer-primordials for node polyfills
|
|
|
|
// deno-lint-ignore-file prefer-primordials
|
|
|
|
|
2023-03-08 06:44:54 -05:00
|
|
|
import { kKeyObject } from "ext:deno_node/internal/crypto/constants.ts";
|
2024-08-07 02:43:58 -04:00
|
|
|
import type { KeyObject } from "ext:deno_node/internal/crypto/keys.ts";
|
2023-02-14 11:38:45 -05:00
|
|
|
|
|
|
|
export const kKeyType = Symbol("kKeyType");
|
|
|
|
|
2024-08-07 02:43:58 -04:00
|
|
|
export function isKeyObject(obj: unknown): obj is KeyObject {
|
2023-02-14 11:38:45 -05:00
|
|
|
return (
|
|
|
|
obj != null && (obj as Record<symbol, unknown>)[kKeyType] !== undefined
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2024-08-07 02:43:58 -04:00
|
|
|
export function isCryptoKey(
|
|
|
|
obj: unknown,
|
|
|
|
): obj is CryptoKey {
|
2023-02-14 11:38:45 -05:00
|
|
|
return (
|
|
|
|
obj != null && (obj as Record<symbol, unknown>)[kKeyObject] !== undefined
|
|
|
|
);
|
|
|
|
}
|