@evervault/sdk
Advanced tools
Comparing version 3.12.3 to 3.12.4
@@ -7,13 +7,16 @@ const certHelper = require('./certHelper'); | ||
let attestationBindings; | ||
const attestationBindings = loadAttestationBindings(); | ||
function hasAttestationBindings() { | ||
function loadAttestationBindings() { | ||
try { | ||
attestationBindings = require('evervault-attestation-bindings'); | ||
return true; | ||
return require('evervault-attestation-bindings'); | ||
} catch (_) { | ||
return false; | ||
return null; | ||
} | ||
} | ||
function hasAttestationBindings() { | ||
return attestationBindings != null; | ||
} | ||
async function trustCagesRootCA(evClient) { | ||
@@ -20,0 +23,0 @@ const pem = await evClient.getCagesCert(); |
{ | ||
"name": "@evervault/sdk", | ||
"version": "3.12.3", | ||
"version": "3.12.4", | ||
"description": "Node.js SDK for Evervault", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
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
61772
1718