GNU Privacy Guard

From Infogalactic: the planetary knowledge core
Jump to: navigation, search
GNU Privacy Guard
The GNU Privacy Guard logo
Original author(s) Werner Koch
Developer(s) GNU Project
Initial release 7 September 1999; 24 years ago (1999-09-07)[1]
Stable release
  • "Stable": 2.0.30 (March 31, 2016; 8 years ago (2016-03-31)[2]) [±]
  • "Modern": 2.1.12 (May 4, 2016; 7 years ago (2016-05-04)[3]) [±]
  • "Classic": 1.4.20 (December 20, 2015; 8 years ago (2015-12-20)[4]) [±]
Preview release Stable: 2.1.0-beta864 (October 3, 2014; 9 years ago (2014-10-03)[5]) [±]
Modern: 2.1.1-beta35 (November 24, 2014; 9 years ago (2014-11-24)[6]) [±]
Written in C
Operating system Cross-platform
Type OpenPGP
License GNU GPLv3
Website gnupg.org

GNU Privacy Guard (GnuPG or GPG) is a free software replacement for Symantec's PGP cryptographic software suite.[7] GnuPG is compliant with RFC 4880, which is the IETF standards track specification of OpenPGP. Modern versions of PGP and Veridis' Filecrypt are interoperable with GnuPG and other OpenPGP-compliant systems.

GnuPG is part of the GNU project, and has received major funding from the German government.[8]

History

GnuPG was initially developed by Werner Koch.[9][10] Version 1.0.0, which was the first production version, was released on September 7, 1999, almost two years after the first GnuPG release (version 0.0.0).[1][9] The German Federal Ministry of Economics and Technology funded the documentation and the port to Microsoft Windows in 2000.[10]

GnuPG is a system compliant to the OpenPGP standard, thus the history of OpenPGP is of importance; it was designed to interoperate with PGP, the email encryption program initially designed and developed by Phil Zimmermann.[11][12]

On February 7, 2014, a GnuPG crowdfunding effort closed, raising 36,732 euros for a new web site and infrastructure improvements.[13]

Branches

As of November 2014, there are three branches of GnuPG:

  • "Stable" (2.0), stable version for general use, initially released on November 13, 2006.[14]
  • "Modern" (2.1), containing the latest development with numerous new features such as elliptic curve cryptography; it will eventually replace the "stable" (2.0) branch. It was initially released on November 6, 2014.[15]
  • "Classic" (1.4), old standalone version, most suitable for older or embedded platforms. Initially released on December 16, 2004.[16]

"Modern" (2.1) and "stable" (2.0) can not be installed at the same time. However, it is possible to install "classic" (1.4) along with any of the other versions.[15]

There are two additional GnuPG branches, which are discontinued as of November 2014:

  • 1.2 branch, initially released on September 22, 2002,[17] with 1.2.6 as the last version, released on October 26, 2004.[18]
  • 1.0 branch, initially released on September 7, 1999,[1] with 1.0.7 as the last version, released on April 30, 2002.[19]

Overview

GnuPG is a hybrid encryption software program in that it uses a combination of conventional symmetric-key cryptography for speed, and public-key cryptography for ease of secure key exchange, typically by using the recipient's public key to encrypt a session key which is only used once. This mode of operation is part of the OpenPGP standard and has been part of PGP from its first version.

GnuPG 2.x series uses Libgcrypt as an encryption library, while the GnuPG 1.x series replaces it with an integrated library.

GnuPG encrypts messages using asymmetric keypairs individually generated by GnuPG users. The resulting public keys may be exchanged with other users in a variety of ways, such as Internet key servers. They must always be exchanged carefully to prevent identity spoofing by corrupting public key ↔ "owner" identity correspondences. It is also possible to add a cryptographic digital signature to a message, so the message integrity and sender can be verified, if a particular correspondence relied upon has not been corrupted.

GnuPG also supports symmetric encryption algorithms. By default, GnuPG uses the CAST5 symmetrical algorithm. GnuPG does not use patented or otherwise restricted software or algorithms. Instead, GnuPG uses a variety of other, non-patented algorithms.[20]

For a long time it did not support the IDEA encryption algorithm used in PGP. It was in fact possible to use IDEA in GnuPG by downloading a plugin for it, however this might require a license for some uses in countries in which IDEA was patented. Starting with version 1.4.13/2.0.20, GnuPG supports IDEA because the last patent of IDEA expired in 2012 (Support of IDEA is "to get rid of all the questions from folks either trying to decrypt old data or migrating keys from PGP to GnuPG",[21] and is not recommended for normal use).

As of versions 2.0.26 and 1.4.18, GnuPG supports the following algorithms:

GnuPG 2.1 series is announced to support elliptic curve cryptography (ECDSA, ECDH and EdDSA).[15]

Platforms

Although the basic GnuPG program has a command-line interface, there exist various front-ends that provide it with a graphical user interface. For example, GnuPG encryption support has been integrated into KMail and Evolution, the graphical e-mail clients found in KDE and GNOME, the most popular Linux desktops. There are also graphical GnuPG front-ends, for example Seahorse for GNOME and KGPG for KDE. For the OS X, the MacGPG project provides a number of Aqua front-ends for OS integration of encryption and key management as well as GnuPG installations via Installer packages.[22]

Furthermore, the GPGTools Installer[23] installs all related OpenPGP applications (GPG Keychain Access), plugins (GPGMail) and dependencies (MacGPG) to use GnuPG based encryption. Instant messaging applications such as Psi and Fire can automatically secure messages when GnuPG is installed and configured. Web-based software such as Horde also makes use of it. The cross-platform extension Enigmail provides GnuPG support for Mozilla Thunderbird and SeaMonkey. Similarly, Enigform provides GnuPG support for Mozilla Firefox. FireGPG was discontinued June 7, 2010.[24]

In 2005, g10 Code GmbH and Intevation GmbH released Gpg4win, a software suite that includes GnuPG for Windows, GNU Privacy Assistant, and GnuPG plug-ins for Windows Explorer and Outlook. These tools are wrapped in a standard Windows installer, making it easier for GnuPG to be installed and used on Windows systems.

Limitations

As a command-line based system, GnuPG 1.x is not written as an API that may be incorporated into other software. To overcome this, GPGME (abbreviated from GnuPG Made Easy) was created as an API wrapper around GnuPG that parses the output of GnuPG and provides a stable and maintainable API between the components.[25] This currently requires an out-of-process call to the GnuPG executable for many GPGME API calls; as a result, possible security problems in an application do not propagate to the actual crypto code due to the process barrier. Various graphical front-ends based on GPGME have been created.

Since GPG 2.x, many of the GPG functionalities are available directly as simple C APIs in libgcrypt.[26]

Vulnerabilities

The OpenPGP standard specifies several methods of digitally signing messages. In 2003, due to an error in a change to GnuPG intended to make one of those methods more efficient, a security vulnerability was introduced.[27] It affected only one method of digitally signing messages, only for some releases of GnuPG (1.0.2 through 1.2.3), and there were fewer than 1000 such keys listed on the key servers.[28] Most people did not use this method, and were in any case discouraged from doing so, so the damage caused (if any, since none has been publicly reported) would appear to have been minimal. Support for this method has been removed from GnuPG versions released after this discovery (1.2.4 and later).

Two further vulnerabilities were discovered in early 2006; the first being that scripted uses of GnuPG for signature verification may result in false positives,[29] the second that non-MIME messages were vulnerable to the injection of data which while not covered by the digital signature, would be reported as being part of the signed message.[30] In both cases updated versions of GnuPG were made available at the time of the announcement.

Application support

Applications, frontends and browser extensions that support GPG include the following:

<templatestyles src="Div col/styles.css"/>

In popular culture

In May 2014, The Washington Post reported on a 12-minute video guide "GPG for Journalists" posted to Vimeo in January 2013 by a user named anon108. The Post identified anon108 as fugitive NSA whistleblower Edward Snowden, who it said made the tutorial—"narrated by a digitally disguised voice whose speech patterns sound similar to those of Snowden"—to teach journalist Glenn Greenwald email encryption. Greenwald said that he could not confirm the authorship of the video.[32]

See also

<templatestyles src="Div col/styles.css"/>

References

  1. 1.0 1.1 1.2 Lua error in package.lua at line 80: module 'strict' not found.
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. Lua error in package.lua at line 80: module 'strict' not found.
  4. Lua error in package.lua at line 80: module 'strict' not found.
  5. Lua error in package.lua at line 80: module 'strict' not found.
  6. Lua error in package.lua at line 80: module 'strict' not found.
  7. Lua error in package.lua at line 80: module 'strict' not found.
  8. Lua error in package.lua at line 80: module 'strict' not found.
  9. 9.0 9.1 Lua error in package.lua at line 80: module 'strict' not found.
  10. 10.0 10.1 Lua error in package.lua at line 80: module 'strict' not found.
  11. Lua error in package.lua at line 80: module 'strict' not found.
  12. Lua error in package.lua at line 80: module 'strict' not found.
  13. Lua error in package.lua at line 80: module 'strict' not found.
  14. Lua error in package.lua at line 80: module 'strict' not found.
  15. 15.0 15.1 15.2 Lua error in package.lua at line 80: module 'strict' not found.
  16. Lua error in package.lua at line 80: module 'strict' not found.
  17. Lua error in package.lua at line 80: module 'strict' not found.
  18. Lua error in package.lua at line 80: module 'strict' not found.
  19. Lua error in package.lua at line 80: module 'strict' not found.
  20. Lua error in package.lua at line 80: module 'strict' not found.
  21. Lua error in package.lua at line 80: module 'strict' not found.
  22. Lua error in package.lua at line 80: module 'strict' not found.
  23. Lua error in package.lua at line 80: module 'strict' not found.
  24. Lua error in package.lua at line 80: module 'strict' not found.
  25. Lua error in package.lua at line 80: module 'strict' not found.
  26. Lua error in package.lua at line 80: module 'strict' not found.
  27. Phong Q. Nguyen "Can We Trust Cryptographic Software? Cryptographic Flaws in GNU Privacy Guard v1.2.3." EUROCRYPT 2004: 555–570
  28. GnuPG's ElGamal signing keys compromised Werner Koch, November 27, 2003
  29. False positive signature verification in GnuPG Werner Koch, February 15, 2006
  30. GnuPG does not detect injection of unsigned data, Werner Koch, March 9, 2006
  31. getfiregpg.org
  32. Lua error in package.lua at line 80: module 'strict' not found.

External links