aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2014-08-31 22:12:52 +0200
committerDominik Schürmann <dominik@dominikschuermann.de>2014-08-31 22:12:52 +0200
commit9a18635b892b8b05459efc115e744cd75453725b (patch)
treeb5965a3852da38b842ff7b13a9ad1b8cef6e0ccf
parent428d6b1182f11a0ecae7aaa7c4f983aa458cd142 (diff)
downloadopen-keychain-9a18635b892b8b05459efc115e744cd75453725b.tar.gz
open-keychain-9a18635b892b8b05459efc115e744cd75453725b.tar.bz2
open-keychain-9a18635b892b8b05459efc115e744cd75453725b.zip
Changelog 2.9
-rw-r--r--CHANGELOG5
-rw-r--r--OpenKeychain/src/main/java/org/sufficientlysecure/keychain/pgp/CanonicalizedSecretKey.java2
-rw-r--r--OpenKeychain/src/main/res/raw/help_changelog.html6
3 files changed, 12 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index b77188099..f313e469b 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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
diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/pgp/CanonicalizedSecretKey.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/pgp/CanonicalizedSecretKey.java
index c79dc45c3..51770f930 100644
--- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/pgp/CanonicalizedSecretKey.java
+++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/pgp/CanonicalizedSecretKey.java
@@ -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);
diff --git a/OpenKeychain/src/main/res/raw/help_changelog.html b/OpenKeychain/src/main/res/raw/help_changelog.html
index c8992ddab..4cc665ff6 100644
--- a/OpenKeychain/src/main/res/raw/help_changelog.html
+++ b/OpenKeychain/src/main/res/raw/help_changelog.html
@@ -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>