Add missing break statement in KDF-DO parser

This commit is contained in:
Christian Hagau 2021-02-17 00:00:00 +00:00
parent 1ba7f48fd2
commit 5ccd4c05e8
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);