Categorygithub.com/thatmattlove/c7
modulepackage
1.0.0
Repository: https://github.com/thatmattlove/c7.git
Documentation: pkg.go.dev

# README

c7


Test Status
Quickly Encode/Decode a Cisco Type 7 Password at the Command Line

Usage

Install using Goblin

curl -sf http://goblin.run/github.com/thatmattlove/c7 | sh

Download the latest release

There are multiple builds of the release, for different CPU architectures/platforms. Download and unpack the release for your platform:

wget <release url>
tar xvfz <release file> c7

Run the binary

$ ./c7 --help

Usage: c7 <command> [flags]

Quickly Encode/Decode a Cisco Type 7 Password

Flags:
  -h, --help    Show context-sensitive help.

Commands:
  encode (e) <value> [flags]
    Encode a value to a Cisco type 7 hash

  decode (d) <value> [flags]
    Decode a Cisco type 7 hash back to plain text

Run "c7 <command> --help" for more information on a command.

Encode

$ c7 encode Password1234

 Encoded
 ─────────────────────────────
  0236054818110033481F5B4A51

Decode

$ c7 decode 06360E325F59060B0146405858

 Decoded
 ───────────────
  Password1234

GitHub