de.rub.nds.protocol.crypto.ec.EllipticCurveGost2012SetA256 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 EllipticCurveGost2012SetA256 extends EllipticCurveOverF2m {
@SuppressWarnings("SpellCheckingInspection")
public EllipticCurveGost2012SetA256() {
super(
new BigInteger(
"C2173F1513981673AF4892C23035A27CE25E2013BF95AA33B22C656F277E7335", 16),
new BigInteger(
"295F9BAE7428ED9CCC20E7C359A9D41A22FCCD9108E17BF7BA9337A6F8AE9513", 16),
new BigInteger(
"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD97", 16),
new BigInteger(
"91E38443A5E82C0D880923425712B2BB658B9196932E02C78B2582FE742DAA28", 16),
new BigInteger(
"32879423AB1A0375895786C4BB46E9565FDE0B5344766740AF268ADB32322E5C", 16),
new BigInteger(
"400000000000000000000000000000000FD8CDDFC87B6635C115AF556C360C67", 16));
}
}