当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js crypto.randomUUID()用法及代码示例


crypto.randomUUID()是加密模块内的类Crypto的内置应用程序编程接口,用于生成随机RFC 4122版本4 UUID。

用法:

const crypto.randomUUID([options])

参数:此函数将disableEntropyCache作为参数

返回值:此函数返回一个随机的RFC 4122版本4 UUID。

范例1:



index.js


<script>
  // Node.js program to demonstrate the  
  // crypto.randomUUID() api
  
  // Importing crypto module
  const crypto = require('crypto')
  
  // getting a random RFC 4122 Version 4 UUID
  // by using randomUUID() method
  const val = crypto.randomUUID({disableEntropyCache:true});
  
  // display the result
  console.log("RFC 4122 Version 4 UUID:" + val)
</script>

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

node index.js

输出:

RFC 4122 Version 4 UUID:88368f2a-d5db-47d8-a05f-534fab0a0045

范例2:

index.js


<script>
  // Node.js program to demonstrate the  
  // crypto.randomUUID() api
  
  // Importing crypto module
  const crypto = require('crypto')
  
  // getting a random RFC 4122 Version 4 UUID
  // by using randomUUID() method
  console.log(crypto.randomUUID())
</script>

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

node index.js

输出:

e2d3286f-2d8f-471a-bacb-1e5d28d8727e

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

相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Node.js crypto.randomUUID() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。