Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@asymmetrik/fhir-secrets
Advanced tools
FHIR-Secrets
AWS KMS Secrets retrieval promisified.
yarn add @asymmetrik/fhir-secrets
Depending on where you are running this code, the setup portion may change. If you have a default AWS profile with region and everything else set, you can use the decrypt function as follows:
const secrets = require('@asymmetrik/fhir-secrets');
// This is output when you encrypt a secret with kms
// https://docs.aws.amazon.com/cli/latest/reference/kms/encrypt.html
let CiphertextBlob = 'somefakeblobcontent=';
// Lets assume this blob contains metadata for a plaintext secret with value foobar
secrets.decrypt({ CiphertextBlob })
.then(secret => {
console.log(secret);
// logs foobar
})
.catch(console.error);
If you need to configure the setup process with region or other properties in the client class constructor, you can do so and chain the process.
const secrets = require('@asymmetrik/fhir-secrets');
secrets.configure({ region: 'us-east-2' })
.decrypt({ CiphertextBlob: 'somefakeblobcontent=' })
.then(secret => doThingsWithSecret())
.catch(console.error);
See fhir-secrets tests for more usage examples.
Configures the service class with any AWS or service class specific configurations.
This takes a single options object. See https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/KMS.html#constructor-property. It returns this
so you can immediately call decrypt
after configuring it.
Wrapper on kms.decrypt but returns a promise which resolves the plain text of the secret.
This takes a single options object. See https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/KMS.html#decrypt-property. The only necessary property from this is CiphertextBlob
.
FAQs
AWS KMS Secrets retrieval promisified
We found that @asymmetrik/fhir-secrets demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.