Node.js crypto.setFips() 函数

Node.js crypto.setFips() 函数

crypto.setFips() 方法是 Crypto 类的内置应用程序接口,位于 crypto 模块中,用于在 FIPS 启用的 Node.js 构建中启用符合 FIPS 的加密提供程序。

语法:

const crypto.setFips(bool)

参数: 此API将布尔值作为参数。

返回值: 此API不返回任何值。

示例1:

index.js

// Node.js program to demonstrate the   
// crypto.setFips() method 
  
// Importing crypto module 
const crypto = require('crypto') 
  
// Checking for error 
try { 
  
    // Enabling the FIPS compliant  
    // crypto provider by using 
    // setFips() method 
    const val = crypto.setFips(true); 
  
    // Display the result 
    console.log("FIPS compliant crypto"
        + " provider has been enabled") 
  
} catch (e) { 
      
    // Display error if any 
    console.log("FIPS mode is not available."); 
} 

使用以下命令运行 index.js 文件:

node index.js

输出:

FIPS mode is not available.

示例2:

index.js

// Node.js program to demonstrate the   
// crypto.setFips() method 
  
// Importing crypto module 
const crypto = require('crypto') 
  
// Enabling the FIPS compliant  
// crypto provider by using 
// setFips() method 
try { 
  
    // Function call 
    const val = crypto.setFips(false); 
  
    // Display the result 
    console.log("FIPS compliant crypto "
        + "provider has been disabled"); 
} catch (e) { 
    console.log("ERR_CRYPTO_FIPS_UNAVAILABLE") 
} 

输出:

ERR_CRYPTO_FIPS_UNAVAILABLE

参考: https://nodejs.org/dist/latest-v15.x/docs/api/crypto.html#crypto_crypto_setfips_bool

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程