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

node-mbed-dtls

Package Overview
Dependencies
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-mbed-dtls - npm Package Compare versions

Comparing version 1.3.6 to 2.0.0

4

CHANGELOG.md

@@ -0,1 +1,5 @@

# 2.0.0
* Remove public key as an argument because it can be derived from the private key
# 1.3.6

@@ -2,0 +6,0 @@

2

package.json
{
"name": "node-mbed-dtls",
"version": "1.3.6",
"version": "2.0.0",
"description": "Node mbed DTLS",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -33,6 +33,5 @@ 'use strict';

const cert = Buffer.isBuffer(options.cert) ? options.cert : fs.readFileSync(options.cert);
const key = Buffer.isBuffer(options.key) ? options.key : fs.readFileSync(options.key);
this.mbedServer = new mbed.DtlsServer(cert, key, options.debug);
this.mbedServer = new mbed.DtlsServer(key, options.debug);
}

@@ -39,0 +38,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