Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/lassiecoder/mutual-funding-app/server/node_modules/ecdsa-sig-formatter/src/

ecdsa-sig-formatter.d.ts /cody/lassiecoder/mutual-funding-app/server/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.d.ts
24 Views
0 Comments
/// <reference types="node" />

declare module "ecdsa-sig-formatter" {
/**
* Convert the ASN.1/DER encoded signature to a JOS
ecdsa-sig-formatter.js /cody/lassiecoder/mutual-funding-app/server/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.js
5 Views
0 Comments
'use strict';

var Buffer = require('safe-buffer').Buffer;

var getParamBytesForAlg = require('./param-bytes-for-alg');

var MAX
param-bytes-for-alg.js /cody/lassiecoder/mutual-funding-app/server/node_modules/ecdsa-sig-formatter/src/param-bytes-for-alg.js
7 Views
0 Comments
'use strict';

function getParamSize(keySize) {
var result = ((keySize / 8) | 0) + (keySize % 8 === 0 ? 0 : 1);
return result;