Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.airlift.security.jwks;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.google.common.collect.ImmutableList;
import io.airlift.json.JsonCodec;
import io.airlift.log.Logger;
import java.math.BigInteger;
import java.security.PublicKey;
import java.security.spec.ECParameterSpec;
import java.security.spec.ECPoint;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.function.Function;
import static com.google.common.collect.ImmutableMap.toImmutableMap;
import static java.util.Base64.getUrlDecoder;
import static java.util.Objects.requireNonNull;
public final class JwksDecoder
{
private static final Logger log = Logger.get(JwksDecoder.class);
private static final JsonCodec KEYS_CODEC = JsonCodec.jsonCodec(JsonKeys.class);
private JwksDecoder() {}
public static Map decodeKeys(String jwksJson)
{
JsonKeys keys = KEYS_CODEC.fromJson(jwksJson);
return keys.getKeys().stream()
.map(JwksDecoder::tryDecodeJwkKey)
.filter(Optional::isPresent)
.map(Optional::get)
.collect(toImmutableMap(JwkPublicKey::getKeyId, Function.identity()));
}
public static Optional extends JwkPublicKey> tryDecodeJwkKey(JsonKey key)
{
// key id is required to index the key
if (key.getKid().isEmpty() || key.getKid().get().isEmpty()) {
return Optional.empty();
}
String keyId = key.getKid().get();
return switch (key.getKty()) {
case "RSA" -> tryDecodeRsaKey(keyId, key);
case "EC" -> tryDecodeEcKey(keyId, key);
// ignore unknown keys
default -> Optional.empty();
};
}
public static Optional tryDecodeRsaKey(String keyId, JsonKey key)
{
// alg field is optional so not verified
// use field is optional so not verified
Optional modulus = key.getStringProperty("n").flatMap(encodedModulus -> decodeBigint(keyId, "modulus", encodedModulus));
if (modulus.isEmpty()) {
return Optional.empty();
}
return key.getStringProperty("e")
.flatMap(exponent -> decodeBigint(keyId, "exponent", exponent))
.map(exponent -> new JwkRsaPublicKey(keyId, exponent, modulus.get()));
}
public static Optional tryDecodeEcKey(String keyId, JsonKey key)
{
// alg field is optional so not verified
// use field is optional so not verified
Optional curveName = key.getStringProperty("crv");
Optional curve = curveName.flatMap(EcCurve::tryGet);
if (curve.isEmpty()) {
log.error("JWK EC %s curve '%s' is not supported", keyId, curveName);
return Optional.empty();
}
Optional x = key.getStringProperty("x").flatMap(encodedX -> decodeBigint(keyId, "x", encodedX));
if (x.isEmpty()) {
return Optional.empty();
}
Optional y = key.getStringProperty("y").flatMap(encodedY -> decodeBigint(keyId, "y", encodedY));
if (y.isEmpty()) {
return Optional.empty();
}
ECPoint w = new ECPoint(x.get(), y.get());
return Optional.of(new JwkEcPublicKey(keyId, curve.get(), w));
}
private static Optional decodeBigint(String keyId, String fieldName, String encodedNumber)
{
try {
return Optional.of(new BigInteger(1, getUrlDecoder().decode(encodedNumber)));
}
catch (IllegalArgumentException e) {
log.error(e, "JWK %s %s is not a valid number", keyId, fieldName);
return Optional.empty();
}
}
public static class JsonKeys
{
private final List keys;
@JsonCreator
public JsonKeys(@JsonProperty("keys") List keys)
{
this.keys = ImmutableList.copyOf(requireNonNull(keys, "keys is null"));
}
public List getKeys()
{
return keys;
}
}
public static class JsonKey
{
private final String kty;
private final Optional kid;
private final Map other = new HashMap<>();
@JsonCreator
public JsonKey(
@JsonProperty("kty") String kty,
@JsonProperty("kid") Optional kid)
{
this.kty = requireNonNull(kty, "kty is null");
this.kid = requireNonNull(kid, "kid is null");
}
public String getKty()
{
return kty;
}
public Optional getKid()
{
return kid;
}
public Optional getStringProperty(String name)
{
Object value = other.get(name);
if (value instanceof String && !((String) value).isEmpty()) {
return Optional.of((String) value);
}
return Optional.empty();
}
@JsonAnySetter
public void set(String name, Object value)
{
other.put(name, value);
}
}
}