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

@privacyresearch/ed25519-ts

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@privacyresearch/ed25519-ts - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

lib/scalars.d.ts

3

lib/index.d.ts

@@ -9,2 +9,3 @@ import { Hash } from './hash';

import { SigningFunctions } from './signing';
import { Scalars } from './scalars';
export * from './integers';

@@ -24,3 +25,5 @@ export * from './native-bigint';

utils: UtilsType;
Ints: Integers<BIT>;
scalars: Scalars<BIT>;
}
export declare function makeED<BIT extends BigIntType>(Ints: Integers<BIT>, sha512Impl?: Hash): Ed25519Type<BIT>;

@@ -21,2 +21,3 @@ "use strict";

const signing_1 = require("./signing");
const scalars_1 = require("./scalars");
__exportStar(require("./integers"), exports);

@@ -32,2 +33,3 @@ __exportStar(require("./native-bigint"), exports);

const keyUtils = new key_utils_1.KeyUtils(Ints, CURVE, serializer, math);
const scalars = new scalars_1.Scalars(Ints, CURVE, serializer, math);
// Default Point works in default aka affine coordinates: (x, y)

@@ -53,4 +55,6 @@ // Extended Point works in extended coordinates: (x, y, z, t) ∋ (x=x/z, y=y/z, t=xy)

keyUtils,
Ints,
scalars,
};
}
exports.makeED = makeED;

2

package.json
{
"name": "@privacyresearch/ed25519-ts",
"version": "0.0.1",
"version": "0.0.2",
"description": "TypeScript implementation of ed25519 & ristretto255 allowing BigInt and SHA dependency injection",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

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