Changelog 2.9

This commit is contained in:
Dominik Schürmann 2014-08-31 22:12:52 +02:00
parent 428d6b1182
commit 9a18635b89
3 changed files with 12 additions and 1 deletions

View file

@ -1,3 +1,8 @@
## 2.9
* Fixing crashes introduced in v2.8
* Experimental ECC support
* Experimental Yubikey support (signing-only with imported keys)
## 2.8
* So many bugs have been fixed in this release that we focus on the main new features
* Key edit: awesome new design, key revocation

View file

@ -116,7 +116,7 @@ public class CanonicalizedSecretKey extends CanonicalizedPublicKey {
LinkedList<Integer> supported = new LinkedList<Integer>();
if (mPrivateKeyState == PRIVATE_KEY_STATE_DIVERT_TO_CARD) {
// TODO: no support for MD5
// No support for MD5
supported.add(HashAlgorithmTags.RIPEMD160);
supported.add(HashAlgorithmTags.SHA1);
supported.add(HashAlgorithmTags.SHA224);

View file

@ -5,6 +5,12 @@ And don't add newlines before or after p tags because of transifex -->
<head>
</head>
<body>
<h2>2.9</h2>
<ul>
<li>Fixing crashes introduced in v2.8</li>
<li>Experimental ECC support</li>
<li>Experimental Yubikey support (signing-only with imported keys)</li>
</ul>
<h2>2.8</h2>
<ul>
<li>So many bugs have been fixed in this release that we focus on the main new features</li>