Merge "Fix typo"

This commit is contained in:
Alex Klyubin
2015-04-08 18:16:36 +00:00
committed by Gerrit Code Review

View File

@@ -580,7 +580,7 @@ public abstract class KeyStoreKeyConstraints {
} else if ("ctr".equals(modeLower)) {
return CTR;
} else if ("gcm".equals(modeLower)) {
return CTR;
return GCM;
} else {
throw new IllegalArgumentException("Unknown block mode: " + mode);
}