1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
<?xml version="1.0" encoding="utf-8"?> <!-- -*-mode: xml; sgml-indent-data: t; -*- -->
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=utf-8"/>
<title>Nettle - a low-level crypto library</title>
</head>
<body style='bgcolor="white"; text="black"; link="darkblue"; alink="red"; vlink="darkblue"'>
<h1>Nettle - a low-level cryptographic library</h1>
<blockquote>
<p>
Nettle is a cryptographic library that is designed to fit easily in more
or less any context: In crypto toolkits for object-oriented languages
(C++, Python, Pike, ...), in applications like LSH or GNUPG, or even in
kernel space.
</p>
</blockquote>
<h2> Documentation </h2>
<p>
A complete manual is included if you download the Nettle source code.
You can also <a href="nettle.html">read the manual online</a>.
</p>
<h2> Download </h2>
<p>
Get the latest version by <a
href="https://ftp.gnu.org/gnu/nettle/">https</a> or <a
href="ftp://ftp.gnu.org/gnu/nettle/">ftp</a>.
Recent releases are signed with the following PGP key:
</p>
<blockquote>
<pre>
pub 2560R/28C67298 2013-01-07
Key fingerprint = 343C 2FF0 FBEE 5EC2 EDBE F399 F359 9FF8 28C6 7298
uid Niels Möller <nisse@lysator.liu.se>
</pre>
</blockquote>
<h2> Language bindings </h2>
<p> I'm aware of nettle-bindings for the following higher-level
languages.</p>
<dl>
<dt> <a href='http://hackage.haskell.org/package/bindings-nettle'>Haskell</a> </dt>
<dd> Haskell bindings by Clint Adams. </dd>
<dt> <a href='http://search.cpan.org/~dkg/Crypt-Nettle-0.3/lib/Crypt/Nettle.pm'>Perl</a></dt>
<dd> Crypt::Nettle module, by Daniel Kahn Gillmor.</dd>
<dt> <a href="http://pike.lysator.liu.se">Pike</a></dt>
<dd> An object-oriented interpreted language with C-like syntax.
Nettle bindings are included with the official distribution.</dd>
<dt> <a href='http://www.yellowbank.com/code/PostgreSQL/y_crypto/'>PostgreSQL</a></dt>
<dd> Bindings for the Postgres database, by Ron Peterson. </dd>
<dt> <a href='http://marcomaggi.github.com/nausicaa.html'>R6RS
Scheme</a></dt>
<dd> Scheme bindings by Marco Maggi, supporting multiple R6RS implementations.</dd>
<dt> <a href='https://crates.io/crates/nettle'>Rust</a> </dt>
<dd> Rust bindings by Kai Michaelis. </dd>
<dt> TCL </dt>
<dd> Included in the chiark-tcl debian package by Ian Jackson (not
sure if/how it's distributed outside of debian). </dd>
</dl>
<p>
Mail me for corrections or additions to this list.
</p>
<h2> GIT access </h2>
<p>
The public git repository for Nettle is located at <a
href='http://git.lysator.liu.se/nettle/nettle'>git.lysator.liu.se</a>.
After checkout, you need to run the <tt>.bootstrap</tt> script
before the standard <tt>./configure && make</tt>.
</p>
<p>
Earlier, Nettle was version controlled as part of the LSH
repository. When converted to the current repository, the history of
all files has been maintained as far as practical. But since the
directory organization used to be a bit different, building old
versions of Nettle from the current git repository does not work out
of the box. To do that, you have to check out historic versions from
the <a href='http://git.lysator.liu.se/lsh/lsh'>LSH repository</a>
instead.
</p>
<h2> Contact </h2>
<p>
Send mail to
the <a href='http://lists.lysator.liu.se/mailman/listinfo/nettle-bugs'><tt>nettle-bugs</tt>
mailinglist</a> or directly to me
at <a href="mailto:nisse@lysator.liu.se"><tt>Niels Möller
<nisse@lysator.liu.se></tt></a> if you have any questions.
</p>
</body>
</html>
|