Questions tagged [rsa-key-fingerprint]
39 questions
2
votes
1 answer
USB debugging RSA fingerprint dialog not showing
I have Moto G4 plus Android 6.0.1
And in that I installed TWRP recovery and manually root it
When I connected with PC in debugging mode it shows Unauthorized device
I have tried
Updating SDK tools
adb kill-server
adb start-server
adb…

Shareque
- 361
- 4
- 23
2
votes
1 answer
Why deployer is rejecting my credentials?
I've created a new project to deploy my sources in ubuntu. My workspace, generated by a jenkins extraction is in a webserver.
I've installed deployer in this webserver to put in another server my sources validated by jenkins.
I made a "deploy"…

Amelie
- 516
- 3
- 17
2
votes
1 answer
Python Paramiko: verifying SSH host key fingerprints manually
I am using python Paramiko to connect using ssh to a remote ubuntu box hosted on a vps provider. Using a windows 7 based client machine, I am able to connect as follows:
import paramiko
import binascii
ssh =…

Rabih Kodeih
- 9,361
- 11
- 47
- 55
1
vote
1 answer
Why do I need to use SshHostKeyFingerprint in WinSCP .NET assembly, when WinSCP GUI does not require such option?
It is the first time I am using a WinSCP .NET client for uploading files from remote Linux PC. If I run following code without defining SshHostKeyFingerprint I get Error:
SessionOptions.Protocol is Protocol.Sftp or Protocol.Scp, but…

Mdarende
- 469
- 3
- 13
1
vote
1 answer
How to unlink the previous SSH key in Git
I have followed the following steps to create and add a SSH key and deleted all the previously created keys in the folder ~/.ssh/
$ ssh-keygen -t rsa -b 4096 -C "myEmail@gmail.com"
$ eval "$(ssh-agent -s)"
$ ssh-add -K ~/.ssh/id_rsa
$ clip <…

Constantinos Vakratsas
- 11
- 1
- 1
- 5
1
vote
1 answer
$rsa->encrypt() has problems with my public key
I'm trying to encrypt some things with phpseclib but for some reason the encrypt() function does not return anything.
Here is the core I have now:
include('/pathto/Crypt/RSA.php');
$key = '-----BEGIN PUBLIC…

MartijnD
- 15
- 7
1
vote
0 answers
Phone keeps showing (Allow USB debugging?) dialog with RSA key fingerprint
I am using my phone (ASUS Zenfone 551ML) to test android application i am developing.
Working on Android Studio (Version 3.0.1) which is installed on Windows 10.
When i connect the phone to computer, phone keeps showing a dialog carrying a RSA key…

Hamza Hajeir
- 119
- 1
- 8
1
vote
2 answers
Cannot display google map after changing keystore
I had a workable map app, but after i changed the keystore, also create api key, and update it into my AndroidMenifest, the map was not display anymore,
and I found something interesting, that the certificate Fingerprint and api Key in error log…

Tyo Yang
- 81
- 8
0
votes
0 answers
rsa key encryption TypeError: Object of type bytes is not JSON serializable
**Im getting below error when encoding rsa.key for python connector, i saw item = json.dumps(dict(item)) online but not sure how i add to my existing script.
Traceback (most recent call last):
File…
0
votes
1 answer
How to convert a string of certificate fingerprint to byte array in Java?
My program asks user to input a string of certificate fingerprint then convert the input to byte array for later use.
What I am asking is how should I convert the inputStringArray to the convertResult byte array?
String input =…

bubuStar
- 563
- 1
- 3
- 8
0
votes
1 answer
Update SSH key/RSA fingerprint for GitHub (Ubuntu-20.04) not working
My GitHub ssh key is expired. I tried to update it, which works on GitHub's site, but my laptop just shows me the old RSA fingerprint when I try to push/pull/clone. So currently,
my laptop has no access to GitHub now.
There a similar questions on…

Joel Heuer
- 1
- 1
0
votes
2 answers
Can I generate keystore from jks or pem file
Hi everyone I got some problems while trying to update my android app:
So first I lost my keystore password and I solve It by contacting google support and requested to reset It.
Then after that I got this problem:
"Your Android App Bundle has…

moh
- 51
- 1
- 7
0
votes
1 answer
How to calculate a fingerprint from an RSA public key?
With this command it is possible to generate an RSA public-private key pair:
ssh-keygen -f key
Now I would like to load these keys in Python using module cryptography. Example:
from cryptography.hazmat.backends import default_backend
from…

Regis May
- 3,070
- 2
- 30
- 51
0
votes
2 answers
How to calculate RSA public key fingerprint using OpenSSL?
I have a RSA public key in an EVP_PKEY structure (loaded from a PEM file starting with -----BEGIN PUBLIC KEY-----). Now I want to be able to display a fingerprint of that key from my code using the OpenSSL API. (The purpose is to allow the operator…

Chris
- 1,508
- 1
- 11
- 30
0
votes
1 answer
Modifying Python 3 code to deal with RSA key fingerprint
The following code fails to connect to a Cisco switch because of the:
RSA key fingerprint is 3e:b7:7b:55:6b:a3:xx:xx:xx:xx
Are you sure you want to continue connecting (yes/no)? yes
#!/usr/bin/env python
from __future__ import print_function
from…

theotherswan
- 3
- 1
- 5