Socket
Socket
Sign inDemoInstall

@kaciras-blog/nativelib

Package Overview
Dependencies
84
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @kaciras-blog/nativelib

Node.js native addon for kaciras blog


Version published
Maintainers
1
Created

Readme

Source

Kaciras 博客的 Node 本地扩展,包含了一些需要在底层实现的功能。

Build Status

xxHash

xxHash 是一个非加密 Hash 函数系列,拥有很快的运算速度。本项包含 xxHash 算法的 Node 扩展,支持(XXH32, XXH64, XXH3, XXH128)。

安装

yarn add @kaciras-blog/nativelib [--no-prebuild]

默认情况将从 GitHub Release 上下载编译好的二进制文件,如果需要自己编译请添加--no-prebuild参数。

用法

xxHash

使用跟 crypto 模块相似的 API:

const { createXXH3_128 } = require("@kaciras-blog/nativelib");

console.log(createXXH3_128().update("xxhash").digest("hex"));
// 9c8b437c78cac00a376072e24bfdf4d2

使用快捷函数:

const { xxHash3_128 } = require("@kaciras-blog/nativelib");

// base64u 是 Base 64 Encoding with URL and Filename Safe Alphabet
console.log(xxHash3_128("xxhash", "base64u"));
// nItDfHjKwAo3YHLiS_300g==

xxHash 算法非常快,故没有提供异步的版本。

FAQs

Last updated on 11 Jan 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc