0
votes
1answer
26 views
Importing a private-public exchange key pair
Hi
I want to export a RSA 1024 private-public exchange key pair from Machine-1 to Machine-2. I am using cryptoAPI in XP.
In Machine-1, i generated the key pair. I wrapped a sessi …
1
vote
2answers
34 views
Registering multiple keystores in JVM
Hello,
I have two applications running in the same java virtual machine, and both use different keystores and truststores.
A viable option would be use a single keystore and impo …
0
votes
1answer
18 views
how to read a RSA public key from a pem file OR xml file
Hello,
I have a simple thing to do : I want to encryt data using AES algorythm and a key contained in a pem file, like shown on the page : http://msdn.microsoft.com/en-us/librar …
0
votes
1answer
38 views
AES 256 in CTR mode
ctr mode makes it possible to use a block cipher as a stream cipher but how strong will be the encryption in this mode ?
1
vote
3answers
45 views
Is it possible to use AES with an IV in ECB mode?
From http://php.net/manual/en/function.mcrypt-encrypt.php, I saw the following codes using AES with an IV in ECB mode,
<?php
$iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_2 …
0
votes
0answers
26 views
How does this PHP nonce library work?
From http://fullthrottledevelopment.com/php-nonce-library#download, there is a PHP nonce library, but there are a few things that I don't know understand. The first one is that it …
1
vote
3answers
69 views
How should I generate an initialization vector?
I'm sure there's not one answer to this question, but just trying to find out a general approach.
Using Java 1.4.2, I need to generate a key and IV for use in a symmetric algorith …
1
vote
1answer
103 views
Digitially Sign Key with Lockbox
I have to digitally sign a string using the SHA-1 algorithm with RSA using PKCS#1 padding. I have downloaded Turbo Power Lockbox to use with the Delphi programming language.
In a …
2
votes
1answer
83 views
Reading Private Key in PEM format with LockBox
I have to digitally sign a string using the SHA-1 algorithm with RSA using PKCS#1 padding. I have downloaded Turbo Power Lockbox.
The private key I have is in PEM format and was …
0
votes
2answers
52 views
Generate all combinations of a char array inside of a CUDA __device__ kernel
Hi,
I need help please. I started to program a common brute forcer / password guesser with CUDA (2.3 / 3.0beta).
I tried different ways to generate all possible plain text "candid …
1
vote
2answers
43 views
Dealing with Generator Matrices
I am currently working on some Java code using the book Error Control Coding: Fundamentals and Applications and can encode well. However, I am using pre-determined values set in th …
3
votes
10answers
188 views
Can two different strings generate the same MD5 hash code?
For each of our binary assets we generate a MD5 hash. This is used to check whether a certain binary asset is already in our application. But is it possible that two different bina …
0
votes
2answers
27 views
Illegalkeysize exception
I am using the Bouncy Castle Java cryptographic algorithm implementation.
I am getting an IllegalKeySizeException. To overcome this I have even changed my java security jars (local …
6
votes
7answers
182 views
Is forcing complex passwords “more important” than salting?
I've spent the past 2 hours reading up on salting passwords, making sure that I understood the idea. I was hoping some of you could share your knowledge on my conclusions.
Say th …
2
votes
3answers
97 views
whats happening in the line of code
whats happening in this line of code ?
SecretKeyFactory factory = SecretKeyFactory.getInstance("PBKDF2WithHmacSHA1");
i specially dont understand getInstance("PBKDF2WithHmacSHA1 …
