The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
36 views

Public key authentication issues on cygwin

I've been trying "ssh localhost" on cygwin (I use WIndows 7), but it keeps asking for the password. When I did "ssh -vvv localhost", I found out that the public key authentications were not ...
1
vote
2answers
35 views

X.509: Private / Public Key

We're trying to implement some functionality of a Web-Service from one of our partners. Now, the content which is beeing transmitted, should be encrypted with a public key, which we have to provide. ...
-2
votes
0answers
21 views

ssh use public-key authentication [closed]

I use public-key authentication with secureCRT to login linux server and turn off password authentication at these server: 1.Create the keypair(openssh key format) with SecureCRT. 2.Cat the public ...
0
votes
0answers
30 views

IOS Code Signing Debugging Utility

I'm looking at creating a standalone utility that displays user friendly error messages for debugging issues related to code signing and deployment that are typically encountered during IOS ...
1
vote
1answer
59 views

Unable to generate same key pair from same random seed

I am using java cryptography to generate public and private keys. I am using String.getBytes() to generate it. But While decrypting I am using the same String.getBytes() to get the keys. But I am not ...
0
votes
0answers
4 views

Debugging public key authentication with paramiko

Is there any way to confirm which file (and what contents) paramiko is sending out when attempting to authenticate using public key authentication? Up until now the authentication has worked. It's ...
0
votes
1answer
42 views

Convert ssh-dss key to .pem?

how can I convert an openssh dsa public key to .pem format? is it possible? I've used command openssl dsa -in u015_test.pub -outform pem > u015_test.pem but this is the output: read DSA ...
1
vote
0answers
37 views

Trying to implement PublicKey Authentication for SFTP test server using Apache Mina. However Authenticate method is not being called

I am using Apache Mina SSHD to implement a test SFTPServer. I have been able to get things working for simple Password authentication, however I am not able to configure things for PublicKey ...
-1
votes
1answer
55 views

Setting up OpenSSH for Windows using public key authentication

I am having issues setting up OpenSSH for Windows, using public key authentication. I have this working on my local desktop and can ssh with a key from Unix machines or other openssh for windows ...
0
votes
0answers
50 views

Exception when initializing PublicKey from RSA public key stored as a string (works on laptop, not on server)

I have a application I am working on that deals with handling certificates and I am running into a issue where my code works correct when I run in via JUnit tests locally on my laptop but when I ...
0
votes
1answer
37 views

Using git with 2 laptops and multiple identities

I started a project on my office computer. Now I'm trying to move development to my home laptop. But my home laptop already has keys of own (for several other projects). This particular project is ...
0
votes
1answer
31 views

What is the public URL for the Github public keys

I heard that there was a public URL for all users on github where you can access their public keys or they can supply that URL of all their public keys. Is this true? If so what is that URL. Does it ...
-1
votes
1answer
29 views

I can't use git to push my source code, It said “Permission denied (publickey).”

I had created a repository. and I run these command in local computer: $ git init $ touch README $ git add README $ git commit -m "first commit" $ git remote add origin ...
0
votes
1answer
60 views

The key container name 'bsn' does not exist

I'm trying to run the project of bsn-goldparser (https://code.google.com/p/bsn-goldparser/) and I have the next trouble: Visual Studio shows me the next message : "Error 2 Cryptographic failure ...
0
votes
1answer
56 views

Dumping public key from private using libopenssl

Let say I want to have a code doing something like this openssl command in my c++ application. openssl rsa -in private.pem -pubout -outform der -out ./out.pub How can I do that? I was look for a ...
0
votes
1answer
119 views

Getting public key using modulus and exponent

hi to all another problem another question.. I am on a C# project that decrypts encrypted messages. for decrypting i am using openssl. I am able to encrypt a message with private key and decrypt it ...
-1
votes
1answer
46 views

Amazon EC2 key - password required for the public key [closed]

Amazon EC2 running but not contactable and not administrable via ssh because the following attempt fails ssh -i /Users/me/Downloads/xxx.ppk Cxxxx-Cxxx@Cxxx-Cxxx.dnsalias.net by asking a password ...
1
vote
2answers
85 views

RSA algorthum calculations

I have been working though a network book and hit the RSA section. Consider the RSA algorithm with p=5 and q=11. so I get N = p*q = 55 right? and z = (p-1) * (q -1) = 40 I think I got this right ...
0
votes
1answer
140 views

apache sshd public key authentication

I am trying to set up an ssh server using apache mina sshd. I want to use public key authentication, and basically I want to know how to implement package org.apache.sshd.server; import ...
0
votes
0answers
152 views

Android - Certificates - Public Key, Private Key

I have .p12 certificate an I need to import it into my Android application. I have manage to import public an private keys but they are wrong. ????? X509 certificate is ok until I put it into ...
-2
votes
1answer
95 views

Not able to push to Github, getting “permission denied (publickey)” [duplicate]

Administrator@SANZVAIO /e/projects/pySan (master) $ git remote add pySan git@github.com:sanfx/.git Administrator@SANZVAIO /e/projects/pySan (master) $ git push -u origin master The authenticity of ...
0
votes
1answer
29 views

Where can I get the public keys of all popular certificate authorities

From where I can the list of popular certificate authorities public keys . Just like all browsers are coming with pre-installed certificates(public keys) of certificate authorities. Now I am ...
4
votes
2answers
3k views

Could not generate ssh public key for heroku in Windows 7

While I am trying heroku login through cmd in my machine, it says Could not find existing public key Would you like to generate one? [YN] After that when I press 'y' and enter it says ...
0
votes
1answer
136 views

Cannot push to heroku

I have Windows 7 Home Premium with installed: gem 1.8.24 ruby 1.9.3p385 node 0.8.19 git 1.8.1.msysgit. heroku/toolbelt/2.35.0 (i386-mingw32) ruby/1.9.3 I can succefully login to heroku with: heroku ...
0
votes
1answer
69 views

how to get public key with Crypt_RSA

I have coded a simple test, but it sent me: "Unverified", I guess because I am using the whole certificate instead of the public key. What method gives me public key? $rsa = new Crypt_RSA(); ...
0
votes
0answers
41 views

How to store client Certificates' public keys in Database?

I am implementing Client Certificate Authentication in an asp.net application and I need to assign to each user from the table Users, the public key of his/her corresponding Client Certificate. How ...
0
votes
1answer
192 views

Git clone using public private keys

I have been trying for ages to clone a git repository using public and private keys for authentication instead of password. I generated my keys using puttygen on windows. I cannot log in from windows ...
0
votes
1answer
71 views

push public key on multiple server using root account but under different user

I am trying to push some public keys on a whole bunch of servers using the root account but I wanna put those new keys under 'postgres' user. I'm doing this: $ cat new_dba_keys.pub | ssh -l root ...
0
votes
0answers
70 views

PHP SSH2 Connectivity using Public Paired key

I am trying to connect to SFTP server Using PHP SSH2 PECL v0.12(beta). The SFTP server require paired key + Username&Password to authenticate session. I created paired key from my local PC using ...
0
votes
1answer
390 views

Git push “permission denied”

I am attempting to push my code to my github account, however whenever I try, i get this Pushing to git@github.com:AlphaModder/Space-Dimension-Mod.git Permission denied (publickey). fatal: Could not ...
1
vote
1answer
156 views

openssl c++ need to display public key in hex format

I could use some help, I need to display a public key the same way Windows does when double clicking on a certificate (see image). Thanks. I can get the public key with either: RSA *pubKey = ...
2
votes
2answers
542 views

.ssh config with amazon ec2 and git

I have a strange problem with cloning a git repository from an amazon ec2 server. It works without any problems on one of my computers running ubuntu 12.04, while on another one using 12.10 it gives ...
1
vote
2answers
89 views

python-gnupg: retrieve public key of a signed message

I would like to know the public key of the user that generates an encrypted/signed PGP message. I looked at the python-gnupg API but I just found how to check that the signature is OK ...
0
votes
0answers
78 views

RSA encrypt on android

i have some problems when i try to encrypt a string with a public key stored in res/raw thesis the encrypt method code: public static byte[] encryptRSA(Context mContext, byte[] message) throws ...
0
votes
2answers
128 views

Cloudbees & Github: Error: Key already in use

I would like to push back the results from a build to github and I therefore use the Git publisher plugin. However, when I try to add the SSH public key from Cloudbees as a Deploy Key on Github then ...
2
votes
1answer
166 views

Reading public Key from an X509 structure in Javascript

Hello I have an encoded public key with a X509 structure and I want to extract modulus and the public exponent from it I'm using the following ASN.1 Decoder http://lapo.it/asn1js/to read the key but I ...
0
votes
2answers
184 views

Certificate match to private key

We are currently implementing a digital signature applet in java. Users will have tokens containing keystores of private keys and their respective certificates. The certificates and private keys will ...
-1
votes
2answers
594 views

java - get key from byte array

I have a java program that encrypts file content with a random-generated key. That key is encrpyted with RSA and saved into a text file. Now, I have a java program that given the file and the ...
3
votes
2answers
456 views

Extract Public Key in Python OpenSSL (pyOpenSSL) from certificate or other connection information

I'm currently trying to write a python server script which should authenticate the current client based on its public key. Since I'm using twisted, the example in the twisted documenteation got me ...
2
votes
0answers
85 views

openSSL: difference between PEM_write_RSAPublicKey and PEM_write_RSA_PUBKEY

In the openssl library I can see two methods to write a public Key to a file: int PEM_write_RSAPublicKey(FILE *fp, RSA *x); int PEM_write_RSA_PUBKEY(FILE *fp, RSA *x); In the documentation i can ...
-2
votes
2answers
61 views

confusion in public and private key [closed]

in Encryption and decryption same key is use to to convert plan text to cipher and cipher to plan text. so why in public key cryptograpy method sender Encrypt using receiver public key and receiver ...
0
votes
0answers
705 views

Keychain Assistant does not create public/private key pair, and my distribution certificates fail codesign verification

My certificates were expiring today (and at this point, it's totally expired), so I set out to renew the certificates. But the problem is, I can't get matching private/public keys for proper ...
5
votes
3answers
230 views

How to fully encrypt data in Ruby using Private Key encryption?

First, some info on our system, which is basically an eTendering solution for the construction industry. So: List item Our system has multiple companies Each company has multiple users Each company ...
0
votes
1answer
196 views

determine key size from public key (PEM format)

I'm trying to figure out the size of a public key that I received. How can determine the size from the key? I can't find a simple way in the documentation. What I have is the public key itself, which ...
0
votes
1answer
2k views

OpenSSL: Extract public key from certificate in DER format [closed]

I have a .cer certificate file, and need to extract the Public Key. I can only extract to PEM format. The "outform" parameter does nothing. openssl x509 -inform PEM -in certificate.cer -outform DER ...
1
vote
2answers
981 views

Git SSH authentication

I have Debian, Fisheye and Git on my server. My git repos are managed by Fisheye. There is no authentication at the Fisheye part. All authentication procedures are managed by git. I would like to use ...
0
votes
0answers
48 views

How can I use publickey when using reverse tunnel in SSH

I have a server behind firewall, so I ran this on the server ssh -fNR 10000:localhost:22 clientuser@client and when I trying this on the client, ssh -p10000 serveruser@localhost, it prompts me to ...
1
vote
2answers
326 views

PhpSeclib <-> BouncyCastle RSA

I generated on server side a pair public/private keys using phpseclib like include 'Crypt/RSA.php'; $rsa = new Crypt_RSA(); $rsa->setPrivateKeyFormat(CRYPT_RSA_PRIVATE_FORMAT_PKCS1); ...
0
votes
1answer
408 views

Encrypting a string with PublicKey + Base64 encryption

I have a RSA public key in String format and I want to encrypt a string using the same to Base 64. Here is the code that I am using for this: function encrypt(String pin){ String key = ...
2
votes
2answers
183 views

how to insert modulus and exponent of RSA public key into FGInt package(http://submanifold.be/)

I'm newby in RSA cryptographic methods... I need to verify incoming signature from device. The problem is, that I have to use a delphi IDE and delhi doesn't have implemented some RSA libraries. I find ...

1 2 3 4 5