> For the complete documentation index, see [llms.txt](https://docs.cyberway.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cyberway.io/software_manuals/how_to_guides/list_all_key_pair.md).

# How To List All Key Pair

## Goal

List all key pairs.

## Before you begin

* Install the currently supported version of `cleos`.
* Understand the following:
  * What is a [public](https://docs.cyberway.io/users/glossary#public-key) and [private](https://docs.cyberway.io/users/glossary#private-key) key pair.

## Steps

Unlock your wallet

```bash
$ cleos wallet unlock
```

List all public keys:

```bash
$ cleos wallet keys
```

List all private keys:

```bash
$ cleos wallet private_keys
```

You can enter the password directly on the command line by adding the `--password` option:

```bash
$ cleos wallet unlock --password PW5...3RwP2
```

> **Be careful**\
> Never use your private keys in a production enviroment!
