Update SubjectDnX509PrincipalExtractor.java

Added missing asterisk
This commit is contained in:
sunflower-seed 2018-10-17 18:23:03 +02:00 committed by Rob Winch
parent e26bb2b326
commit 2e6ff72c31
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ import java.util.regex.Matcher;
* expression "CN=(.*?)(?:,|$)" matches the common name field. So * expression "CN=(.*?)(?:,|$)" matches the common name field. So
* "CN=Jimi Hendrix, OU=..." will give a user name of "Jimi Hendrix". * "CN=Jimi Hendrix, OU=..." will give a user name of "Jimi Hendrix".
* <p> * <p>
* The matches are case insensitive. So "emailAddress=(.?)," will match * The matches are case insensitive. So "emailAddress=(.*?)," will match
* "EMAILADDRESS=jimi@hendrix.org, CN=..." giving a user name "jimi@hendrix.org" * "EMAILADDRESS=jimi@hendrix.org, CN=..." giving a user name "jimi@hendrix.org"
* *
* @author Luke Taylor * @author Luke Taylor