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
|
|
|
|
|
|
|
// 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";
|
2023-02-14 11:38:45 -05:00
|
|
|
|
|
|
|
export const kKeyType = Symbol("kKeyType");
|
|
|
|
|
|
|
|
export function isKeyObject(obj: unknown): boolean {
|
|
|
|
return (
|
|
|
|
obj != null && (obj as Record<symbol, unknown>)[kKeyType] !== undefined
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isCryptoKey(obj: unknown): boolean {
|
|
|
|
return (
|
|
|
|
obj != null && (obj as Record<symbol, unknown>)[kKeyObject] !== undefined
|
|
|
|
);
|
|
|
|
}
|