Subversion Repositories

?revision_form?Rev ?revision_input??revision_submit??revision_endform?

Rev 164 | Rev 166 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 164 Rev 165
1
Source: nettle
1
Source: nettle
2
Section: libs
2
Section: libs
3
Priority: optional
3
Priority: optional
4
Maintainer: Magnus Holmgren <holmgren@debian.org>
4
Maintainer: Magnus Holmgren <holmgren@debian.org>
5
Build-Depends: dpkg-dev (>= 1.15.7), debhelper (>= 9),
5
Build-Depends: dpkg-dev (>= 1.15.7), debhelper (>= 9),
6
 libgmp-dev, m4, autotools-dev (>= 20100122.1), texinfo
6
 libgmp-dev, m4, autotools-dev (>= 20100122.1), texinfo
7
Standards-Version: 3.9.8
7
Standards-Version: 3.9.8
8
Vcs-Svn: svn://svn.kibibyte.se/nettle/trunk
8
Vcs-Svn: svn://svn.kibibyte.se/nettle/trunk
9
Vcs-Browser: http://svn.kibibyte.se/nettle
9
Vcs-Browser: http://svn.kibibyte.se/nettle
10
Homepage: http://www.lysator.liu.se/~nisse/nettle/
10
Homepage: http://www.lysator.liu.se/~nisse/nettle/
11
11
12
Package: libnettle6
12
Package: libnettle6
13
Architecture: any
13
Architecture: any
14
Multi-Arch: same
14
Multi-Arch: same
15
Pre-Depends: ${misc:Pre-Depends}
15
Pre-Depends: ${misc:Pre-Depends}
16
Depends: ${shlibs:Depends}, ${misc:Depends}
16
Depends: ${shlibs:Depends}, ${misc:Depends}
17
Description: low level cryptographic library (symmetric and one-way cryptos)
17
Description: low level cryptographic library (symmetric and one-way cryptos)
18
 Nettle is a cryptographic library that is designed to fit easily in more or
18
 Nettle is a cryptographic library that is designed to fit easily in more or
19
 less any context: In crypto toolkits for object-oriented languages (C++,
19
 less any context: In crypto toolkits for object-oriented languages (C++,
20
 Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel
20
 Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel
21
 space.
21
 space.
22
 .
22
 .
23
 It tries to solve a problem of providing a common set of cryptographic 
23
 It tries to solve a problem of providing a common set of cryptographic 
24
 algorithms for higher-level applications by implementing a
24
 algorithms for higher-level applications by implementing a
25
 context-independent set of cryptographic algorithms. In that light, Nettle
25
 context-independent set of cryptographic algorithms. In that light, Nettle
26
 doesn't do any memory allocation or I/O, it simply provides the
26
 doesn't do any memory allocation or I/O, it simply provides the
27
 cryptographic algorithms for the application to use in any environment and
27
 cryptographic algorithms for the application to use in any environment and
28
 in any way it needs.
28
 in any way it needs.
29
 .
29
 .
30
 This package contains the symmetric and one-way cryptographic
30
 This package contains the symmetric and one-way cryptographic
31
 algorithms. To avoid having this package depend on libgmp, the
31
 algorithms. To avoid having this package depend on libgmp, the
32
 asymmetric cryptos reside in a separate library, libhogweed.
32
 asymmetric cryptos reside in a separate library, libhogweed.
33
33
34
Package: libhogweed4
34
Package: libhogweed4
35
Architecture: any
35
Architecture: any
36
Multi-Arch: same
36
Multi-Arch: same
37
Pre-Depends: ${misc:Pre-Depends}
37
Pre-Depends: ${misc:Pre-Depends}
38
Depends: ${shlibs:Depends}, ${misc:Depends}
38
Depends: ${shlibs:Depends}, ${misc:Depends}
39
Description: low level cryptographic library (public-key cryptos)
39
Description: low level cryptographic library (public-key cryptos)
40
 Nettle is a cryptographic library that is designed to fit easily in more or
40
 Nettle is a cryptographic library that is designed to fit easily in more or
41
 less any context: In crypto toolkits for object-oriented languages (C++,
41
 less any context: In crypto toolkits for object-oriented languages (C++,
42
 Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel
42
 Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel
43
 space.
43
 space.
44
 .
44
 .
45
 It tries to solve a problem of providing a common set of cryptographic 
45
 It tries to solve a problem of providing a common set of cryptographic 
46
 algorithms for higher-level applications by implementing a
46
 algorithms for higher-level applications by implementing a
47
 context-independent set of cryptographic algorithms. In that light, Nettle
47
 context-independent set of cryptographic algorithms. In that light, Nettle
48
 doesn't do any memory allocation or I/O, it simply provides the
48
 doesn't do any memory allocation or I/O, it simply provides the
49
 cryptographic algorithms for the application to use in any environment and
49
 cryptographic algorithms for the application to use in any environment and
50
 in any way it needs.
50
 in any way it needs.
51
 .
51
 .
52
 This package contains the asymmetric cryptographic algorithms, which,
52
 This package contains the asymmetric cryptographic algorithms, which,
53
 require the GNU multiple precision arithmetic library (libgmp) for
53
 require the GNU multiple precision arithmetic library (libgmp) for
54
 their large integer computations.
54
 their large integer computations.
55
55
56
Package: nettle-dev
56
Package: nettle-dev
57
Section: libdevel
57
Section: libdevel
58
Architecture: any
58
Architecture: any
59
Multi-Arch: same
59
Multi-Arch: same
60
Depends: libnettle6 (= ${binary:Version}), libhogweed4 (= ${binary:Version}),
60
Depends: libnettle6 (= ${binary:Version}), libhogweed4 (= ${binary:Version}),
61
         libgmp10-dev, dpkg (>= 1.15.4) | install-info, ${misc:Depends}
61
         libgmp10-dev, dpkg (>= 1.15.4) | install-info, ${misc:Depends}
62
Replaces: libnettle-dev
62
Replaces: libnettle-dev
63
Conflicts: libnettle-dev
63
Conflicts: libnettle-dev
64
Description: low level cryptographic library (development files)
64
Description: low level cryptographic library (development files)
65
 Nettle is a cryptographic library that is designed to fit easily in more or
65
 Nettle is a cryptographic library that is designed to fit easily in more or
66
 less any context: In crypto toolkits for object-oriented languages (C++,
66
 less any context: In crypto toolkits for object-oriented languages (C++,
67
 Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel
67
 Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel
68
 space.
68
 space.
69
 .
69
 .
70
 It tries to solve a problem of providing a common set of cryptographic 
70
 It tries to solve a problem of providing a common set of cryptographic 
71
 algorithms for higher-level applications by implementing a
71
 algorithms for higher-level applications by implementing a
72
 context-independent set of cryptographic algorithms. In that light, Nettle
72
 context-independent set of cryptographic algorithms. In that light, Nettle
73
 doesn't do any memory allocation or I/O, it simply provides the
73
 doesn't do any memory allocation or I/O, it simply provides the
74
 cryptographic algorithms for the application to use in any environment and
74
 cryptographic algorithms for the application to use in any environment and
75
 in any way it needs.
75
 in any way it needs.
76
 .
76
 .
77
 This package contains the development files (C headers and static libraries)
77
 This package contains the development files (C headers and static libraries)
78
78
79
Package: nettle-bin
79
Package: nettle-bin
80
Section: misc
80
Section: misc
81
Architecture: any
81
Architecture: any
82
Depends: ${shlibs:Depends}, ${misc:Depends}
82
Depends: ${shlibs:Depends}, ${misc:Depends}
83
Breaks: lsh-utils (<< 2.0.4-dfsg-1)
83
Breaks: lsh-utils (<< 2.0.4-dfsg-1)
84
Replaces: lsh-utils (<< 2.0.4-dfsg-1)
84
Replaces: lsh-utils (<< 2.0.4-dfsg-1)
85
Suggests: lsh-doc
85
Suggests: lsh-doc
86
Description: low level cryptographic library (binary tools)
86
Description: low level cryptographic library (binary tools)
87
 Nettle is a cryptographic library that is designed to fit easily in more or
87
 Nettle is a cryptographic library that is designed to fit easily in more or
88
 less any context: In crypto toolkits for object-oriented languages (C++,
88
 less any context: In crypto toolkits for object-oriented languages (C++,
89
 Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel
89
 Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel
90
 space.
90
 space.
91
 .
91
 .
92
 It tries to solve a problem of providing a common set of cryptographic 
92
 It tries to solve a problem of providing a common set of cryptographic 
93
 algorithms for higher-level applications by implementing a
93
 algorithms for higher-level applications by implementing a
94
 context-independent set of cryptographic algorithms. In that light, Nettle
94
 context-independent set of cryptographic algorithms. In that light, Nettle
95
 doesn't do any memory allocation or I/O, it simply provides the
95
 doesn't do any memory allocation or I/O, it simply provides the
96
 cryptographic algorithms for the application to use in any environment and
96
 cryptographic algorithms for the application to use in any environment and
97
 in any way it needs.
97
 in any way it needs.
98
 .
98
 .
99
 This package contains binary utilities that accompany the library:
99
 This package contains binary utilities that accompany the library:
100
 .
100
 .
101
    - nettle-lfib-stream - generates a pseudo-random stream, using the Knuth 
101
    - nettle-lfib-stream - generates a pseudo-random stream, using the Knuth 
102
      lfib (non-cryptographic) pseudo-random generator.
102
      lfib (non-cryptographic) pseudo-random generator.
103
    - sexp-conv - conversion tool for handling the different flavours of sexp
103
    - sexp-conv - conversion tool for handling the different flavours of sexp
104
      syntax.
104
      syntax.
105
    - pkcs1-conv - converts PKCS#1 keys to sexp format.
105
    - pkcs1-conv - converts PKCS#1 keys to sexp format.
106
    - nettle-hash - command-line tool to compute message digests such as SHA-1.
106
    - nettle-hash - command-line tool to compute message digests such as SHA-1.
107
-
 
108
Package: nettle-dbg
-
 
109
Section: debug
-
 
110
Priority: extra
-
 
111
Architecture: any
-
 
112
Depends: libnettle6 (= ${binary:Version}) | libhogweed4 (= ${binary:Version}) | nettle-bin (= ${binary:Version}), ${misc:Depends}
-
 
113
Description: low level cryptographic library (debugging symbols)
-
 
114
 Nettle is a cryptographic library that is designed to fit easily in more or
-
 
115
 less any context: In crypto toolkits for object-oriented languages (C++,
-
 
116
 Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel
-
 
117
 space.
-
 
118
 .
-
 
119
 This package contains the debugging symbols for all binary packages.
-