Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@relaycorp/dnssec

Package Overview
Dependencies
Maintainers
2
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@relaycorp/dnssec - npm Package Compare versions

Comparing version 1.6.0 to 1.6.1

build/lib/lib/DatePeriod.d.ts

10

build/lib/index.d.ts

@@ -8,6 +8,6 @@ export { IanaRrTypeName, IanaRrTypeIdOrName } from './lib/dns/ianaRrTypes';

export { RRSet } from './lib/dns/RRSet';
export { DnssecAlgorithm } from './lib/DnssecAlgorithm';
export { ZoneSigner } from './lib/signing/ZoneSigner';
export { DatePeriod } from './lib/verification/DatePeriod';
export { Resolver } from './lib/verification/Resolver';
export { ChainVerificationResult, UnverifiedChain, VerifiedChainResult, } from './lib/verification/UnverifiedChain';
export { DatePeriod } from './lib/DatePeriod';
export { Resolver } from './lib/Resolver';
export { dnssecLookUp } from './lib/lookup';
export { ChainVerificationResult, FailureResult, VerifiedRRSet } from './lib/results';
export { TrustAnchor } from './lib/TrustAnchor';

@@ -7,6 +7,4 @@ export { DnsClass } from './lib/dns/ianaClasses';

// DNSSEC-related
export { DnssecAlgorithm } from './lib/DnssecAlgorithm';
export { ZoneSigner } from './lib/signing/ZoneSigner';
export { DatePeriod } from './lib/verification/DatePeriod';
export { UnverifiedChain, } from './lib/verification/UnverifiedChain';
export { DatePeriod } from './lib/DatePeriod';
export { dnssecLookUp } from './lib/lookup';
//# sourceMappingURL=index.js.map

@@ -12,3 +12,3 @@ import { IanaRrTypeIdOrName, IanaRrTypeName } from './ianaRrTypes';

readonly class_: DnsClass;
constructor(name: string, type: IanaRrTypeIdOrName, class_: DnsClassIdOrName);
constructor(name: string, type: IanaRrTypeIdOrName, class_?: DnsClassIdOrName);
get key(): string;

@@ -15,0 +15,0 @@ getTypeName(): IanaRrTypeName;

import { getRrTypeId, IANA_RR_TYPE_NAMES } from './ianaRrTypes';
import { DnsError } from './DnsError';
import { getDnsClassId } from './ianaClasses';
import { DnsClass, getDnsClassId } from './ianaClasses';
import { normaliseName } from './name';

@@ -9,3 +9,3 @@ export class Question {

class_;
constructor(name, type, class_) {
constructor(name, type, class_ = DnsClass.IN) {
this.name = normaliseName(name);

@@ -12,0 +12,0 @@ this.typeId = getRrTypeId(type);

@@ -9,3 +9,3 @@ /// <reference types="node" />

import { RrsigData } from './RrsigData';
import { DatePeriod } from '../verification/DatePeriod';
import { DatePeriod } from '../DatePeriod';
export declare class DnskeyData implements DnssecRecordData {

@@ -12,0 +12,0 @@ readonly publicKey: KeyObject;

{
"name": "@relaycorp/dnssec",
"version": "1.6.0",
"version": "1.6.1",
"author": {

@@ -5,0 +5,0 @@ "email": "no-reply@relaycorp.tech",

@@ -35,6 +35,2 @@ # `@relaycorp/dnssec`

### Signature production support
This library supports producing RRSig records simply for testing purposes: It makes it very easy to test valid and invalid signatures both internally and from any software using this library, without mocking anything.
### Cryptographic Algorithms support

@@ -41,0 +37,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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