@libp2p/interface-keys
Version:
57 lines (39 loc) • 1.95 kB
Markdown
# @libp2p/interface-keys <!-- omit in toc -->
[](http://libp2p.io/)
[](https://discuss.libp2p.io)
[](https://codecov.io/gh/libp2p/js-libp2p-interfaces)
[](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml?query=branch%3Amaster)
> Keys interface for libp2p
## Table of contents <!-- omit in toc -->
- [Install](#install)
- [Using the Test Suite](#using-the-test-suite)
- [API Docs](#api-docs)
- [License](#license)
- [Contribution](#contribution)
## Install
```console
$ npm i @libp2p/interface-keys
```
## Using the Test Suite
You can also check out the [internal test suite](../../test/crypto/compliance.spec.js) to see the setup in action.
```js
const tests = require('libp2p-interfaces-compliance-tests/keys')
const yourKeys = require('./your-keys')
tests({
setup () {
// Set up your keys if needed, then return it
return yourKeys
},
teardown () {
// Clean up your keys if needed
}
})
```
## API Docs
- <https://libp2p.github.io/js-libp2p-interfaces/modules/_libp2p_interface_keys.html>
## License
Licensed under either of
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
## Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.