Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AsymmetricBlockCipherTest.java « test « provider « jcajce « pqc « bouncycastle « org « java « test « src « prov - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c67d438e1e33b07a7f9e3350beba04e07f97d25c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package org.bouncycastle.pqc.jcajce.provider.test;

import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.spec.AlgorithmParameterSpec;

import javax.crypto.Cipher;

import org.bouncycastle.pqc.math.linearalgebra.ByteUtils;


public abstract class AsymmetricBlockCipherTest
    extends FlexiTest
{

    protected Cipher cipher;

    protected KeyPair keyPair;

    protected PublicKey pubKey;

    protected PrivateKey privKey;

    protected KeyPairGenerator kpg;

    private byte[] mBytes;

    private byte[] cBytes;

    private byte[] dBytes;

    protected final void performEnDecryptionTest(int numPassesKPG,
                                                 int numPassesEncDec, AlgorithmParameterSpec params)
    {

        try
        {
            for (int j = 0; j < numPassesKPG; j++)
            {
                keyPair = kpg.genKeyPair();
                pubKey = keyPair.getPublic();
                privKey = keyPair.getPrivate();

                for (int k = 1; k <= numPassesEncDec; k++)
                {
                    // initialize for encryption
                    cipher.init(Cipher.ENCRYPT_MODE, pubKey, params, sr);

                    // generate random message
                    final int plainTextSize = cipher.getBlockSize();
                    int mLength = rand.nextInt(plainTextSize) + 1;
                    mBytes = new byte[mLength];
                    rand.nextBytes(mBytes);

                    // encrypt
                    cBytes = cipher.doFinal(mBytes);

                    // initialize for decryption
                    cipher.init(Cipher.DECRYPT_MODE, privKey, params);

                    // decrypt
                    dBytes = cipher.doFinal(cBytes);

                    // compare
                    assertEquals("Encryption and Decryption test failed:\n"
                        + " actual decrypted text: "
                        + ByteUtils.toHexString(dBytes)
                        + "\n expected plain text: "
                        + ByteUtils.toHexString(mBytes), mBytes, dBytes);
                }
            }
        }
        catch (Exception e)
        {
            e.printStackTrace();
            fail(e);
        }
    }

}