2023-02-14 11:38:45 -05:00
|
|
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
// Copyright Joyent, Inc. and Node.js contributors. All rights reserved. MIT license.
|
|
|
|
|
2023-03-08 06:44:54 -05:00
|
|
|
import { notImplemented } from "ext:deno_node/_utils.ts";
|
2023-02-14 11:38:45 -05:00
|
|
|
|
2023-03-08 06:44:54 -05:00
|
|
|
export { timingSafeEqual } from "ext:deno_node/internal_binding/_timingSafeEqual.ts";
|
2023-02-14 11:38:45 -05:00
|
|
|
|
|
|
|
export function getFipsCrypto(): boolean {
|
|
|
|
notImplemented("crypto.getFipsCrypto");
|
|
|
|
}
|
|
|
|
|
|
|
|
export function setFipsCrypto(_fips: boolean) {
|
|
|
|
notImplemented("crypto.setFipsCrypto");
|
|
|
|
}
|