UNPKG

node-kms

Version:

A client implementation of the Key Management Service (KMS) for JavaScript -- for both node.js and browser.

14 lines (12 loc) 282 B
/**! * lib/index.js -- KMS Entry Point * * Copyright (c) 2015 Cisco Systems, Inc. See LICENSE file. */ "use strict"; module.exports = { KeyObject: require("./keyobject"), Context: require("./context"), Request: require("./request"), Response: require("./response") };