Skip to content

Commit 0957887

Browse files
author
gefeili
committed
Test the code of Jasypt
1 parent 3559d88 commit 0957887

29 files changed

+4499
-23
lines changed

prov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/BaseBlockCipher.java

+23-23
Original file line numberDiff line numberDiff line change
@@ -634,11 +634,11 @@ else if (paddingName.equals("TBCPADDING"))
634634
protected void engineInit(
635635
int opmode,
636636
Key key,
637-
final AlgorithmParameterSpec paramSpec,
637+
AlgorithmParameterSpec params,
638638
SecureRandom random)
639639
throws InvalidKeyException, InvalidAlgorithmParameterException
640640
{
641-
CipherParameters param;
641+
CipherParameters param = null;
642642

643643
this.pbeSpec = null;
644644
this.pbeAlgorithm = null;
@@ -656,7 +656,7 @@ protected void engineInit(
656656
//
657657
// for RC5-64 we must have some default parameters
658658
//
659-
if (paramSpec == null && (baseEngine != null && baseEngine.getAlgorithmName().startsWith("RC5-64")))
659+
if (params == null && (baseEngine != null && baseEngine.getAlgorithmName().startsWith("RC5-64")))
660660
{
661661
throw new InvalidAlgorithmParameterException("RC5 requires an RC5ParametersSpec to be passed in.");
662662
}
@@ -676,9 +676,9 @@ protected void engineInit(
676676
throw new InvalidKeyException("PKCS12 requires a SecretKey/PBEKey");
677677
}
678678

679-
if (paramSpec instanceof PBEParameterSpec)
679+
if (params instanceof PBEParameterSpec)
680680
{
681-
pbeSpec = (PBEParameterSpec)paramSpec;
681+
pbeSpec = (PBEParameterSpec)params;
682682
}
683683

684684
if (k instanceof PBEKey && pbeSpec == null)
@@ -727,9 +727,9 @@ else if (key instanceof PBKDF1Key)
727727
{
728728
PBKDF1Key k = (PBKDF1Key)key;
729729

730-
if (paramSpec instanceof PBEParameterSpec)
730+
if (params instanceof PBEParameterSpec)
731731
{
732-
pbeSpec = (PBEParameterSpec)paramSpec;
732+
pbeSpec = (PBEParameterSpec)params;
733733
}
734734
if (k instanceof PBKDF1KeyWithParameters && pbeSpec == null)
735735
{
@@ -746,9 +746,9 @@ else if (key instanceof PBKDF2Key)
746746
{
747747
PBKDF2Key k = (PBKDF2Key)key;
748748

749-
if (paramSpec instanceof PBEParameterSpec)
749+
if (param instanceof PBEParameterSpec)
750750
{
751-
pbeSpec = (PBEParameterSpec)paramSpec;
751+
pbeSpec = (PBEParameterSpec)param;
752752
}
753753
if (k instanceof PBKDF2KeyWithParameters && pbeSpec == null)
754754
{
@@ -776,12 +776,12 @@ else if (key instanceof BCPBEKey)
776776

777777
if (k.getParam() != null)
778778
{
779-
param = adjustParameters(paramSpec, k.getParam());
779+
param = adjustParameters(params, k.getParam());
780780
}
781-
else if (paramSpec instanceof PBEParameterSpec)
781+
else if (params instanceof PBEParameterSpec)
782782
{
783-
pbeSpec = (PBEParameterSpec)paramSpec;
784-
param = PBE.Util.makePBEParameters(k, paramSpec, cipher.getUnderlyingCipher().getAlgorithmName());
783+
pbeSpec = (PBEParameterSpec)params;
784+
param = PBE.Util.makePBEParameters(k, params, cipher.getUnderlyingCipher().getAlgorithmName());
785785
}
786786
else
787787
{
@@ -796,7 +796,7 @@ else if (paramSpec instanceof PBEParameterSpec)
796796
else if (key instanceof PBEKey)
797797
{
798798
PBEKey k = (PBEKey)key;
799-
pbeSpec = (PBEParameterSpec)paramSpec;
799+
pbeSpec = (PBEParameterSpec)params;
800800
if (k instanceof PKCS12KeyWithParameters && pbeSpec == null)
801801
{
802802
pbeSpec = new PBEParameterSpec(k.getSalt(), k.getIterationCount());
@@ -821,15 +821,15 @@ else if (!(key instanceof RepeatedSecretKeySpec))
821821
param = null;
822822
}
823823

824-
AlgorithmParameterSpec params;
825-
if (paramSpec instanceof PBEParameterSpec)
826-
{
827-
params = ((PBEParameterSpec)paramSpec).getParameterSpec();
828-
}
829-
else
830-
{
831-
params = paramSpec;
832-
}
824+
// AlgorithmParameterSpec params;
825+
// if (params instanceof PBEParameterSpec)
826+
// {
827+
// params = ((PBEParameterSpec)params).getParameterSpec();
828+
// }
829+
// else
830+
// {
831+
// params = params;
832+
// }
833833

834834
if (params instanceof AEADParameterSpec)
835835
{
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/*
2+
* =============================================================================
3+
*
4+
* Copyright (c) 2007-2010, The JASYPT team (http://www.jasypt.org)
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*
18+
* =============================================================================
19+
*/
20+
package org.bouncycastle.jcajce.provider.test.jasypt;
21+
22+
23+
/**
24+
* Exception thrown when an attempt is made to change the configuration
25+
* of an entity once it has been initialized.
26+
*
27+
*
28+
* @since 1.0
29+
*
30+
* @author Daniel Fernández
31+
*
32+
*/
33+
public final class AlreadyInitializedException
34+
extends RuntimeException {
35+
36+
private static final long serialVersionUID = 4592515503937873874L;
37+
38+
public AlreadyInitializedException() {
39+
super("Encryption entity already initialized");
40+
}
41+
42+
}

0 commit comments

Comments
 (0)