Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

62
votes
11answers
9k views

Permission denied (publickey) when deploying heroku code. fatal: The remote end hung up unexpectedly

I'm attempting to deploy my code to heroku with the following command line: git push heroku master but get the following error: Permission denied (publickey). fatal: The remote end hung up ...
15
votes
2answers
2k views

Github: readonly access to a private repo

I am developing some private projects on Github, and I would like to add nightly cronjobs to my deployments servers to pull the latest version from github. I am currently doing this by generating ...
13
votes
7answers
395 views

DSA: What can a hacker do with *just* a public key?

The shareware registration system I'm currently developing embeds the public DSA key in the executable itself, and the private key resides on a server. (For the sake of discussion let's assume that ...
10
votes
2answers
5k views

What is the difference between a cer, pvk, and pfx file?

What is the difference between a cer, pvk, and pfx file? EDIT: Also, which files do I keep and which am I expected to give to my counter-parties?
8
votes
5answers
807 views

Generating REALLY big primes

I'm playing around and trying to write an implementation of RSA. The problem is that I'm stuck on generating the massive prime numbers that are involved in generating a key pair. Could someone point ...
7
votes
3answers
167 views

Git push fails within GNU screen

I can push just fine to my GitHub repo from my VPS, but once I enter a screen, I get permission denied: littke@[server]:~/src/[repo]$ git push Pushing to git@github.com:littke/[repo].git Permission ...
7
votes
1answer
385 views

git setup for multiple repos on same server

Probably a simple question, but I am at a loss here... In github one can add a deployment key for each repository which only gives access to that single repository. But for one client I have two ...
7
votes
1answer
2k views

Import .pem public and private keys to JKS keystore

I have public and private keys in separate .pem files that I would need to get into a JKS keystore somehow. Tried using the -import command in KeyTool for this, which gives an "not an X.509 ...
6
votes
4answers
1k views

C# How to simply encrypt a text file with a PGP Public Key?

I've researched a bit about how to achieve what I said in the question and found several APIs but most of them look very complicated and since I'm just a noobie in this area I just want a simple ...
5
votes
4answers
137 views

Public key cryptography with user-chosen passwords?

The whole point is designing a simple system where users are able to send encrypted messages between them (with support from a server). In this scenario, clients have no local storage, so I'm forced ...
5
votes
1answer
284 views

What exactly is a “key container”?

Is it something specific, with a definite structure, or just an arbitrary data file with some form of encryption to hold keys, and potentially other secret information? Can someone please explain the ...
4
votes
1answer
81 views

Quite special PublicKey in .NET core assemblies

I've noticed that core .NET assemblies have PublicKey = 00000000000000000400000000000000. Not only it's shorter then those sn.exe allows to generate (min 384 bits) but also it has a lot of zeros. ...
4
votes
1answer
1k views

For RSA, how do i calculate the secret exponent?

For RSA, how do i calculate the secret exponent? Given p and q the two primes, and phi=(p-1)(q-1), and the public exponent (0x10001), how do i get the secret exponent 'd' ? I've read that i have to ...
4
votes
3answers
380 views

Encryption from c# application

SITUATION: I need to make encryption happen between my remote database and my c# application. I don't know what I'm doing (never done any encryption before) and all the stuff I found on the web was ...
4
votes
6answers
408 views

how does public key cryptography work

What I understand about RSA is that Alice can create a public and a private key combination, and then send the public key over to Bob. And then afterward Bob can encrypt something using the public ...
4
votes
2answers
650 views

is this a correct way to generate rsa keys?

is this code going to give me correct values for RSA keys (assuming that the other functions are correct)? im having trouble getting my program to decrypt properly, as in certain blocks are not ...
4
votes
2answers
280 views

Maven won't use public key to deploy

I'm using SSH to deploy my Java artifacts to a server. I have the keys set up so that I can interactively SSH to the server without requiring a password, but when I try to run the "mvn deploy" or "mvn ...
3
votes
1answer
246 views

Jsch with spongycastle rather than bouncycastle on Android

I currently have an Android application connecting to my router via ssh using a password. I'm looking to improve this so I can use keys but I am having real issues. From what I understand the version ...
3
votes
2answers
525 views

How do I read the public key from a signed C# exe

I'm signing a dot net exe using signcode.exe with an spc/pvk combo The file needs to read its own Public Key at runtime in order to verify some data. I've gone down a number of different avenues. ...
3
votes
2answers
1k views

Ruby - hosting private gems

By any chance, is there any place it's possible to host private ruby gems? So I could allow it to be pulled only for specific places by using public key or something like that? Thanks
3
votes
7answers
289 views

Most Effective Public Key Encryption Method

There seems to be a lot of hype about asymmetric Public Key encryption. RSA, PGP... etc. You have a set of two keys and distribute one, so that either only you can encrypt the message or only you can ...
3
votes
1answer
1k views

Setup SFTP to use public-key authentication

How do you setup server to server SFTP to use public-key authentication instead of user account and password?
3
votes
3answers
2k views

How to communicate AES initialization Vector to client for hybrid cryptosystem

I need to implemented security for client-server communication. I have implemented the following hybrid cryptosystem: http://en.wikipedia.org/wiki/Hybrid%5Fcryptosystem To encrypt a message addressed ...
3
votes
3answers
306 views

How secure is this architecture?

I'm building a system that need to collect some user sensitive data via secured web connection, store it securely on the server for later automated decryption and reuse. System should also allow user ...
3
votes
3answers
1k views

python+encryption: Encrypting session key using public key

I want to encrypt the session key using the public key. How does the PGP software do this? Can somebody specify the procedure or function of encryption in Python?
3
votes
2answers
5k views

Any tutorials on public key encryption in java?

I've been able find information on symmetric encryption and hashing but I've been having quite a bit of trouble finding much information on any sort of public key encryption for java. What I'd like to ...
2
votes
1answer
36 views

Cheap SSL vs Expensive SSL

I was wondering what is the different between SSL certificate from verisign, http://www.verisign.com/ssl/buy-ssl-certificates/compare-ssl-certificates/index.html which is expensive , and a ...
2
votes
2answers
78 views

Change encryption key without exposing plaintext

We're designing a database system to store encrypted strings of information, with encryption and decryption performed client side using public-key cryptography. If the key was ever changed though, ...
2
votes
1answer
153 views

Public key accepted with SSH, fails with git

I am using gitosis for repository management. I have two other keys that work perfectly. I've recently added a third key. All keys work when I SSH into the machine (I get the error mentioned here ...
2
votes
1answer
109 views

Sign string using given Public Key

how can I get the signature of a String using SHA1withRSA if I already have the Public Key as byte[] or String ? Thanks.
2
votes
4answers
104 views

What is the public key used for when working with Git?

I'm naive to Git and Linux/SSH so my question is what is the public key is used for? Nam. Update Thanks for @emboss as below answer. What I'm looking for is that the server need to verify a git ...
2
votes
1answer
572 views

Private key, access Gitolite repository for Netbeans on Win XP

Where to put private key to have access to Gitolite repository form Netbeans 7 ? I have created a Public/Private key pair and did all the Gitolite configurations as described here. However I don't ...
2
votes
3answers
372 views

c# RSA extract public key from private key

Is there a way to extract public key from private key in c#? Becouse if i do ToXMLString() then i can set if i want public key information saved with the private key. So now im thinking that is there ...
2
votes
5answers
132 views

public key for encryption; private key for de-cryption?

I understand that private and public keys are mathematically related and data encrypted with one key can only be decrpyted with other. My question is that private key is always used to encrypt data ...
2
votes
1answer
479 views

connecting to server through SSH using public key

I am working on one iPhone application on which we need to use SSH integration. I have demo that can connect server with password, but i can't get how to connect that using public key. I can connect ...
2
votes
4answers
2k views

openssl_pkey_get_public not open public key, “no start line” error

When generating public key and then reading it with function openssl_pkey_get_public - $publicKeyResource = bool(false) and message: error:0906D06C:PEM routines:PEM_read_bio:no start line $privateKey ...
2
votes
4answers
419 views

How to prevent a man-in-the-middle attack in case of a compromised server?

Imagine that a server is serving public keys of the users to their partners to make encrypted communication possible. However, the server does NOT have access to the private keys.. Anyway - imagine ...
2
votes
6answers
3k views

Convert RSA public key, from XML to PEM (PHP)

How convert RSA public key, from XML to PEM (PHP)?
2
votes
1answer
433 views

What's the use of the Public and Private key for reCAPTCHA?

reCAPTCHA requires a public and a private key before it can be implemented into a website. It also needs the reCAPTCHA keys depending on the website. What's the reason behind this? Does the Public and ...
2
votes
1answer
248 views

Storage of private and public key in MySQL-DB

Probably somebody asked that already, but I couldn't find any usefull information and I've never done it before. So here is the problem. If I'll get a set of key pairs (DSA public and private keys) ...
2
votes
2answers
498 views

Decrypt data using an RSA public key

First off, that is not a typo, I want to decrypt using a public key. The purpose for doing this is to challenge a third party to ensure they do, in fact, have the private key that corresponds to the ...
2
votes
3answers
1k views

Getting the PublicKeyToken of .Net assemblies

What is the simplest way to find the Public Key Token of an assembly? The simplest way i can think of would be a simple right-click, get public key, but this fonctionnality isn't there, maybe there ...
2
votes
1answer
729 views

Generating an RSA Key Pair with Erlang?

Erlang has a crypto function which generates public private keys (documentation copied below). However the documentation seems vague and I can't find any example code that describes how to generate ...
2
votes
3answers
6k views

git push heroku master permission denied on VISTA

(Using Vista)I'm trying to clone an app from my GitHub Repository and push it into Heroku. Okay, so I've tried to create an SSH key so many times with this: `ssh-keygen -t rsa` It seems to go ...
2
votes
2answers
4k views

iPhone: How to create a SecKeyRef from a public key file (PEM)

In order to send and receive encrypted messages from/to the iPhone I need to read a public key (server's public key) PEM file and create a SecKeyRef (later I could even store it on the keychain in ...
2
votes
3answers
12k views

Permission denied (publickey,keyboard-interactive) [closed]

I tried to connect to planetlab node using ssh. It throws me error like Permission denied (publickey,keyboard-interactive). What does this mean? Here is the verbose of the exception. > ...
2
votes
3answers
2k views

RSA Encryption public key not returned from container?

I feel like what I am trying to do is very simple. But for some reason it doesn't want to work: Here is a complete code snippet to test what I am trying to do: using System; using System.Xml; using ...
2
votes
3answers
600 views

Create a passwordless secondary ssh key for setting up a ssh tunnel

I need to create a script that automatically setup a ssh tunnel. I think that a dedicated ssh key without password is a good start but I couldn't find if this is possible and how to do it. This key ...
2
votes
2answers
1k views

Code golf: Diffie-Hellman key exchange

Back in the ITAR era, there was a popular sig that performed Diffie-Hellman key exchange: #!/usr/bin/perl -- -export-a-crypto-system-sig Diffie-Hellman-2-lines ($g,$e,$m)=@ARGV,$m||die"$0 gen exp ...
1
vote
3answers
30 views

Does comparing two assemblies' public keys ensure that they were signed with the same private key?

From other questions and articles I've read, it sounds as if a signed assembly has been tampered with, it's hash will be different and it will not be run. If that's true, then can I conclude that if ...

1 2 3