New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

virsical-sign

Package Overview
Dependencies
Maintainers
3
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

virsical-sign

[![npm](https://img.shields.io/npm/v/virsical-sign.svg?maxAge=2592000?style=plastic)](https://www.npmjs.com/package/virsical-sign) [![NPM downloads](http://img.shields.io/npm/dm/virsical-sign.svg?style=flat-plastic)](https://npmjs.org/package/virsical-sig

  • 3.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-66.67%
Maintainers
3
Weekly downloads
 
Created
Source

virsical-sign

npm NPM downloads

威思客签名算法 3.x

范围

微服务中使用

算法描述

接口签名规范

使用

 import VirsicalSign from 'virsical-sign';
 //or
 //import {getSign} from 'virsical-sign';

const timestamp = new Date().getTime();
const url = 'http://localhost:8080/api/user?id=1&lang=zh_CN&tokenSn=1111';
const key = '123';
const body = 'XXX'; // 可选
const token= '22222';

VircalSign.getSign(url, token, key,timestamp, body);

 

威思客签名算法 2.x

范围

微服务中使用

算法描述

接口签名规范

使用

 import VirsicalSign from 'virsical-sign';
//or
//import {getSign} from 'virsical-sign';

const timestamp = new Date().getTime();
const url = 'http://localhost:8080/api/user?id=1&lang=zh_CN&tokenSn=1111';
const key = '123';
const body = 'XXX'; // 可选

VircalSign.getSign(url, key,timestamp, body);

 

威思客签名算法 1.0.6

使用

 import VirsicalSign from 'virsical-sign';
//or
//import {getSign} from 'virsical-sign';

const url = 'http://localhost:8080/api/user?id=1&lang=zh_CN&tokenSn=1111';
const token = 'ADFASA23427UIOUKIJO9W3YOHSLEFJS93U0RJIFSD';
VircalSign.getSign(url, token);

Keywords

FAQs

Package last updated on 23 Apr 2021

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc