3
votes
3answers
152 views
How secure is this architecture?
Hi,
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. Syste …
1
vote
1answer
96 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 …
0
votes
3answers
256 views
OpenSSL and generating CSRs at client side
I need a favour from you. My infrastructure is IIS 6.0 and windows server 2003.
I need to investigate the use of OpenSSL and the construction of media that can be sent to end user …
0
votes
1answer
167 views
Permission denied (publickey,keyboard-interactive).
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 exceptio …
1
vote
3answers
126 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 …
2
votes
2answers
487 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;
usin …
0
votes
1answer
281 views
Verifying a signature in java using a certificates public key
I'm looking to convert some C# code to the equivalent in Java.
The C# code takes some string content, and a signature (generated using the private key, on a seperate machine) and …
1
vote
1answer
45 views
Find assembly’s public key via code
How can I find a .NET assembly's public key via code?
From the command line, I can use sn -Tp assemblyName to find the public key.
What's the equivalent (c# or VB) in code?
0
votes
4answers
134 views
public key crytography implementation
Hi Guys,
I have been using the PHP mcrypt module for encrypting sensitive data at my company. This has been working well. However, I have been requested to create a new master pas …
1
vote
3answers
224 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?
2
votes
5answers
234 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. C …
0
votes
1answer
85 views
Is SSH logging capabilities equivalent to su logging for private/public key authentication?
Here at work, we have a non-root shared login account on UNIX that is used to admin a particular application. The policy is to not allow direct logins to the shared account; you mu …
0
votes
6answers
483 views
Public key or Diffie-Hellman Key Exchange Algorithm
Consider and client server scenario and you got two options:
You can include Server's Public Key
in Client and perform the exchange.
You can use Diffie Hellman
KeyExchange Algori …
1
vote
3answers
144 views
Create a second ssh key
Hi,
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 …
0
votes
2answers
557 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 …
