de.rub.nds.protocol.crypto.ec.EllipticCurveSECT163R1 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 EllipticCurveSECT163R1 extends EllipticCurveOverF2m {
public EllipticCurveSECT163R1() {
super(
new BigInteger("07B6882CAAEFA84F9554FF8428BD88E246D2782AE2", 16),
new BigInteger("0713612DCDDCB40AAB946BDA29CA91F73AF958AFD9", 16),
new BigInteger("800000000000000000000000000000000000000c9", 16),
new BigInteger("0369979697AB43897789566789567F787A7876A654", 16),
new BigInteger("00435EDB42EFAFB2989D51FEFCE3C80988F41FF883", 16),
new BigInteger("03FFFFFFFFFFFFFFFFFFFF48AAB689C29CA710279B", 16));
}
}