You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

hdc

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hdc

NPM module implementing HDC Messages Format


Version published
Weekly downloads
16
decreased by-54.29%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

HDC

HDC module aims to implement HDC Messages Format, which is a standard description of messages used by NodeCoin project.

Usage

Certificates

To handle certificates data, just:

var Certificate = require('hdc').Certificate;

var data = fs.readFileSync('/path/to/lolcat.pub', 'utf8');
var cert = new Certificate(data);

Then, several data maybe extracted:

console.log(cert.fingerprint);
// => C73882B64B7E72237A2F460CE9CAB76D19A8651E

console.log(cert.name);
// => LoL Cat

console.log(cert.email);
// => email@example.com

console.log(cert.comment);
// => udid2;c;CAT;LOL;2000-04-19;e+43.70-079.42;0;

Amendments

To handle certificates data, just:

var Amendment = require('hdc').Amendment;

var data = fs.readFileSync('/path/to/amendment', 'utf8');
var am = new Amendment(data);
if(am.error){
  // Some error happened while parsing data
  console.log(am.error);
}

Then, several data maybe extracted:

console.log(am.version);
// => 1

console.log(am.currency);
// => beta_brousoufs

console.log(am.number);
// => 2

console.log(am.previousHash);
// => 0F45DFDA214005250D4D2CBE4C7B91E60227B0E5

console.log(am.dividend);
// => 100

console.log(am.getNewMembers());
// => ["31A6302161AC8F5938969E85399EB3415C237F93"]

...

License

This software is provided under MIT license.

Keywords

FAQs

Package last updated on 21 May 2014

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc