openjdk version "21.0.12" 2026-07-21
입력             길이 걸리는 검사 전부                      | requireIdentifier 가 낸 메시지
--------------------------------------------------------------------------------------------------------------------------
test: 메일         18   문자클래스 메일           | identifier must be 1..128 characters of [A-Za-z0-9._~-] and must not contain a key separator
test: 전화         13   문자클래스        전화    | identifier must be 1..128 characters of [A-Za-z0-9._~-] and must not contain a key separator
test: eyj        20                   접두 | identifier must not contain authentication material
test: bearer     19                   접두 | identifier must not contain authentication material
test: JWT        57            JWT    접두 | identifier must not contain a JSON web token
test: 129자       129  문자클래스              | identifier must be 1..128 characters of [A-Za-z0-9._~-] and must not contain a key separator

JWT 분기만 걸리는 값이 있는가
합성 JWT 26자       26            JWT       | identifier must not contain a JSON web token
_로 시작            26   문자클래스    JWT       | identifier must be 1..128 characters of [A-Za-z0-9._~-] and must not contain a key separator
실제 크기 JWT        238  문자클래스    JWT    접두 | identifier must be 1..128 characters of [A-Za-z0-9._~-] and must not contain a key separator

메일과 전화 분기만 걸리는 값이 있는가
  메일 분기는 '@' 를 요구한다   -> IDENTIFIER 문자 클래스에 '@' 없음
  전화 분기는 '+' 로 시작한다   -> IDENTIFIER 첫 문자는 [A-Za-z0-9]

옮겨 적은 정규식이 실제와 같은지 무작위 입력으로 대조한다.
  200000 / 200000 일치
    문자클래스      에서 갈린 입력 144166
    메일         에서 갈린 입력 0
    JWT        에서 갈린 입력 23462
    전화         에서 갈린 입력 0
    접두         에서 갈린 입력 30843
    통과         1529
