diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-06-15 02:35:48 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-06-15 02:35:48 +0000 |
commit | d0ae6bcd1a3bb766574303802a14f5725853e819 (patch) | |
tree | fe81d3e98b281a76dc4102f14a8504a58c30f940 /package/gnutls/Config.in | |
parent | dfdf93a4d13c085091dd1655f1de93e7c62a4b71 (diff) | |
download | upstream-d0ae6bcd1a3bb766574303802a14f5725853e819.tar.gz upstream-d0ae6bcd1a3bb766574303802a14f5725853e819.tar.bz2 upstream-d0ae6bcd1a3bb766574303802a14f5725853e819.zip |
Add gnutls package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1253 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/gnutls/Config.in')
-rw-r--r-- | package/gnutls/Config.in | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/package/gnutls/Config.in b/package/gnutls/Config.in new file mode 100644 index 0000000000..fe1e4580fe --- /dev/null +++ b/package/gnutls/Config.in @@ -0,0 +1,103 @@ +config BR2_PACKAGE_GNUTLS + default n + depends BR2_PACKAGE_LIBGNUTLS + +config BR2_PACKAGE_LIBGNUTLS + tristate "libgnutls - The GNU TLS library" +# default m if CONFIG_DEVEL + default n + select BR2_PACKAGE_GNUTLS + select BR2_PACKAGE_LIBGCRYPT + select BR2_PACKAGE_LIBOPENCDK + select BR2_PACKAGE_LIBTASN1 + help + GnuTLS is a project that aims to develop a library which provides a + secure layer, over a reliable transport layer. Currently the GnuTLS + library implements the proposed standards by the IETF's TLS working + group. + + Quoting from RFC2246 - the TLS 1.0 protocol specification: + + "The TLS protocol provides communications privacy over the Internet. + The protocol allows client/server applications to communicate in a + way that is designed to prevent eavesdropping, tampering, or message + forgery." + + Features + + * Support for TLS 1.1 and SSL 3.0 protocols + * Support for TLS extensions + * Support for authentication using the SRP protocol + * Support for authentication using both X.509 certificates + * and OpenPGP keys Support for X.509 and OpenPGP certificate handling. + * Supports all the strong encryption algorithms + + http://www.gnu.org/software/gnutls/ + + This packages contains the GnuTLS shared libraries, needed by other programs. + + +config BR2_PACKAGE_GNUTLS_UTILS + tristate "gnutls-utils - The GNU TLS utilities" +# default m if CONFIG_DEVEL + default n + depends BR2_PACKAGE_LIBGNUTLS + help + GnuTLS is a project that aims to develop a library which provides a + secure layer, over a reliable transport layer. Currently the GnuTLS + library implements the proposed standards by the IETF's TLS working + group. + + Quoting from RFC2246 - the TLS 1.0 protocol specification: + + "The TLS protocol provides communications privacy over the Internet. + The protocol allows client/server applications to communicate in a + way that is designed to prevent eavesdropping, tampering, or message + forgery." + + Features + + * Support for TLS 1.1 and SSL 3.0 protocols + * Support for TLS extensions + * Support for authentication using the SRP protocol + * Support for authentication using both X.509 certificates + * and OpenPGP keys Support for X.509 and OpenPGP certificate handling. + * Supports all the strong encryption algorithms + + http://www.gnu.org/software/gnutls/ + + This packages contains some GnuTLS utilities. + + +config BR2_PACKAGE_LIBGNUTLS_OPENSSL + tristate "libgnutls-openssl - The GNU TLS OpenSSL compatibility layer library" +# default m if CONFIG_DEVEL + default n + depends BR2_PACKAGE_LIBGNUTLS + help + GnuTLS is a project that aims to develop a library which provides a + secure layer, over a reliable transport layer. Currently the GnuTLS + library implements the proposed standards by the IETF's TLS working + group. + + Quoting from RFC2246 - the TLS 1.0 protocol specification: + + "The TLS protocol provides communications privacy over the Internet. + The protocol allows client/server applications to communicate in a + way that is designed to prevent eavesdropping, tampering, or message + forgery." + + Features + + * Support for TLS 1.1 and SSL 3.0 protocols + * Support for TLS extensions + * Support for authentication using the SRP protocol + * Support for authentication using both X.509 certificates + * and OpenPGP keys Support for X.509 and OpenPGP certificate handling. + * Supports all the strong encryption algorithms + + http://www.gnu.org/software/gnutls/ + + This packages contains the GnuTLS OpenSSL compatibility layer shared library. + + |