GPG4Win

gpg4win.org
GPG4Win Icon

Kleopatra ported to Windows.

Open Source

GPG4Win Privacy Policy

Privacy Policy Summary

  • You can access most of the pages on the service's website without revealing any personal information
  • You are not being tracked
  • You can request access, correction and/or deletion of your data

Documents

About the Data

This data is kindly provided by tosdr.org. Read full report at: #8276

GPG4Win Source Code

Author

gpg

Description

GnuPG for Windows. NOTE: Maintainers are not tracking this mirror. Do not make pull requests here, nor comment any commits, submit them usual way to bug tracker (https://www.gnupg.org/documentation/bts.html) or to the mailing list (https://www.gnupg.org/documentation/mailing-lists.html).

Homepage

https://git.gnupg.org/cgi-bin/gitweb.cgi?p=gpg4win.git

License

GPL-2.0

Created

07 Sept 15

Last Updated

29 Mar 24

Latest version

the-last-compendium

Primary Language

Shell

Size

49,054 KB

Stars

139

Forks

31

Watchers

139

Language Usage

Language Usage

Star History

Star History

Recent Commits

  • Werner Koch (25 Mar 24)

    Avoid multiple calls to the Authenticode signing function. * build-aux/authenticode-sign.sh: Add option --stamp. * src/Makefile.am (stamp-additional-signedfiles): Use it. * src/gpg4win.mk.in (signed_installers): Ditto. -- GnuPG-bug-id: 7047

  • Werner Koch (25 Mar 24)

    Update to a GnuPG 2.2 snaphots and a recent Kleo from 23.10

  • Werner Koch (20 Mar 24)

    Use a separate script to authenticode sign files. * build-aux/authenticode-sign.sh: New. * src/Makefile.am (stamp-additional-signedfiles): Call this tool. * src/gpg4win.mk.in: Remove most of calls of READ_AUTOGEN_template. (AUTHENTICODE_sign): Remove this macro. (signed_installers): Call the new tool -- The problem with the old use was that it was used in one place in an eval and at another place directly. Thus the quoting required to be different. A separate tools sounds better and can be extended for other purposes. Note the tool's option --template. Only the card based operation has been tested; the old signing on a Windows host might be broken.

  • Werner Koch (15 Mar 24)

    Fix quoting of the AUTHENTICODE_sign macro -- This macro is not passed to eval and thus there is one level of quoting too many. Fixes-commit: a7e52329f0e51aaf0cb19ab335a70dd825eb1fa3

  • Andre Heinecke (15 Mar 24)

    Update Kleopatra with gen-tarball.sh change * packages/packages.common (kleopatra) update. -- This fixes at least two untranslated strings by combining our branches translation with master using msgcat. Only implenmented for de.

  • Andre Heinecke (15 Mar 24)

    Update gen-tarball to use msgcat for de l10n * packages/gen-tarball.sh: Update custom l10n path to use msgcat. -- While this increases the sie of the po file a bit it is more robust with string changes in master / kf5 or our branches.

  • Werner Koch (11 Mar 24)

    Post release updates --

  • Werner Koch (11 Mar 24)

    Release 4.3.1

  • Werner Koch (11 Mar 24)

    Update Kleopatra

  • Werner Koch (08 Mar 24)

    build: Avoid problems with automake and the AUTHENTICODE_FILES. * src/Makefile.am (AUTHENTICODE_FILES) (READ_AUTOGEN_template): Move to ... * src/gpg4win.mk.in: here. Also move the invocations to here. (AUTHENTICODE_sign): Properly quote for AUTHENTICODE_TOOL. -- Fixes-commit: 05ddc4949742405413f97257e72c74c872de59af

  • Werner Koch (07 Mar 24)

    Update to GnuPG 2.4.5

  • Werner Koch (06 Mar 24)

    Update to libassuan 2.5.7 and 64bit DLL names

  • Werner Koch (06 Mar 24)

    Fix filename for shield.ico. -- GnuPG-bug-id: 7026

  • Werner Koch (06 Mar 24)

    Fix for the new READ_AUTOGEN stuff. * src/Makefile.am: Fix typo in variable name.

  • Werner Koch (23 Feb 24)

    Update libgpg-error

  • Werner Koch (23 Feb 24)

    Update npth

  • Werner Koch (23 Feb 24)

    Update libksba

  • Werner Koch (15 Feb 24)

    Include all code to sign MSI files. * src/Makefile.am: Remove optional include of sign.mk. (AUTHENTICODE_FILES): New. (READ_AUTOGEN_template): New. Also read a couple of vars. (msi_signkey): New. * src/gpg4win.mk.in (AUTHENTICODE_sign): Replace timestamp URL by a variable. -- This code formerly lived in an external file but we decided that it is safer to have it in gpg4win proper. We now also use ~/.gnupg-autogen.sh to get custom values like URLs. Keys and tool locations. A description of this file can be found in gnupg/build-aux/speedo.mk.

  • Andre Heinecke (12 Dec 23)

    Add gpgpass prison and qrencode to gpg4win * configure.ac: Add packages. * doc/pkg-copyright.txt: Add license and copyright for new pkgs. * packages/gen-frameworks.sh: Add prison. * packages/gen-tarball.sh: Add gpgpass. * packages/packages.common (gpgpass, qrencode, prison): New. * po/POTFILES.in: Add inst-gpgpass.nsi * src/Makefile.am: Add new packages and install files. * src/appimage/Makefile.am: Add new packages. * src/inst-gpgpass.nsi, src/uninst-gpgpass.nsi, src/inst-prison.nsi, src/uninst-prison.nsi, src/inst-qrencode.nsi, src/uninst-qrencode.nsi: New. * src/inst-sections.nsi: Set up new section. Move some dependencies to qtbase. * src/config.nsi.in: Add new defines. * src/included-icons.txt: Add gpgpass specific icons. * src/findicons.sh: Add gpgpass. * src/installer.nsi: Set up new section description. * src/po: Auto update. -- This sets up gpgpass as new a optional package for Gpg4win and includes it with the Appimage. GnuPG-Bug-Id: T6611

  • Werner Koch (02 Feb 24)

    Set version again to 4.3.1.

  • Werner Koch (02 Feb 24)

    msi: Allow to build other GPD targets than only Desktop.

  • Werner Koch (01 Feb 24)

    Temporary set version back to 4.3.0 -- We did only build system changes for the not yet release MSI.

  • Werner Koch (01 Feb 24)

    build: Set IS_GPD_BUILD to a defined value.

  • Werner Koch (31 Jan 24)

    msi: Use gcc -dumpversion to get a realible version number -- In fact we should always use that. I have not checked when this option was introduced but it should be long enough evailable. The gcc manual says: Print the compiler version (for example, '3.0', '6.3.0' or '7')--and don't do anything else. This is the compiler version *used in filesystem paths and specs*. Depending on how the compiler has been configured it can be just a single number (major version), two numbers separated by a dot (major and minor version) or three numbers separated by dots (major, minor and patchlevel version). We may even drop the other methods we use of swicth for them to -dumpfullversion

  • Werner Koch (31 Jan 24)

    msi: Make make-msi.pl work for other build types. * src/make-msi.pl: Move dump_customs behind the option parsing. (dump_single_custom): Modernize regexp. Improve diagnostics. Take care of desktop-help. (dump_customs): Switch help directory on product name.

  • Werner Koch (31 Jan 24)

    build: Improve for building the GPD version. * configure.ac: Change how to distinguish between build types. (IS_GPD_BUILD): New ac_subst. (AC_HELP_STRING): Repalce by AS_HELP_STRING. * m4/gpg4win.m4 (GPG4WIN_RUNTIME_LIBRARY): Make libstdc++ guessing more robust. * src/gpg4win.mk.in (AUTHENTICODE_sign): Use another name for GPD. * packages/BUILDTYPE: New, * packages/Makefile.am (EXTRA_DIST): Add.

  • Werner Koch (30 Jan 24)

    Use https instead of ftp for gnu.org --

  • Werner Koch (30 Jan 24)

    msi: Use a separate help directory for GPD.

  • Andre Heinecke (30 Jan 24)

    MSI: Skip over etc files not only in Standard * src/make-msi.pl: Fix skipping over etc files. -- This ensures that the correct files are included for GnuPG Desktop

  • Christoph Klassen (25 Jan 24)

    fixed language code

GPG4Win Website

Website

Gpg4win - Secure email and file encryption with GnuPG for Windows

Redirects

Does not redirect

Security Checks

All 66 security checks passed

Server Details

  • IP Address 46.4.134.23
  • Hostname gpg4win.org
  • Location Falkenstein, Sachsen, Germany, EU
  • ISP Intevation GmbH
  • ASN AS24940

Associated Countries

  • DE

Saftey Score

Website marked as safe

100%

Blacklist Check

www.gpg4win.org was found on 0 blacklists

  • ThreatLog
  • OpenPhish
  • PhishTank
  • Phishing.Database
  • PhishStats
  • URLhaus
  • RPiList Not Serious
  • AntiSocial Blacklist
  • PhishFeed
  • NABP Not Recommended Sites
  • Spam404
  • CRDF
  • Artists Against 419
  • CERT Polska
  • PetScams
  • Suspicious Hosting IP
  • Phishunt
  • CoinBlockerLists
  • MetaMask EthPhishing
  • EtherScamDB
  • EtherAddressLookup
  • ViriBack C2 Tracker
  • Bambenek Consulting
  • Badbitcoin
  • SecureReload Phishing List
  • Fake Website Buster
  • TweetFeed
  • CryptoScamDB
  • StopGunScams
  • ThreatFox
  • PhishFort

Website Preview

GPG4Win Reviews

More PGP Managers

About the Data: GPG4Win

API

You can access GPG4Win's data programmatically via our API. Simply make a GET request to:

https://api.awesome-privacy.xyz/utilities/pgp-managers/gpg4win

The REST API is free, no-auth and CORS-enabled. To learn more, view the Swagger Docs or read the API Usage Guide.

About the Data

Beyond the user-submitted YAML you see above, we also augment each listing with additional data dynamically fetched from several sources. To learn more about where the rest of data included in this page comes from, and how it is computed, see the About the Data section of our About page.

Share GPG4Win

Help your friends compare PGP Managers, and pick privacy-respecting software and services.
Share GPG4Win and Awesome Privacy with your network!

View PGP Managers (9)