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

@helios-lang/crypto

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@helios-lang/crypto - npm Package Compare versions

Comparing version

to
0.1.16

4

package.json
{
"name": "@helios-lang/crypto",
"version": "0.1.15",
"version": "0.1.16",
"description": "Cryptography primitives used throughout HeliosLang codebase",

@@ -22,3 +22,3 @@ "main": "src/index.js",

"dependencies": {
"@helios-lang/codec-utils": "^0.1.36"
"@helios-lang/codec-utils": "^0.2.0"
},

@@ -25,0 +25,0 @@ "scripts": {

@@ -0,3 +1,3 @@

import { FieldWithOps } from "../../common/index.js"
import { CURVE1 } from "../constants.js"
import { F1, F2 } from "../fields/index.js"
import {

@@ -7,3 +7,3 @@ projectedCurve1 as G1,

} from "../curves/index.js"
import { hashToField } from "./hashToField.js"
import { F1, F2 } from "../fields/index.js"
import {

@@ -13,3 +13,3 @@ ISOGENY_COEFFICIENTS_G1,

} from "./constants.js"
import { FieldWithOps } from "../../common/index.js"
import { hashToField } from "./hashToField.js"

@@ -16,0 +16,0 @@ /**

@@ -1,3 +0,8 @@

export { hashToG1, hashToG2 } from "./hash/index.js"
export {
decodeG1Point,
decodeG2Point,
encodeG1Point,
encodeG2Point
} from "./codec.js"
export {
affineCurve1 as G1Affine,

@@ -8,9 +13,4 @@ projectedCurve1 as G1,

} from "./curves/index.js"
export {
decodeG1Point,
decodeG2Point,
encodeG1Point,
encodeG2Point
} from "./codec.js"
export { F12 } from "./fields/index.js"
export { hashToG1, hashToG2 } from "./hash/index.js"
export { finalExponentiate, finalVerify, millerLoop } from "./pairing.js"

@@ -17,0 +17,0 @@

@@ -1,15 +0,6 @@

import { CurveWithOps } from "../common/index.js"
import { CURVE1 } from "./constants.js"
import { affineCurve1 as G1, affineCurve2 as G2 } from "./curves/index.js"
import { F2, F12, F1 } from "./fields/index.js"
import { F2, F12 } from "./fields/index.js"
/**
* @typedef {import("./fields/index.js").FieldElement6} FieldElement6
*/
/**
* @typedef {import("./fields/index.js").FieldElement12} FieldElement12
*/
/**
* @template T

@@ -25,2 +16,7 @@ * @typedef {import("../common/index.js").Point2<T>} Point2

/**
* @typedef {import("./fields/index.js").FieldElement6} FieldElement6
* @typedef {import("./fields/index.js").FieldElement12} FieldElement12
*/
/**
* @param {Point2<bigint>} a

@@ -27,0 +23,0 @@ * @param {Point2<[bigint, bigint]>} b

@@ -0,1 +1,3 @@

export {}
/**

@@ -2,0 +4,0 @@ * Data container for affine points

@@ -0,1 +1,3 @@

export {}
/**

@@ -2,0 +4,0 @@ * Data container for projected points (much faster to do curve operations on than affine)

@@ -0,1 +1,3 @@

export {}
/**

@@ -2,0 +4,0 @@ * Data container for extended points (much faster to operate on than affine points)

@@ -6,3 +6,3 @@ import { CurveWithOps } from "./CurveWithOps.js"

* @template T
* @typedef {import("./Field.js").Field<T>} Field
* @typedef {import("./Curve.js").Curve<T>} Curve
*/

@@ -12,3 +12,3 @@

* @template T
* @typedef {import("./Curve.js").Curve<T>} Curve
* @typedef {import("./Field.js").Field<T>} Field
*/

@@ -15,0 +15,0 @@

@@ -7,3 +7,3 @@ import { CurveWithOps } from "../common/index.js"

* @template T
* @typedef {import("../common/index.js").Point2<T>} Point2
* @typedef {import("../common/index.js").Curve<T>} Curve
*/

@@ -13,3 +13,3 @@

* @template T
* @typedef {import("../common/index.js").Curve<T>} Curve
* @typedef {import("../common/index.js").Point2<T>} Point2
*/

@@ -16,0 +16,0 @@

@@ -0,4 +1,4 @@

export * from "./bls12_381/index.js"
export { Ed25519 } from "./ed25519/index.js"
export { ECDSASecp256k1, SchnorrSecp256k1 } from "./secp256k1/index.js"
export * from "./bls12_381/index.js"

@@ -5,0 +5,0 @@ /**

import { hmacDrbg } from "../../rand/index.js"
import { projectedCurve } from "./ProjectedCurve.js"
import {

@@ -13,3 +14,2 @@ decodeScalar,

import { Z } from "./field.js"
import { projectedCurve } from "./ProjectedCurve.js"

@@ -16,0 +16,0 @@ /**

import { encodeUtf8 } from "@helios-lang/codec-utils"
import { sha2_256 } from "../../digest/index.js"
import { mod } from "../common/index.js"
import { projectedCurve } from "./ProjectedCurve.js"
import {

@@ -14,3 +15,2 @@ decodePrivateKey,

import { Z } from "./field.js"
import { projectedCurve } from "./ProjectedCurve.js"

@@ -17,0 +17,0 @@ /**

export { F12 } from "./fields/index.js";
export type FieldElement12 = import("./fields/index.js").FieldElement12;
export { decodeG1Point, decodeG2Point, encodeG1Point, encodeG2Point } from "./codec.js";
export { affineCurve1 as G1Affine, projectedCurve1 as G1, affineCurve2 as G2Affine, projectedCurve2 as G2 } from "./curves/index.js";
export { hashToG1, hashToG2 } from "./hash/index.js";
export { affineCurve1 as G1Affine, projectedCurve1 as G1, affineCurve2 as G2Affine, projectedCurve2 as G2 } from "./curves/index.js";
export { decodeG1Point, decodeG2Point, encodeG1Point, encodeG2Point } from "./codec.js";
export { finalExponentiate, finalVerify, millerLoop } from "./pairing.js";
//# sourceMappingURL=index.d.ts.map
/**
* @typedef {import("./fields/index.js").FieldElement6} FieldElement6
*/
/**
* @typedef {import("./fields/index.js").FieldElement12} FieldElement12
*/
/**
* @template T

@@ -16,2 +10,6 @@ * @typedef {import("../common/index.js").Point2<T>} Point2

/**
* @typedef {import("./fields/index.js").FieldElement6} FieldElement6
* @typedef {import("./fields/index.js").FieldElement12} FieldElement12
*/
/**
* @param {Point2<bigint>} a

@@ -39,6 +37,6 @@ * @param {Point2<[bigint, bigint]>} b

export function finalVerify(a: FieldElement12, b: FieldElement12): boolean;
export type Point2<T> = import("../common/index.js").Point2<T>;
export type Point3<T> = import("../common/index.js").Point3<T>;
export type FieldElement6 = import("./fields/index.js").FieldElement6;
export type FieldElement12 = import("./fields/index.js").FieldElement12;
export type Point2<T> = import("../common/index.js").Point2<T>;
export type Point3<T> = import("../common/index.js").Point3<T>;
//# sourceMappingURL=pairing.d.ts.map

@@ -28,12 +28,12 @@ /**

}
export type Curve<T> = import("./Curve.js").Curve<T>;
export type Field<T> = import("./Field.js").Field<T>;
export type Curve<T> = import("./Curve.js").Curve<T>;
export type Point2<T> = import("./Point2.js").Point2<T>;
/**
* @template T
* @typedef {import("./Field.js").Field<T>} Field
* @typedef {import("./Curve.js").Curve<T>} Curve
*/
/**
* @template T
* @typedef {import("./Curve.js").Curve<T>} Curve
* @typedef {import("./Field.js").Field<T>} Field
*/

@@ -40,0 +40,0 @@ /**

@@ -17,6 +17,6 @@ /**

}
export type Curve<T> = import("../common/index.js").Curve<T>;
export type Point2<T> = import("../common/index.js").Point2<T>;
export type Curve<T> = import("../common/index.js").Curve<T>;
export type Ed25519Curve<T> = import("./Ed25519Curve.js").Ed25519Curve<T>;
import { CurveWithOps } from "../common/index.js";
//# sourceMappingURL=AffineCurve.d.ts.map

@@ -0,3 +1,3 @@

export * from "./bls12_381/index.js";
export { Ed25519 } from "./ed25519/index.js";
export * from "./bls12_381/index.js";
export type Point2<T> = import("./common/index.js").Point2<T>;

@@ -4,0 +4,0 @@ export type Point3<T> = import("./common/index.js").Point3<T>;

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet