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

@relaycorp/relaynet-core

Package Overview
Dependencies
Maintainers
2
Versions
293
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@relaycorp/relaynet-core - npm Package Compare versions

Comparing version 1.19.1 to 1.20.0

1

build/main/lib/messages/Message.d.ts

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

constructor(recipientAddress: string, senderCertificate: Certificate, payloadSerialized: Buffer, options?: Partial<MessageOptions>);
get expiryDate(): Date;
/**

@@ -27,0 +28,0 @@ * Return RAMF serialization of message.

@@ -25,2 +25,6 @@ "use strict";

}
get expiryDate() {
const creationDateTimestamp = this.date.getTime();
return new Date(creationDateTimestamp + this.ttl * 1000);
}
/**

@@ -27,0 +31,0 @@ * Return certification path between sender's certificate and one certificate in

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

constructor(recipientAddress: string, senderCertificate: Certificate, payloadSerialized: Buffer, options?: Partial<MessageOptions>);
get expiryDate(): Date;
/**

@@ -27,0 +28,0 @@ * Return RAMF serialization of message.

@@ -19,2 +19,6 @@ import bufferToArray from 'buffer-to-arraybuffer';

}
get expiryDate() {
const creationDateTimestamp = this.date.getTime();
return new Date(creationDateTimestamp + this.ttl * 1000);
}
/**

@@ -21,0 +25,0 @@ * Return certification path between sender's certificate and one certificate in

2

package.json
{
"name": "@relaycorp/relaynet-core",
"version": "1.19.1",
"version": "1.20.0",
"author": {

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

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