mirror of
https://github.com/denoland/deno.git
synced 2024-12-25 08:39:09 -05:00
15 lines
518 B
TypeScript
15 lines
518 B
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 { notImplemented } from "internal:deno_node/polyfills/_utils.ts";
|
||
|
|
||
|
export { timingSafeEqual } from "internal:deno_node/polyfills/internal_binding/_timingSafeEqual.ts";
|
||
|
|
||
|
export function getFipsCrypto(): boolean {
|
||
|
notImplemented("crypto.getFipsCrypto");
|
||
|
}
|
||
|
|
||
|
export function setFipsCrypto(_fips: boolean) {
|
||
|
notImplemented("crypto.setFipsCrypto");
|
||
|
}
|