de.rub.nds.protocol.crypto.ec.EllipticCurveSECT233K1 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;
@SuppressWarnings("SpellCheckingInspection")
public class EllipticCurveSECT233K1 extends EllipticCurveOverF2m {
public EllipticCurveSECT233K1() {
super(
BigInteger.ZERO,
BigInteger.ONE,
new BigInteger("20000000000000000000000000000000000000004000000000000000001", 16),
new BigInteger("017232BA853A7E731AF129F22FF4149563A419C26BF50A4C9D6EEFAD6126", 16),
new BigInteger("01DB537DECE819B7F70F555A67C427A8CD9BF18AEB9B56E0C11056FAE6A3", 16),
new BigInteger("8000000000000000000000000000069D5BB915BCD46EFB1AD5F173ABDF", 16));
}
}