2017-09-26 07:31:15 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2017 Red Hat, Inc. and/or its affiliates
|
|
|
|
* and other contributors as indicated by the @author tags.
|
|
|
|
*
|
|
|
|
* 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 org.keycloak.keys;
|
|
|
|
|
|
|
|
import org.keycloak.common.util.Base64Url;
|
|
|
|
import org.keycloak.common.util.KeyUtils;
|
|
|
|
import org.keycloak.component.ComponentModel;
|
2018-06-22 14:05:42 +00:00
|
|
|
import org.keycloak.crypto.JavaAlgorithm;
|
|
|
|
import org.keycloak.crypto.KeyStatus;
|
|
|
|
import org.keycloak.crypto.KeyUse;
|
|
|
|
import org.keycloak.crypto.KeyWrapper;
|
|
|
|
|
|
|
|
import javax.crypto.SecretKey;
|
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.List;
|
2017-09-26 07:31:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @author <a href="mailto:sthorger@redhat.com">Stian Thorgersen</a>
|
|
|
|
*/
|
2018-08-20 11:14:33 +00:00
|
|
|
public abstract class AbstractGeneratedSecretKeyProvider implements KeyProvider {
|
2017-09-26 07:31:15 +00:00
|
|
|
|
2018-06-22 14:05:42 +00:00
|
|
|
private final KeyStatus status;
|
2017-09-26 07:31:15 +00:00
|
|
|
private final ComponentModel model;
|
|
|
|
private final String kid;
|
|
|
|
private final SecretKey secretKey;
|
2018-06-22 14:05:42 +00:00
|
|
|
private final KeyUse use;
|
|
|
|
private String type;
|
|
|
|
private final String algorithm;
|
2017-09-26 07:31:15 +00:00
|
|
|
|
2018-08-20 11:14:33 +00:00
|
|
|
public AbstractGeneratedSecretKeyProvider(ComponentModel model, KeyUse use, String type, String algorithm) {
|
2018-06-22 14:05:42 +00:00
|
|
|
this.status = KeyStatus.from(model.get(Attributes.ACTIVE_KEY, true), model.get(Attributes.ENABLED_KEY, true));
|
2017-09-26 07:31:15 +00:00
|
|
|
this.kid = model.get(Attributes.KID_KEY);
|
|
|
|
this.model = model;
|
2018-06-22 14:05:42 +00:00
|
|
|
this.use = use;
|
|
|
|
this.type = type;
|
|
|
|
this.algorithm = algorithm;
|
2017-09-26 07:31:15 +00:00
|
|
|
|
|
|
|
if (model.hasNote(SecretKey.class.getName())) {
|
|
|
|
secretKey = model.getNote(SecretKey.class.getName());
|
|
|
|
} else {
|
2018-06-22 14:05:42 +00:00
|
|
|
secretKey = KeyUtils.loadSecretKey(Base64Url.decode(model.get(Attributes.SECRET_KEY)), JavaAlgorithm.getJavaAlgorithm(algorithm));
|
2017-09-26 07:31:15 +00:00
|
|
|
model.setNote(SecretKey.class.getName(), secretKey);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2018-06-22 14:05:42 +00:00
|
|
|
public List<KeyWrapper> getKeys() {
|
|
|
|
KeyWrapper key = new KeyWrapper();
|
2017-09-26 07:31:15 +00:00
|
|
|
|
2018-06-22 14:05:42 +00:00
|
|
|
key.setProviderId(model.getId());
|
|
|
|
key.setProviderPriority(model.get("priority", 0l));
|
2017-09-26 07:31:15 +00:00
|
|
|
|
2018-06-22 14:05:42 +00:00
|
|
|
key.setKid(kid);
|
|
|
|
key.setUse(use);
|
|
|
|
key.setType(type);
|
2018-08-20 11:14:33 +00:00
|
|
|
key.setAlgorithm(algorithm);
|
2018-06-22 14:05:42 +00:00
|
|
|
key.setStatus(status);
|
|
|
|
key.setSecretKey(secretKey);
|
2017-09-26 07:31:15 +00:00
|
|
|
|
2018-06-22 14:05:42 +00:00
|
|
|
return Collections.singletonList(key);
|
2017-09-26 07:31:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void close() {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|