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

emailjs

Package Overview
Dependencies
Maintainers
0
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

emailjs - npm Package Compare versions

Comparing version 0.1.7 to 0.1.8

2

package.json
{
"name": "emailjs",
"description": "send text/html emails and attachments from node.js to any smtp server",
"version": "0.1.7",
"version": "0.1.8",
"author": "eleith",

@@ -6,0 +6,0 @@ "contributors": ["izuzak"],

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

#v0.1.7
#v0.1.8

@@ -3,0 +3,0 @@ ### emailjs

@@ -493,3 +493,7 @@ /*

challenge = (new Buffer(challenge, "base64")).toString("ascii");
return (new Buffer(login.user + " " + crypto.createHMAC(login.password, challenge).digest('hex')).toString("base64"));
var hmac = crypto.createHmac('md5', login.password);
hmac.update(challenge);
return (new Buffer(login.user + " " + hmac.digest('hex')).toString("base64"));
},

@@ -496,0 +500,0 @@

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