WinSparkle is a plug-and-forget software update library for Windows applications.
WinSparkle is heavily inspired by the Sparkle framework for Mac written by Andy Matuschak and others, to the point of sharing the same updates format (appcasts) and having very similar user interface.
See https://winsparkle.org for more information about WinSparkle.
Documentation: wiki and the winsparkle.h header.
The easiest way to use WinSparkle is to either download the prebuilt WinSparkle.dll
binary from releases or use the WinSparkle
NuGet package.
Prebuilt binaries are available for x86, x64 and arm64 platforms.
WinSparkle has a C API that makes it easy to use from many modern languages in addition to C/C++. In addition to that, several bindings for popular languages exist:
- How to use with C#/.NET
- Python
- Go
- Pascal binding bundled with WinSparkle
If you prefer to build WinSparkle yourself, you can do so. You'll have to compile from a git checkout; some of the dependencies are included as git submodules.
Check the sources out and initialize the submodules:
$ git clone https://github.com/vslavik/winsparkle.git
$ cd winsparkle
$ git submodule init
$ git submodule update
To compile the library, just open WinSparkle.sln
(or the one corresponding to
your compiler version) solution and build it.
At the moment, projects for Visual C++ (2010 and up) are provided, so you'll need that (Express/Community edition suffices). In principle, there's nothing in the code preventing it from being compiled by other compilers.
There are also unsupported CMake build files in the cmake directory.
Updates must be cryptographically signed to prevent tampering. WinSparkle uses the same mechanism for signing and signature verification as Sparkle Project does. Its tools and verification methods are fully compatible.
Signatures use the EdDSA algorithm with the Ed25519 curve. The public key is included in the app and enclosures in the appcast must have a signature attached to them.
Older DSA-based signatures are also supported, but they are deprecated and will be removed in a future version. Upgrade your app to EdDSA if you still use DSA.
WinSparkle provides a companion tool, winsparkle-tool
, to generate keys and sign your updates using EdDSA signatures. This tool is included in the binary package under bin
directory, in NuGet package (in tools
directory, pointed to by $(WinSparkleTool)
property), or you can be compile it from sources.
See the output of winsparkle-tool --help
for more information.
- First, make yourself a pair of EdDSA keys, using
winsparkle-tool generate-key
. This needs to be done only once. - Back up your private key (eddsa_priv.pem) and keep it safe. You don’t want anyone else getting it, and if you lose it, you will not be able to issue any new updates!
- Add your public key to your project either as Windows resource or by calling
win_sparkle_set_eddsa_public_key()
For example:
$ winsparkle-tool generate-key --file private.key
Private key saved to private.key
Public key: pXAx0wfi8kGbeQln11+V4R3tCepSuLXeo7LkOeudc/U=
Add the public key to the resource file like this:
EdDSAPub EDDSA {"pXAx0wfi8kGbeQln11+V4R3tCepSuLXeo7LkOeudc/U="}
or use the API to set it:
win_sparkle_set_eddsa_public_key("pXAx0wfi8kGbeQln11+V4R3tCepSuLXeo7LkOeudc/U=");
When your update is ready (e.g. Updater.exe
), sign it and include signature
to your appcast file:
- Sign:
winsparkle-tool sign -f private.key Updater.exe
- Add standard output of previous command as
sparkle:edSignature
attribute ofenclosure
node of your appcast file.
For example:
$ winsparkle-tool sign --verbose --file private.key Updater.exe
sparkle:edSignature="JhQ69mgRxjNxS35zmMu6bMd9UlkCC/tkCiSR4SXQOfBwwH1FkqYSgNyT5dbWjnw5F1c/6/LqbCGw+WckvJiOBw==" length="1736832"
If you still use DSA signatures, you can sign your updates using the bin/legacy_*.bat
scripts and the old instructions, as part of transitioning to EdDSA signatures.
Download the sources archive and have a look at the examples/ folder.