@relaycorp/dnssec
Advanced tools
Comparing version 1.6.0 to 1.6.1
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
126158
141
1924
43