de.rub.nds.protocol.crypto.ec.EllipticCurveSECT193R2 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 EllipticCurveSECT193R2 extends EllipticCurveOverF2m {
public EllipticCurveSECT193R2() {
super(
new BigInteger("0163F35A5137C2CE3EA6ED8667190B0BC43ECD69977702709B", 16),
new BigInteger("00C9BB9E8927D4D64C377E2AB2856A5B16E3EFB7F61D4316AE", 16),
new BigInteger("2000000000000000000000000000000000000000000008001", 16),
new BigInteger("00D9B67D192E0367C803F39E1A7E82CA14A651350AAE617E8F", 16),
new BigInteger("01CE94335607C304AC29E7DEFBD9CA01F596F927224CDECF6C", 16),
new BigInteger("010000000000000000000000015AAB561B005413CCD4EE99D5", 16));
}
}