git-remote-gcrypt/README.rst

167 lines
4.7 KiB
ReStructuredText
Raw Normal View History

=================
git-remote-gcrypt
=================
2013-02-14 01:00:00 +01:00
--------------------------------------
GNU Privacy Guard-encrypted git remote
--------------------------------------
2013-02-14 01:00:00 +01:00
:Author: Ulrik Sverdrup
:Manual section: 1
Description
===========
Remote helper programs are invoked by git to handle network transport.
This helper handles gcrypt:: URLs that will access a remote repository
encrypted with GPG, using our custom format.
Supported locations are `local`, `ssh://`, `sftp://` and
`gitception://`. `gcrypt::gitception://<giturl>` allows stacking gcrypt
on top of any other git transport.
2013-02-14 01:00:00 +01:00
2013-02-14 01:00:00 +01:00
.. NOTE:: Repository format MAY STILL change, incompatibly
2013-02-14 01:00:00 +01:00
Quickstart
..........
2013-02-14 01:00:00 +01:00
Install as `git-remote-gcrypt` in `$PATH`.
2013-02-14 01:00:00 +01:00
Configure a keyring:
2013-02-14 01:00:00 +01:00
::
2013-02-14 01:00:00 +01:00
gpg --export KEY1 KEY2 > $PWD/.git/keyring.gpg
git config --path gcrypt.keyring $PWD/.git/keyring.gpg
Create an encrypted remote by pushing to it:
::
git remote add cryptremote gcrypt::ssh://example.com:repo
git push cryptremote master
> gcrypt: Setting up new repository at ssh://example.com:repo
> gcrypt: Repository ID is KNBr0wKzct52
> gcrypt: Repository URL is gcrypt::ssh://example.com:repo/G.KNBr0wKzct52
> gcrypt: (configuration for cryptremote updated)
> [ more lines .. ]
> To gcrypt::[...]
> * [new branch] master -> master
2013-02-14 01:00:00 +01:00
Share the updated Repository URL with everyone in the keyring.
(The generated Repository ID is not secret, it only exists to ensure
that two repositories signed by the same user can not be maliciously
switched around. It incidentally allows multiple repositories to all
share location.)
2013-02-14 01:00:00 +01:00
Design Goals
............
2013-02-14 01:00:00 +01:00
+ Confidential, authenticated git storage and collaboration on any
untrusted file host or service. The only information we (by necessity)
leak is the approximate size and timing of updates. PLEASE help me
evaluate how well we meet this design goal!
2013-02-14 01:00:00 +01:00
Configuration
=============
*gcrypt.keyring*
Path to the GPG keyring file containing the public keys of all
participants. This file can be created using ``gpg --export``.
2013-02-14 01:00:00 +01:00
git-remote-gcrypt respects the variable *user.signingkey*.
2013-02-14 01:00:00 +01:00
.. NOTE:: GPG configuration applies to public-key encryption, symmetric
encryption, and signing. See `man gpg`.
2013-02-14 01:00:00 +01:00
All readers of the repository must have their pubkey included in the
keyring used when pushing. All writers must have the complete set of
pubkeys available. You can commit the keyring to the repo, further key
management features do not yet exist.
2013-02-14 01:00:00 +01:00
Examples
========
2013-02-14 01:00:00 +01:00
::
gpg --export YOURKEYID > $PWD/.git/keyring.gpg
git config gcrypt.keyring $PWD/.git/keyring.gpg
git remote add cryptremote gcrypt::ssh://example.com:repo
git push cryptremote HEAD
Notes
=====
2013-02-14 01:00:00 +01:00
Repository Format
.................
2013-02-14 01:00:00 +01:00
+ Protocol::
2013-02-14 01:00:00 +01:00
EncSign(X) is sign+encrypt to a PGP key holder
Encrypt(K,X) is symmetric encryption
Hash(X) is SHA-224
B: branch list
L: list of the hash (Hi) and key (Ki) for each packfile
2013-02-14 01:00:00 +01:00
R: Hash(Repository ID)
Store Manifest as EncSign(B || L || R) in filename R
Store each packfile P as P' = Encrypt(Ki, P) in filename Hi
where Hi = Hash(P') and Ki is a random string
2013-02-14 01:00:00 +01:00
To read the repository
decrypt+verify Manifest using private key -> (B, L, R)
2013-02-14 01:00:00 +01:00
verify R matches Hash(Requested Repository ID)
for Hi, Ki in L:
download file Hi from the server -> P'
verify Hash(P') matches Hi
decrypt P' using Ki -> P then open P with git
2013-02-14 01:00:00 +01:00
Only packs mentioned in L are downloaded.
Manifest file
.............
::
2013-02-14 01:00:00 +01:00
$ gpg -d < 5a191cea8c1021a95d813c4007c14f2cc987a40880c2f669430f1916
b4a4a39365d19282810c19d0f3f24d04dd2d179f refs/tags/version1
2013-02-14 01:00:00 +01:00
1d323ddadf4cf1d80fced447e637ab3766b168b7 refs/heads/master
pack :SHA224:cfdf36515e0d0820554fe5fd9f00a4bee17bcf88ec8a752d851c46ee \
Rc+j8Nv6GOW3mBhWOx6W6jjz3BTX7B6XIJ6RYI+P4TEyy+X6p2PB/fsBL9la0Tuc
pack :SHA224:a43ccd208d3bd2ea582dbd5407cb8ed6e18b150b1da25c806115eaa5 \
UXR3/R7awFCUJWYdzXzrlkk7E2Acxq/Y4EfEcd62AwGGe0o0QxL+s5CwWI/NvMhb
repo :SHA224:5a191cea8c1021a95d813c4007c14f2cc987a40880c2f669430f1916 1
2013-02-14 01:00:00 +01:00
+ `field<space>value`, extends until newline.
+ `field` is one of `[0-9a-f]{40}`, `pack`, `repo`, `keep` (planned),
`extn` (extension fields, preserved but unused).
2013-02-14 01:00:00 +01:00
Yet to be Implemented
.....................
2013-02-14 01:00:00 +01:00
+ Repacking the remote repository
+ Some kind of simple keyring management
See Also
========
git-remote-helpers(1), gpg(1)
License
=======
git-remote-gcrypt is licensed under the terms of the GNU GPL version 2
(or at your option, any later version). See http://www.gnu.org/licenses/
.. vim: ft=rst tw=72
.. this document generates a man page with rst2man