npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@blazes/crypto

v2.0.0-miniprogram16

Published

加解密和签名相关

Downloads

65

Readme

背景

通过签名防止用户使用脚本伪造请求,具体签名过程可见 标准签名流程 通过加密防止错误证书信任造成敏感数据泄漏,具体加密过程可见 数据传输与存储安全规范 尽管前端有泄漏密钥和加密方法的可能性,但通过代码的混淆等能防御大部分用户。

安装

npm

npm install @blazes/crypto

yarn

yarn add @blazes/crypto

API

方法

| 名称 | 说明 | 入参 | 回参 | | --------- | ------------------------ | ------------------------------------ | ------ | | setSecret | 设置全局的签名和加密密钥 | { encrypto?: string; sign?: string;} | void | | encrypt | 加密 | text, secret | string | | decrypt | 解密 | text, sceret | string | | sign | 签名 | ISignOption | string |

方法中的 sceret 参数可覆盖全局的密钥

ISignOption

| 属性 | 说明 | | 类型 | | ------ | -------------------------------------- | ------------------ | ---- | | verb | 请求方法 | string | | path | 后端 API 路径,以/开头,不包含? | string | | host | 主机名,不包含协议名 | string | | header | x-yh-开头的请求头 | string | | body | 请求参数,如果是文件,可传入formData | string | FormData | | query | url?后面的参数 | string |

axios 集成

提供了 axios 拦截器,注册后,可自动添加YH {Authoriztion}

instantce.interceptors.request.use((config) => {
    return intercepeReq(host, config);
});

注意以下几点

  • 由于后端的 host 和前端域名不一致,需要手动传入。
  • 目前 pathconfig 中读取,未拼接 baseUrl