~ubuntu-branches/ubuntu/utopic/hockeypuck/utopic-proposed

« back to all changes in this revision

Viewing changes to build/src/github.com/hockeypuck/hockeypuck/doc/pages/index.txt

  • Committer: Package Import Robot
  • Author(s): Casey Marshall
  • Date: 2014-04-13 20:06:01 UTC
  • Revision ID: package-import@ubuntu.com-20140413200601-oxdlqn1gy0x8m55u
Tags: 1.0~rel20140413+7a1892a~trusty
Hockeypuck 1.0 release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.. title: Hockeypuck
 
2
.. slug: index
 
3
.. date: 2013/10/12 22:19:17
 
4
.. tags:
 
5
.. link:
 
6
 
 
7
.. image:: /gohkp.png
 
8
   :align: right
 
9
 
 
10
Hockeypuck is an OpenPGP `public keyserver <https://en.wikipedia.org/wiki/Key_server_(cryptographic)>`_.
 
11
 
 
12
This keyserver implements the
 
13
`HKP draft protocol specification <http://ietfreport.isoc.org/idref/draft-shaw-openpgp-hkp/>`_
 
14
as well as several extensions to the protocol supported by `SKS <http://sks-keyservers.net/>`_.
 
15
 
 
16
Public key material conforming to `RFC 4880 <https://tools.ietf.org/html/rfc4880>`_ are supported by the service, as are `RFC 6637 <https://tools.ietf.org/html/rfc6637>`_ ECC keys.
 
17
 
 
18
Go Language
 
19
-----------
 
20
Hockeypuck is developed in 100% pure `Go <http://http://golang.org/>`_. It compiles and runs on Linux and BSD variants including Mac OS X. The concurrent capacity of the service should be limited only by the underlying key storage database. The Go language fosters a simple, modular, mostly-imperative programming style that I think is natural yet refreshing for developers coming from a C, Python or Java background (like myself).
 
21
 
 
22
PostgreSQL Key Database
 
23
-----------------------
 
24
Hockeypuck stores all public key material in a relational PostgreSQL database.
 
25
The schema is optimized for performance but also data integrity, cross-referencing
 
26
and search capabilities with judicious use of foreign keys and full-text indexing.
 
27
 
 
28
SKS Reconciliation Protocol
 
29
---------------------------
 
30
Hockeypuck is the first keyserver besides SKS that is capable of synchronizing public
 
31
key material with peers using the SKS reconciliation protocol. Recon protocol
 
32
support is provided with the `Conflux <https://github.com/cmars/conflux>`_ library,
 
33
developed initially for this purpose, but potentially useful for other applications.