All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.sshd.common.util.buffer.keys.AbstractBufferPublicKeyParser Maven / Gradle / Ivy

There is a newer version: 2.12.1
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you 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.apache.sshd.common.util.buffer.keys;

import java.security.GeneralSecurityException;
import java.security.KeyFactory;
import java.security.PublicKey;
import java.security.spec.InvalidKeySpecException;
import java.security.spec.KeySpec;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;

import org.apache.sshd.common.util.GenericUtils;
import org.apache.sshd.common.util.SecurityUtils;
import org.apache.sshd.common.util.ValidateUtils;

/**
 * @param  Type of {@link PublicKey} being extracted
 * @author Apache MINA SSHD Project
 */
public abstract class AbstractBufferPublicKeyParser implements BufferPublicKeyParser {
    private final Class keyClass;
    private final Collection supported;

    protected AbstractBufferPublicKeyParser(Class keyClass, String ... supported) {
        this(keyClass, GenericUtils.isEmpty(supported) ? Collections.emptyList() : Arrays.asList(supported));
    }

    protected AbstractBufferPublicKeyParser(Class keyClass, Collection supported) {
        this.keyClass = ValidateUtils.checkNotNull(keyClass, "No key class");
        this.supported = ValidateUtils.checkNotNullAndNotEmpty(supported, "No supported types for %s", keyClass.getSimpleName());
    }

    public Collection getSupportedKeyTypes() {
        return supported;
    }

    public final Class getKeyClass() {
        return keyClass;
    }

    @Override
    public boolean isKeyTypeSupported(String keyType) {
        Collection keys = getSupportedKeyTypes();
        return (GenericUtils.length(keyType) > 0)
            && (GenericUtils.size(keys) > 0)
            && keys.contains(keyType);
    }

    protected  PUB generatePublicKey(String algorithm, S keySpec) throws GeneralSecurityException {
        KeyFactory keyFactory = getKeyFactory(algorithm);
        PublicKey key = keyFactory.generatePublic(keySpec);
        Class kc = getKeyClass();
        if (!kc.isInstance(key)) {
            throw new InvalidKeySpecException("Mismatched generated key types: expected=" + kc.getSimpleName() + ", actual=" + key);
        }

        return kc.cast(key);
    }

    protected KeyFactory getKeyFactory(String algorithm) throws GeneralSecurityException {
        return SecurityUtils.getKeyFactory(algorithm);
    }

    @Override
    public String toString() {
        return getClass().getSimpleName() + " - supported=" + getSupportedKeyTypes();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy