de.rub.nds.protocol.crypto.ec.EllipticCurveSECT113R1 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 EllipticCurveSECT113R1 extends EllipticCurveOverF2m {
public EllipticCurveSECT113R1() {
super(
new BigInteger("003088250CA6E7C7FE649CE85820F7", 16),
new BigInteger("00E8BEE4D3E2260744188BE0E9C723", 16),
new BigInteger("020000000000000000000000000201", 16),
new BigInteger("009D73616F35F4AB1407D73562C10F", 16),
new BigInteger("00A52830277958EE84D1315ED31886", 16),
new BigInteger("0100000000000000D9CCEC8A39E56F", 16));
}
}