de.rub.nds.protocol.crypto.ec.EllipticCurveGost2001SetXchA Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protocol-attacker Show documentation
Show all versions of protocol-attacker Show documentation
Protocol-Attacker is a framework for the creation of protocol analysis tools
/*
* Protocol-Attacker - A Framework to create Protocol Analysis Tools
*
* Copyright 2023-2023 Ruhr University Bochum, Paderborn University, Technology Innovation Institute, and Hackmanit GmbH
*
* Licensed under Apache License, Version 2.0
* http://www.apache.org/licenses/LICENSE-2.0.txt
*/
package de.rub.nds.protocol.crypto.ec;
import java.math.BigInteger;
public class EllipticCurveGost2001SetXchA extends EllipticCurveOverF2m {
public EllipticCurveGost2001SetXchA() {
super(
new BigInteger(
"115792089237316195423570985008687907853269984665640564039457584007913129639316"),
new BigInteger("166"),
new BigInteger(
"115792089237316195423570985008687907853269984665640564039457584007913129639319"),
new BigInteger("1"),
new BigInteger(
"64033881142927202683649881450433473985931760268884941288852745803908878638612"),
new BigInteger(
"115792089237316195423570985008687907853073762908499243225378155805079068850323"));
}
}