de.rub.nds.protocol.crypto.ec.EllipticCurveGost2001SetXchB 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 EllipticCurveGost2001SetXchB extends EllipticCurveOverF2m {
public EllipticCurveGost2001SetXchB() {
super(
new BigInteger(
"57896044618658097711785492504343953926634992332820282019728792003956564823190"),
new BigInteger(
"28091019353058090096996979000309560759124368558014865957655842872397301267595"),
new BigInteger(
"57896044618658097711785492504343953926634992332820282019728792003956564823193"),
new BigInteger("1"),
new BigInteger(
"28792665814854611296992347458380284135028636778229113005756334730996303888124"),
new BigInteger(
"57896044618658097711785492504343953927102133160255826820068844496087732066703"));
}
}