2018-08-20 11:14:33 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 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.
|
|
|
|
*/
|
2018-06-11 22:45:30 +00:00
|
|
|
package org.keycloak.keys;
|
|
|
|
|
|
|
|
import org.keycloak.common.util.KeyUtils;
|
|
|
|
import org.keycloak.component.ComponentModel;
|
|
|
|
import org.keycloak.crypto.KeyStatus;
|
|
|
|
import org.keycloak.crypto.KeyType;
|
|
|
|
import org.keycloak.crypto.KeyUse;
|
|
|
|
import org.keycloak.crypto.KeyWrapper;
|
|
|
|
import org.keycloak.models.RealmModel;
|
|
|
|
|
2018-08-20 11:14:33 +00:00
|
|
|
import java.security.KeyPair;
|
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.List;
|
2018-06-11 22:45:30 +00:00
|
|
|
|
|
|
|
public abstract class AbstractEcdsaKeyProvider implements KeyProvider {
|
|
|
|
|
|
|
|
private final KeyStatus status;
|
|
|
|
|
|
|
|
private final ComponentModel model;
|
|
|
|
|
|
|
|
private final KeyWrapper key;
|
|
|
|
|
|
|
|
public AbstractEcdsaKeyProvider(RealmModel realm, ComponentModel model) {
|
|
|
|
this.model = model;
|
|
|
|
this.status = KeyStatus.from(model.get(Attributes.ACTIVE_KEY, true), model.get(Attributes.ENABLED_KEY, true));
|
|
|
|
|
|
|
|
if (model.hasNote(KeyWrapper.class.getName())) {
|
|
|
|
key = model.getNote(KeyWrapper.class.getName());
|
|
|
|
} else {
|
|
|
|
key = loadKey(realm, model);
|
|
|
|
model.setNote(KeyWrapper.class.getName(), key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected abstract KeyWrapper loadKey(RealmModel realm, ComponentModel model);
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public List<KeyWrapper> getKeys() {
|
|
|
|
return Collections.singletonList(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected KeyWrapper createKeyWrapper(KeyPair keyPair, String ecInNistRep) {
|
|
|
|
KeyWrapper key = new KeyWrapper();
|
|
|
|
|
|
|
|
key.setProviderId(model.getId());
|
|
|
|
key.setProviderPriority(model.get("priority", 0l));
|
|
|
|
|
|
|
|
key.setKid(KeyUtils.createKeyId(keyPair.getPublic()));
|
|
|
|
key.setUse(KeyUse.SIG);
|
|
|
|
key.setType(KeyType.EC);
|
2018-08-20 11:14:33 +00:00
|
|
|
key.setAlgorithm(AbstractEcdsaKeyProviderFactory.convertECDomainParmNistRepToAlgorithm(ecInNistRep));
|
2018-06-11 22:45:30 +00:00
|
|
|
key.setStatus(status);
|
|
|
|
key.setSignKey(keyPair.getPrivate());
|
|
|
|
key.setVerifyKey(keyPair.getPublic());
|
|
|
|
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
}
|