Merge pull request #2652 from open-keychain/fix_kdf-do_parser

Add missing break statement in KDF-DO parser
This commit is contained in:
Vincent Breitmoser 2021-02-17 13:00:17 +01:00 committed by GitHub
commit bd5ccf155e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -85,6 +85,7 @@ public abstract class KdfParameters {
case (byte)0x00:
// no KDF, plain password
hasUsesKdf(false);
break;
case (byte)0x03:
// using KDF
hasUsesKdf(true);