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

org.apache.sshd.client.auth.pubkey.KeyPairIdentity Maven / Gradle / Ivy

There is a newer version: 2.14.0
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.client.auth.pubkey;

import java.security.KeyPair;
import java.security.PublicKey;
import java.util.AbstractMap.SimpleImmutableEntry;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Objects;

import org.apache.sshd.common.NamedFactory;
import org.apache.sshd.common.NamedResource;
import org.apache.sshd.common.config.keys.KeyUtils;
import org.apache.sshd.common.session.SessionContext;
import org.apache.sshd.common.signature.Signature;
import org.apache.sshd.common.signature.SignatureFactoriesHolder;
import org.apache.sshd.common.signature.SignatureFactoriesManager;
import org.apache.sshd.common.signature.SignatureFactory;
import org.apache.sshd.common.util.GenericUtils;
import org.apache.sshd.common.util.ValidateUtils;

/**
 * Uses a {@link KeyPair} to generate the identity signature
 *
 * @author Apache MINA SSHD Project
 */
public class KeyPairIdentity implements PublicKeyIdentity, SignatureFactoriesHolder {
    private final KeyPair pair;
    private final List> signatureFactories;

    public KeyPairIdentity(SignatureFactoriesManager primary, SignatureFactoriesManager secondary, KeyPair pair) {
        this.signatureFactories = Collections.unmodifiableList(
                ValidateUtils.checkNotNullAndNotEmpty(
                        SignatureFactoriesManager.resolveSignatureFactories(primary, secondary),
                        "No available signature factories"));
        this.pair = Objects.requireNonNull(pair, "No key pair");
    }

    @Override
    public KeyPair getKeyIdentity() {
        return pair;
    }

    @Override
    public List> getSignatureFactories() {
        return signatureFactories;
    }

    @Override
    public Map.Entry sign(SessionContext session, String algo, byte[] data) throws Exception {
        NamedFactory factory;
        if (GenericUtils.isEmpty(algo)) {
            KeyPair kp = getKeyIdentity();
            algo = KeyUtils.getKeyType(kp.getPublic());
            // SSHD-1104 check if the key type is aliased
            factory = SignatureFactory.resolveSignatureFactory(algo, getSignatureFactories());
        } else {
            factory = NamedResource.findByName(algo, String.CASE_INSENSITIVE_ORDER, getSignatureFactories());
        }

        Signature verifier = (factory == null) ? null : factory.create();
        ValidateUtils.checkNotNull(verifier, "No signer could be located for key type=%s", algo);
        verifier.initSigner(session, pair.getPrivate());
        verifier.update(session, data);

        byte[] signature = verifier.sign(session);
        return new SimpleImmutableEntry<>(factory.getName(), signature);
    }

    @Override
    public String toString() {
        KeyPair kp = getKeyIdentity();
        PublicKey pubKey = kp.getPublic();
        return getClass().getSimpleName()
               + " type=" + KeyUtils.getKeyType(pubKey)
               + ", factories=" + getSignatureFactoriesNameList()
               + ", fingerprint=" + KeyUtils.getFingerPrint(pubKey);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy