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 supported = new LinkedList(); 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 --> +

2.9

+

2.8