summary refs log tree commit diff
path: root/crypto/src/pqc/crypto/sike/PointProj.cs
blob: 4f6e8b882104f2e98a92dc1568fe5e5f2fbafd99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Org.BouncyCastle.Pqc.Crypto.Sike
{
internal class PointProj
{
    internal PointProj(uint nwords_field)
    {
        X = Utils.InitArray(2, nwords_field);
        Z = Utils.InitArray(2, nwords_field);
    }
    public ulong[][] X;
    public ulong[][] Z;
}

}