# nkeys.ex **Repository Path**: nats-io/nkeys.ex ## Basic Information - **Project Name**: nkeys.ex - **Description**: Experimental version of Keys library with support for xkey encryption - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-10-02 - **Last Updated**: 2026-05-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Nkeys [![hex.pm](https://img.shields.io/hexpm/v/nkeys.svg)](https://hex.pm/packages/nkeys) [![hex.pm](https://img.shields.io/hexpm/dt/nkeys.svg)](https://hex.pm/packages/nkeys) [![hex.pm](https://img.shields.io/hexpm/l/nkeys.svg)](https://hex.pm/packages/nkeys) [![github.com](https://img.shields.io/github/last-commit/nats-io/nkeys.ex.svg)](https://github.com/nats-io/nkeys.ex) Nkeys is an Elixir port of the original [Go](https://github.com/nats-io/nkeys) library. This library allows for the encoding and decoding of NATS keys in their human-friendly, double-clickable string format. Additionally, this library supports `Xkeys` encryption and decryption. ## Installation If [available in Hex](https://hex.pm/docs/publish), the package can be installed by adding `nkeys` to your list of dependencies in `mix.exs`: ```elixir def deps do [ {:nkeys, "~> 0.3.0"} ] end ```