Changes between Version 1 and Version 2 of Keyringer


Ignore:
Timestamp:
Sep 12, 2016, 2:46:37 PM (2 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Keyringer

    v1 v2  
    1 Documentation for the Keyringer repo.
     1Documentation for the Keyringer repo, see the install notes at ticket:79#comment:5
     2
     3== Install Keyringer ==
     4
     5{{{
     6apt-get install keyringer
     7}}}
     8
     9== Check out the repo ==
     10
     11Once you have a bitbucket account and have been added to the crin project:
     12
     13{{{
     14cd ~
     15git clone git@bitbucket.org:crin/crin-keys.git
     16}}}
     17
     18== Decrypt a file ==
     19
     20{{{
     21cd ~/crin-keys/keys
     22gpg -d test.asc
     23}}}
     24
     25== Edit a file ==
     26
     27{{{
     28keyringer crin-keys edit test
     29cd ~/crin-keys/keys
     30git commit -a
     31git push
     32}}}
     33
     34== Create a file ==
     35
     36{{{
     37keyringer crin-keys encrypt example.org
     38
     39  stuff
     40
     41Ctrl-D
     42}}}
     43
     44Then
     45
     46{{{
     47cd ~/crin-keys
     48git add keys/example.org
     49git commit -a
     50git push
     51}}}