de.rub.nds.protocol.crypto.ec.EllipticCurveSECT163K1 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
The newest version!
/*
* 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;
@SuppressWarnings("SpellCheckingInspection")
public class EllipticCurveSECT163K1 extends EllipticCurveOverF2m {
public EllipticCurveSECT163K1() {
super(
BigInteger.ONE,
BigInteger.ONE,
new BigInteger("800000000000000000000000000000000000000c9", 16),
new BigInteger("02FE13C0537BBC11ACAA07D793DE4E6D5E5C94EEE8", 16),
new BigInteger("0289070FB05D38FF58321F2E800536D538CCDAA3D9", 16),
new BigInteger("04000000000000000000020108A2E0CC0D99F8A5EF", 16));
}
}