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

samlify

Package Overview
Dependencies
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

samlify - npm Package Compare versions

Comparing version 2.8.8 to 2.8.9

2

build/src/extractor.js

@@ -319,3 +319,3 @@ "use strict";

var values = (0, xpath_1.select)(childXPath_1, nodeDoc).reduce(function (r, n) {
r[(0, camelcase_1.default)(n.name)] = n.value;
r[(0, camelcase_1.default)(n.name, { locale: 'en-us' })] = n.value;
return r;

@@ -322,0 +322,0 @@ }, {});

@@ -203,3 +203,3 @@ "use strict";

function tagging(prefix, content) {
var camelContent = (0, camelcase_1.default)(content);
var camelContent = (0, camelcase_1.default)(content, { locale: 'en-us' });
return prefix + camelContent.charAt(0).toUpperCase() + camelContent.slice(1);

@@ -457,3 +457,3 @@ }

// Embed with node-rsa module
var decryptedKey = new node_rsa_1.default(utility_1.default.readPrivateKey(key, passphrase), 'private', {
var decryptedKey = new node_rsa_1.default(utility_1.default.readPrivateKey(key, passphrase), undefined, {
signingScheme: getSigningScheme(signingAlgorithm),

@@ -460,0 +460,0 @@ });

{
"name": "samlify",
"version": "2.8.8",
"version": "2.8.9",
"description": "High-level API for Single Sign On (SAML 2.0)",

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

@@ -339,3 +339,3 @@ import { DOMParser } from '@xmldom/xmldom';

const values = select(childXPath, nodeDoc).reduce((r: any, n: Attr) => {
r[camelCase(n.name)] = n.value;
r[camelCase(n.name, {locale: 'en-us'})] = n.value;
return r;

@@ -342,0 +342,0 @@ }, {});

@@ -239,3 +239,3 @@ /**

function tagging(prefix: string, content: string): string {
const camelContent = camelCase(content);
const camelContent = camelCase(content, {locale: 'en-us'});
return prefix + camelContent.charAt(0).toUpperCase() + camelContent.slice(1);

@@ -549,3 +549,3 @@ }

utility.readPrivateKey(key, passphrase),
'private',
undefined,
{

@@ -552,0 +552,0 @@ signingScheme: getSigningScheme(signingAlgorithm),

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