/* * 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.security.eddsa; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.security.GeneralSecurityException; import java.security.KeyFactory; import java.security.KeyPairGenerator; import java.util.Collections; import java.util.Objects; import net.i2p.crypto.eddsa.EdDSAPrivateKey; import net.i2p.crypto.eddsa.EdDSAPublicKey; import net.i2p.crypto.eddsa.spec.EdDSAPrivateKeySpec; import net.i2p.crypto.eddsa.spec.EdDSAPublicKeySpec; import org.apache.sshd.common.config.keys.KeyEntryResolver; import org.apache.sshd.common.config.keys.impl.AbstractPublicKeyEntryDecoder; import org.apache.sshd.common.keyprovider.KeyPairProvider; import org.apache.sshd.common.util.security.SecurityUtils; /** * @author <a href="mailto:dev@mina.apache.org">Apache MINA SSHD Project</a> */ public final class Ed25519PublicKeyDecoder extends AbstractPublicKeyEntryDecoder<EdDSAPublicKey, EdDSAPrivateKey> { public static final Ed25519PublicKeyDecoder INSTANCE = new Ed25519PublicKeyDecoder(); private Ed25519PublicKeyDecoder() { super(EdDSAPublicKey.class, EdDSAPrivateKey.class, Collections.unmodifiableList(Collections.singletonList(KeyPairProvider.SSH_ED25519))); } @Override public EdDSAPublicKey clonePublicKey(EdDSAPublicKey key) throws GeneralSecurityException { if (key == null) { return null; } else { return generatePublicKey(new EdDSAPublicKeySpec(key.getA(), key.getParams())); } } @Override public EdDSAPrivateKey clonePrivateKey(EdDSAPrivateKey key) throws GeneralSecurityException { if (key == null) { return null; } else { return generatePrivateKey(new EdDSAPrivateKeySpec(key.getSeed(), key.getParams())); } } @Override public KeyPairGenerator getKeyPairGenerator() throws GeneralSecurityException { return SecurityUtils.getKeyPairGenerator(SecurityUtils.EDDSA); } @Override public String encodePublicKey(OutputStream s, EdDSAPublicKey key) throws IOException { Objects.requireNonNull(key, "No public key provided"); KeyEntryResolver.encodeString(s, KeyPairProvider.SSH_ED25519); byte[] seed = getSeedValue(key); KeyEntryResolver.writeRLEBytes(s, seed); return KeyPairProvider.SSH_ED25519; } @Override public KeyFactory getKeyFactoryInstance() throws GeneralSecurityException { return SecurityUtils.getKeyFactory(SecurityUtils.EDDSA); } @Override public EdDSAPublicKey decodePublicKey(String keyType, InputStream keyData) throws IOException, GeneralSecurityException { byte[] seed = KeyEntryResolver.readRLEBytes(keyData); return EdDSAPublicKey.class.cast(SecurityUtils.generateEDDSAPublicKey(keyType, seed)); } public static byte[] getSeedValue(EdDSAPublicKey key) { // a bit of reverse-engineering on the EdDSAPublicKeySpec return (key == null) ? null : key.getAbyte(); } }