Questions tagged [rsa]
190 questions
0
votes
2 answers
copy ssh key from windows to synology disk
I'm trying to set up a git server on my synology following this tutorial.
The step I'm stuck at is this:
copy public rsa key from local computer to gituser account on server
I use following command: scp -r C:/.ssh/id_rsa.pub…

Peter
- 101
- 2
0
votes
1 answer
SSL S2S communication, protocol and ciphers
about a server/server S2S communication:
1st server has on Apache .conf:
SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1
SSLCipherSuite …

kenwarr
- 1
- 2
0
votes
1 answer
Puppet use master's ssh key for git clone?
I'm using the vcsrepo puppet module to sync git repositories.
# install git repo
vcsrepo { "/home/repo":
ensure => present,
provider => git,
source => "git@bitbucket.org:pk2klic/test.git",
}
It's working on the master server…

Philip Kirkbride
- 279
- 2
- 10
- 30
0
votes
1 answer
which public rsa keybelongs to which secret?
Is there a way to find out which public rsa key belongs to which secret key?
I have two pairs lying around, and would like to know ehich one is which.

steffen
- 157
- 1
- 2
- 8
0
votes
1 answer
How to verify RSA fingerprint for Linux AWS instance from Windows
The instructions for connecting to AWS Linux AMI states that when using putty, you should locate the SSH HOST KEY FINGERPRINTS section and note the RSA fingerprint.
I am running the "aws ec2 get-console-output ..." CLI command but see nothing that…

smackenzie
- 101
- 1
0
votes
2 answers
How to do SSH with -i option and bypassing password entry
Using ssh, I want to access
Machine1 --> Machine2
Let's say Machine2 has IP address: 133.165.14.22.
I have copied id_rsa.pub from Machine1 to Machine2
Then in Machine2 I have already did this:
cd ~/.ssh
cat id_rsa.pub >> authorized_keys
But when…

neversaint
- 103
- 1
- 1
- 5
0
votes
1 answer
JWT Signer Rsa.php - uncaught exception - invalid Argument exception
trying to install a nexmo voice api I'm getting an error that I can't solve alone (having limited knowledge about servers, etc.)
php /srv/www/...html/func/services/neo/voice_api_first_tts_call.php
Hi, using your key: xxxxxxxxxxxx and secret:…

davidman77
- 101
- 2
0
votes
0 answers
Some Windows servers do not seem to have RSA certificates. What is wrong?
Some Windows Server 2012 machines have certificates. Some do not.
I am running this command:
Get-ChildItem -Path Cert:\CurrenterUser\My |
Where-Object { $_.PrivateKey -is [System.Security.Cryptography.RSACryptoServiceProvider] -and $_.NotBefore…

Kiran
- 67
- 4
- 10
0
votes
1 answer
SFTP key issue? java.security.InvalidAlgorithmParameterException
I'm attempting to use my applications SFTP client test connection to connect to the MF but I'm getting the error:
Test of SFTP user alias GLDFundingEngine_User failed. Details: Session.connect: java.security.InvalidAlgorithmParameterException:…

Buzkie
- 195
- 4
- 11
0
votes
1 answer
Access with ssh only password without publickey with virtualbox
I tried to setup the ssh-server without publickey ,
with openssh-server 6.7p1-5
changed sshd_config
RSAAuthentication no
PubkeyAuthentication no
PasswordAuthentication yes
Restart ssh service
from the client side :
ssh -o…

enjoy343322434
- 111
- 4
0
votes
1 answer
Forcing SSH login on Ubuntu 14.04 server not working
I've tried enabling SSH logins in my linux server. It can establish connection just fine trough my private key. I also went to /etc/ssh/ssh_config and edited the following field like this:
PasswordAuthentication no
But it still lets me login trough…

jonnybravo
- 5
- 1
0
votes
1 answer
Setting Host Fingerprint on New EC2 Instances
TL;DR
Can I tell AWS EC2 to launch an instance from AMI but keep the host keys -- the ones in /etc/ssh that were saved with the AMI -- instead of generating new keys and overwriting the ones saved with the AMI.
The full question:
On AWS, I'm setting…

meetamit
- 143
- 5
0
votes
3 answers
Generating a CSR fails with 'routines:RSA_sign:digest too big for rsa' - for heroku
I tried generating a CSR by following Heroku instructions. Specifically
openssl genrsa -des3 -out server.pass.key 2048
openssl rsa -in server.pass.key -out server.key
openssl req -nodes -new -key server.key -out server.csr
# input data here
I get…

GregPK
- 117
- 1
- 3
0
votes
0 answers
Why would a server's RSA fingerprint change every few seconds?
In the past I've been able to connect to my server via SFTP with no problems, but suddenly yesterday it warned me that the fingerprint for the RSA key sent by the remote host had changed.
I've encountered this issue plenty of times before but this…

jerdiggity
- 101
- 2
0
votes
1 answer
What ciphers do I need to disable in tomcat to match a specific apache conf?
I have instructions to disable weak ciphers in apache by adding SSLCipherSuite ALL:!MD5:!aNULL:!ADH:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM to my httpd.conf.
I am actually running tomcat, and in my server.xml file I have the following ciphers…

Alan Benedict
- 1
- 1
- 2