summary refs log tree commit diff
path: root/crypto/src/pqc/crypto/bike/BikeKeyPairGenerator.cs
blob: f621306bc79499c4a9dff9266c346d0622e114e5 (plain) (blame)
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
using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Security;

namespace Org.BouncyCastle.Pqc.Crypto.Bike
{
    public sealed class BikeKeyPairGenerator
        : IAsymmetricCipherKeyPairGenerator
    {
        private SecureRandom random;

        // block length
        private int r;

        // the row weight
        //private int w;

        // Hamming weight of h0, h1
        //private int hw;

        // the error weight
        //private int t;

        //the shared secret size
        private int l;

        // number of iterations in BGF decoder
        //private int nbIter;

        // tau
        //private int tau;
        private int L_BYTE;
        private int R_BYTE;

        private BikeKeyGenerationParameters bikeKeyGenerationParameters;

        public void Init(KeyGenerationParameters param)
        {
            this.bikeKeyGenerationParameters = (BikeKeyGenerationParameters)param;
            this.random = param.Random;

            // get parameters
            this.r = this.bikeKeyGenerationParameters.Parameters.R;
            //this.w = this.bikeKeyGenerationParameters.Parameters.W;
            this.l = this.bikeKeyGenerationParameters.Parameters.L;
            //this.t = this.bikeKeyGenerationParameters.Parameters.T;
            //this.nbIter = this.bikeKeyGenerationParameters.Parameters.NbIter;
            //this.tau = this.bikeKeyGenerationParameters.Parameters.Tau;
            //this.hw = w / 2;
            this.L_BYTE = l / 8;
            this.R_BYTE = (r + 7) / 8;
        }

        public AsymmetricCipherKeyPair GenerateKeyPair()
        {
            BikeParameters parameters = bikeKeyGenerationParameters.Parameters;
            BikeEngine engine = parameters.BikeEngine;
            byte[] h0 = new byte[R_BYTE];
            byte[] h1 = new byte[R_BYTE];
            byte[] h = new byte[R_BYTE];
            byte[] sigma = new byte[L_BYTE];

            engine.GenKeyPair(h0, h1, sigma, h, random);

            // form keys
            BikePublicKeyParameters publicKey = new BikePublicKeyParameters(parameters, h);
            BikePrivateKeyParameters privateKey = new BikePrivateKeyParameters(parameters, h0, h1, sigma);

            return new AsymmetricCipherKeyPair(publicKey, privateKey);
        }
    }
}