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

linkerd-trace

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

linkerd-trace

``` .___ .__ .__ __ .___ __ ____ ____ __| _/____ | | |__| ____ | | __ ___________ __| _/ _/ |_____________ ____ ____ / \

  • 1.0.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source
                  .___               .__  .__        __                    .___          __                              
  ____   ____   __| _/____           |  | |__| ____ |  | __ ___________  __| _/        _/  |_____________    ____  ____  
 /    \ /  _ \ / __ |/ __ \   ______ |  | |  |/    \|  |/ // __ \_  __ \/ __ |  ______ \   __\_  __ \__  \ _/ ___\/ __ \ 
|   |  (  <_> ) /_/ \  ___/  /_____/ |  |_|  |   |  \    <\  ___/|  | \/ /_/ | /_____/  |  |  |  | \// __ \\  \__\  ___/ 
|___|  /\____/\____ |\___  >         |____/__|___|  /__|_ \\___  >__|  \____ |          |__|  |__|  (____  /\___  >___  >
     \/            \/    \/                       \/     \/    \/           \/                           \/     \/    \/ 

What is this?

This is a non-type script version + cli verification tool of the following code:

const ByteBuffer = require('bytebuffer');

public traceToLinkerdPackedHeader():string{
  let flagBytes = [0, 0, 0, 0, 0, 0, 0, 6];
  let serialized = ByteBuffer.concat([this.getByteArray(this.traceId.spanId),this.getByteArray(this.traceId.parentId), this.getByteArray(this.traceId.traceId), flagBytes]);

  return serialized.toBase64();
}
private getByteArray(id: string ){
  let array = Buffer.from(id, 'utf8');
  let byteArray  = [];
  for (let i = 0; i < 16; i = i + 2) {
    let parsed = parseInt(id.slice(i, i + 2), 16);
    parsed = parsed & 255;
            
    if (parsed > 127) {
      parsed = -((parsed & 127) ^ 127) - 1;
    }
            
    byteArray.push(parsed);
  }

  return byteArray;
}

What is the above code doing?

Well, that is somewhat of a complicated, but at a high level, it is taking 3 input strings (presumably in utf8 encoding, or a string verson of a bytestring), and performing either a checksum, or compression algorithm using Bitwise Opperation to produce uniform base64 encoded string, spcific to linkerd.

For a raw breakdown of what the code is doing, see the BREAKDOWN.md doc.

Usage

Install NVM, NPM, Nodejs
Install Node 8.X
nvm install 8
nvm alias default 8 # optional
Install This package (Start Here if you have npm and node installed)

FAQs

Package last updated on 07 May 2018

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