• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.circleci/H07-Feb-2020-2726

.github/H07-Feb-2020-64

cmd/ssh-vault/H07-Feb-2020-190163

src/github.com/ssh-vault/ssh-vault/H03-May-2022-

test_data/H07-Feb-2020-111103

vendor/H03-May-2022-364,625303,779

.gitignoreH A D07-Feb-202075 87

.travis.ymlH A D07-Feb-2020799 3427

CHANGELOG.mdH A D07-Feb-2020250 107

CONTRIBUTING.mdH A D07-Feb-20203 KiB7748

DockerfileH A D07-Feb-2020237 109

Gopkg.lockH A D07-Feb-20202.4 KiB9484

Gopkg.tomlH A D07-Feb-20201,018 5143

LICENSEH A D07-Feb-20201.4 KiB2822

MakefileH A D07-Feb-20202.5 KiB7661

README.mdH A D07-Feb-20201.2 KiB4825

a_test.goH A D07-Feb-2020472 2519

cache.goH A D07-Feb-20202.5 KiB131108

cache_test.goH A D07-Feb-20203 KiB9184

close.goH A D07-Feb-2020697 3427

create.goH A D07-Feb-2020990 5043

create_test.goH A D07-Feb-20201.1 KiB7055

edit.goH A D07-Feb-2020670 3733

encode.goH A D07-Feb-2020319 1713

fingerprint_test.goH A D07-Feb-20205.5 KiB224180

get_password.goH A D07-Feb-2020252 124

get_password_darwin.goH A D07-Feb-2020958 4122

get_password_darwin_test.goH A D07-Feb-20202.3 KiB9973

get_password_prompt.goH A D07-Feb-2020363 2014

getkey.goH A D07-Feb-20201.7 KiB7968

getkey_test.goH A D07-Feb-20202.8 KiB10593

shred.goH A D07-Feb-2020501 3220

shred_test.goH A D07-Feb-2020728 4635

vault.goH A D07-Feb-20202.2 KiB11192

vault_test.goH A D07-Feb-20205.5 KiB269212

view.goH A D07-Feb-20202.7 KiB11996

README.md

1# ssh-vault ��
2
3[![Build Status](https://travis-ci.org/ssh-vault/ssh-vault.svg?branch=develop)](https://travis-ci.org/ssh-vault/ssh-vault)
4[![Coverage Status](https://coveralls.io/repos/github/ssh-vault/ssh-vault/badge.svg?branch=develop)](https://coveralls.io/github/ssh-vault/ssh-vault?branch=develop)
5[![Go Report Card](https://goreportcard.com/badge/github.com/ssh-vault/ssh-vault)](https://goreportcard.com/report/github.com/ssh-vault/ssh-vault)
6
7encrypt/decrypt using ssh private keys
8
9https://ssh-vault.com
10
11[ ![Download](https://api.bintray.com/packages/nbari/ssh-vault/ssh-vault/images/download.svg) ](https://dl.bintray.com/nbari/ssh-vault/)
12
13
14Usage:
15
16    $ ssh-vault -h
17
18Example:
19
20    $ echo "secret" | ssh-vault -u <github.com/user> create
21
22
23## Installation
24
25### Mac OS
26    brew install ssh-vault
27
28### Compile from source
29
30Setup go environment https://golang.org/doc/install
31
32For example using $HOME/go for your workspace
33
34    $ export GOPATH=$HOME/go
35
36Get the code:
37
38    $ go get github.com/ssh-vault/ssh-vault
39
40Build by just typing make:
41
42    $ cd $GOPATH/src/github.com/ssh-vault/ssh-vault
43    $ make
44
45## Issues
46
47Please feel free to raise any issue, feature requirement or a simple comment [here](https://github.com/ssh-vault/ssh-vault/issues).
48