This commit is contained in:
nicolson%netscape.com 2002-08-28 17:56:48 +00:00
Родитель aedeeaf961
Коммит 79e5429015
1 изменённых файлов: 1 добавлений и 9 удалений

Просмотреть файл

@ -153,16 +153,8 @@ public final class PK11KeyGenerator implements KeyGenerator {
Password.wipeBytes(pwbytes);
}
}
} else if( algorithm==KeyGenAlgorithm.RC4 ) {
// RC4 is the only non-PBE algorithm without a fixed key size
if( strength==0 ) {
throw new IllegalStateException(
"RC4 keygen must be initialized with a strength");
}
return generateNormal(token, algorithm, strength);
} else {
// fixed-length algorithm, use 0 for key strength
return generateNormal(token, algorithm, 0);
return generateNormal(token, algorithm, strength);
}
}