tls-attacker / TLS-Attacker

TLS-Attacker is a Java-based framework for analyzing TLS libraries. It can be used to manually test TLS clients and servers or as as a software library for more advanced tools.
Apache License 2.0
778 stars 135 forks source link

Fixed typo in brainpool java name #162

Closed Kavakuo closed 3 months ago

Kavakuo commented 3 months ago

The NamedGroup.fromJavaName function is called from here. This is needed by TLS-Attacker to identify the curve of a public key inside a certificate. The ECNamedCurveTable.getName() function that is part of Bouncy Castle is called to obtain the java name of the curve. The curves are defined here in the Bouncy Castle Source, where the java name is written with a captial "P".