Socket
Socket
Sign inDemoInstall

@peculiar/x509

Package Overview
Dependencies
Maintainers
6
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@peculiar/x509 - npm Package Compare versions

Comparing version 1.7.3 to 1.8.0

10

build/types/x509_cert_generator.d.ts

@@ -0,1 +1,2 @@

import { BufferSource } from "pvtsutils";
import { Extension } from "./extension";

@@ -13,8 +14,15 @@ import { JsonName, Name } from "./name";

}
export interface X509CertificateCreateParams extends X509CertificateCreateParamsBase {
export interface X509CertificateCreateCommonParams extends X509CertificateCreateParamsBase {
subject?: X509CertificateCreateParamsName;
issuer?: X509CertificateCreateParamsName;
}
export interface X509CertificateCreateWithKeyParams extends X509CertificateCreateCommonParams {
publicKey: PublicKeyType;
signingKey: CryptoKey;
}
export interface X509CertificateCreateWithSignatureParams extends X509CertificateCreateCommonParams {
signature: BufferSource;
publicKey: CryptoKey;
}
export declare type X509CertificateCreateParams = X509CertificateCreateWithKeyParams | X509CertificateCreateWithSignatureParams;
export interface X509CertificateCreateSelfSignedParams extends X509CertificateCreateParamsBase {

@@ -21,0 +29,0 @@ name?: X509CertificateCreateParamsName;

23

package.json
{
"name": "@peculiar/x509",
"version": "1.7.3",
"version": "1.8.0",
"description": "@peculiar/x509 is an easy to use TypeScript/Javascript library based on @peculiar/asn1-schema that makes generating X.509 Certificates and Certificate Requests as well as validating certificate chains easy",

@@ -73,4 +73,4 @@ "main": "build/x509.cjs.js",

"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@peculiar/webcrypto": "^1.4.0",

@@ -81,15 +81,15 @@ "@rollup/plugin-babel": "^5.3.1",

"@types/mocha": "^9.1.1",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"coveralls": "^3.1.1",
"eslint": "^8.19.0",
"eslint": "^8.20.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.76.0",
"rollup": "^2.77.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"ts-node": "^10.8.2",
"typedoc": "^0.23.7",
"ts-node": "^10.9.1",
"typedoc": "^0.23.8",
"typescript": "^4.7.4"

@@ -111,4 +111,5 @@ },

"resolutions": {
"minimist": "^1.2.6"
"minimist": "^1.2.6",
"terser": "^5.14.2"
}
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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