forked from apache/camel-quarkus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes apache#6909 ssh: extend test coverage
- Loading branch information
1 parent
ded8081
commit 90b72ed
Showing
12 changed files
with
706 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 78 additions & 0 deletions
78
...e/src/main/java/org/apache/camel/quarkus/component/ssh/runtime/SubstituteEdDSAEngine.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
/* | ||
* 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.camel.quarkus.component.ssh.runtime; | ||
|
||
import java.security.*; | ||
import java.security.spec.InvalidKeySpecException; | ||
import java.security.spec.X509EncodedKeySpec; | ||
|
||
import com.oracle.svm.core.annotate.Alias; | ||
import com.oracle.svm.core.annotate.Substitute; | ||
import com.oracle.svm.core.annotate.TargetClass; | ||
import net.i2p.crypto.eddsa.EdDSAEngine; | ||
import net.i2p.crypto.eddsa.EdDSAKey; | ||
import net.i2p.crypto.eddsa.EdDSAPublicKey; | ||
|
||
/** | ||
* We're substituting those offending methods that would require the presence of | ||
* net.i2p.crypto:eddsa library which is not supported by Camel SSH component | ||
*/ | ||
@TargetClass(EdDSAEngine.class) | ||
final class SubstituteEdDSAEngine { | ||
|
||
@Alias | ||
private MessageDigest digest; | ||
|
||
@Alias | ||
private EdDSAKey key; | ||
|
||
@Alias | ||
private void reset() { | ||
} | ||
|
||
@Substitute | ||
protected void engineInitVerify(PublicKey publicKey) throws InvalidKeyException { | ||
reset(); | ||
if (publicKey instanceof EdDSAPublicKey) { | ||
key = (EdDSAPublicKey) publicKey; | ||
|
||
if (digest == null) { | ||
// Instantiate the digest from the key parameters | ||
try { | ||
digest = MessageDigest.getInstance(key.getParams().getHashAlgorithm()); | ||
} catch (NoSuchAlgorithmException e) { | ||
throw new InvalidKeyException( | ||
"cannot get required digest " + key.getParams().getHashAlgorithm() + " for private key."); | ||
} | ||
} else if (!key.getParams().getHashAlgorithm().equals(digest.getAlgorithm())) | ||
throw new InvalidKeyException("Key hash algorithm does not match chosen digest"); | ||
} //following line differs from the original method | ||
else if (publicKey.getFormat().equals("X.509")) { | ||
// X509Certificate will sometimes contain an X509Key rather than the EdDSAPublicKey itself; the contained | ||
// key is valid but needs to be instanced as an EdDSAPublicKey before it can be used. | ||
EdDSAPublicKey parsedPublicKey; | ||
try { | ||
parsedPublicKey = new EdDSAPublicKey(new X509EncodedKeySpec(publicKey.getEncoded())); | ||
} catch (InvalidKeySpecException ex) { | ||
throw new InvalidKeyException("cannot handle X.509 EdDSA public key: " + publicKey.getAlgorithm()); | ||
} | ||
engineInitVerify(parsedPublicKey); | ||
} else { | ||
throw new InvalidKeyException("cannot identify EdDSA public key: " + publicKey.getClass()); | ||
} | ||
} | ||
} |
65 changes: 0 additions & 65 deletions
65
...src/main/java/org/apache/camel/quarkus/component/ssh/runtime/SubstituteSecurityUtils.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
#!/bin/bash | ||
# | ||
# 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. | ||
# | ||
|
||
|
||
set -e | ||
set -x | ||
|
||
keyType="ed25519" | ||
|
||
keySize=2048 | ||
days=10000 | ||
password="password" | ||
encryptionAlgo="aes-256-cbc" | ||
|
||
|
||
workDir="target/openssl-work" | ||
destinationDir="target/classes/edDSA" | ||
|
||
# see https://stackoverflow.com/a/54924640 | ||
export MSYS_NO_PATHCONV=1 | ||
|
||
if [[ -n "${JAVA_HOME}" ]] ; then | ||
keytool="$JAVA_HOME/bin/keytool" | ||
elif ! [[ -x "$(command -v keytool)" ]] ; then | ||
echo 'Error: Either add keytool to PATH or set JAVA_HOME' >&2 | ||
exit 1 | ||
else | ||
keytool="keytool" | ||
fi | ||
|
||
if ! [[ -x "$(command -v openssl)" ]] ; then | ||
echo 'Error: openssl is not installed.' >&2 | ||
exit 1 | ||
fi | ||
|
||
mkdir -p "$workDir" | ||
mkdir -p "$destinationDir" | ||
|
||
# Ed25519 private key | ||
#openssl genpkey -algorithm ed25519 -out "$destinationDir/key_ed25519.pem" | ||
ssh-keygen -t ed25519 -o -a 100 -N "" -f "$destinationDir/key_ed25519.pem" -C "test@localhost" | ||
|
||
|
||
# Ed25519 public key | ||
#openssl pkey -in "$destinationDir/key_ed25519.pem" -pubout -out "$destinationDir/key_ed25519.pem.pub" | ||
ssh-keygen -y -f "$destinationDir/key_ed25519.pem" > "$destinationDir/key_ed25519.pem.pub" | ||
|
||
#generate known-hosts | ||
echo -n "127.0.0.1 $(sed 's/\(.*\) \([^ ]*\)$/\1/' "$destinationDir/key_ed25519.pem.pub")" >> "$destinationDir/known_hosts_eddsa" | ||
#echo -n "127.0.0.1 ssh-ed25519 $(sed -e '1d' -e '$d' "$destinationDir/key_ed25519.pem.pub")" >> "$destinationDir/known_hosts_eddsa" | ||
|
||
|
Oops, something went wrong.