aboutsummaryrefslogtreecommitdiff
path: root/java_src/src/main/java/com/google/crypto/tink/jwt/JwtFormat.java
AgeCommit message (Expand)Author
2023-01-13Remove java.nio.charset.StandardCharsets.UTF_8 (excluding tests and examples).wconner
2022-12-19Make JwtNames.validate and JwtFormat.validateAlgorithm return void.tholenst
2021-08-30Remove unused and deprecated validateHeader in Java.juerg
2021-08-23Add kid validation to JwtFormat.validateHeader function.juerg
2021-08-16Use "charAt" instead of "toCharArray" because it is more efficient.juerg
2021-08-16Simplify JwtFormat.validateHeader in Java.juerg
2021-05-20Add Kid header to JWK Keys generated from Tink JWT Keys.juerg
2021-05-19Refactor input parameters of createUnsignedCompact.juerg
2021-05-18Add the encoded Tink key ID as "kid" header to JWTs if OutputPrefixType is TINK.juerg
2021-05-11Put Json-parsing into new class JsonUtil.juerg
2021-05-06Add support for the JWT "typ" header in Java.juerg
2021-04-29Add UTF-16 validation to strings in JWT in Java.juerg
2021-04-28Add tests for JWTs with bad UTF8 or UTF16 characters.juerg
2021-04-27Test parsing JSON string with lots of recursion.juerg
2021-04-27Reject JWT tokens with a "crit" header.juerg
2021-04-26Ignore "typ" header in JWT header validation.juerg
2021-04-13Ignore unknown JWT headers in Java, as already done in C++ and Python.juerg
2021-04-12Add missing copyright statements. These were missing due to internal miscommu...tholenst
2021-03-30Move splitting up the token into JwtFormat.juerg
2021-03-29Make base64 decoding in JWT stricter.juerg
2021-03-29Use JSON strings instead of object in decodeHeader and validateHeader.juerg
2021-03-29Move JSON Parsing into its own function, and add some tests.juerg
2021-03-01Use strict Json parsing in Tink Java JWT.juerg
2021-02-12Replace org.json with GSON in JWT.thaidn
2021-02-04Pass the serialized payload to the RawJwt.Builder, instead of JSONObject.juerg
2021-01-19Move validateASCII to JwtFormat and add check to JwtHmac.java.juerg
2020-11-19Pass JWT-specific exceptions through the JWT wrapper.juerg
2020-11-12Throw JwtInvalidException when the JWT Header is invalid.juerg
2020-11-11Move all JWT parsing and encoding into a single class JwtFormat.juerg