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

net.schmizz.sshj.transport.kex.ECDHNistP Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C)2009 - SSHJ Contributors
 *
 * 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 net.schmizz.sshj.transport.kex;

import net.schmizz.sshj.transport.digest.Digest;
import net.schmizz.sshj.transport.digest.SHA256;
import net.schmizz.sshj.transport.digest.SHA384;
import net.schmizz.sshj.transport.digest.SHA512;

import java.security.GeneralSecurityException;
import java.security.spec.ECGenParameterSpec;

public class ECDHNistP extends AbstractDHG {

    private final String curve;

    /** Named factory for ECDHNistP key exchange */
    public static class Factory521
            implements net.schmizz.sshj.common.Factory.Named {

        @Override
        public KeyExchange create() {
            return new ECDHNistP("secp521r1", new SHA512());
        }

        @Override
        public String getName() {
            return "ecdh-sha2-nistp521";
        }
    }

    /** Named factory for ECDHNistP key exchange */
    public static class Factory384
            implements net.schmizz.sshj.common.Factory.Named {

        @Override
        public KeyExchange create() {
            return new ECDHNistP("secp384r1", new SHA384());
        }

        @Override
        public String getName() {
            return "ecdh-sha2-nistp384";
        }
    }

    /** Named factory for ECDHNistP key exchange */
    public static class Factory256
            implements net.schmizz.sshj.common.Factory.Named {

        @Override
        public KeyExchange create() {
            return new ECDHNistP("secp256r1", new SHA256());
        }

        @Override
        public String getName() {
            return "ecdh-sha2-nistp256";
        }
    }

    public ECDHNistP(String curve, Digest digest) {
        super(new ECDH(), digest);
        this.curve = curve;
    }

    @Override
    protected void initDH(DHBase dh) throws GeneralSecurityException {
        dh.init(new ECGenParameterSpec(curve), trans.getConfig().getRandomFactory());
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy