| Thread | Last Post | Replies |
|
| Getting derived key from PBE | 22 Apr 2005 18:17 GMT | 1 |
Is there any way to access the DERIVED key (say a 3DES key) in J2SE and PBE? I think that although the internally derived IV is accessible, the derived key is not. Is that correct?
|
| Radius Authentication | 21 Apr 2005 13:50 GMT | 1 |
I'm looking for some Java code to authenticate against a Radius server. That is, the client code. Anyone info, or related links, would be great! Thanks.
|
| Generating the same SecretKey | 20 Apr 2005 06:03 GMT | 3 |
I'm tying to use Java's HMAC, and I'm having mixed success. On the one hand, I know how to compute the HMAC of for some message; on the other, I can't figure out how to share the key with others to have someone authenticate my message. The example I see everywhere is similar to the
|
| tomcat ignoring JDBC realm? | 20 Apr 2005 02:17 GMT | 4 |
I added a Realm tag to my tomcat server.xml file. Shouldn't that cause a dialog box to appear when I try to access the application? I don't have to do anything to my jsp code do I? Here is my server.xml:
|
| Newbie stuck with keytool but certificate appears valid | 19 Apr 2005 09:18 GMT | 1 |
I just started to play with certificates things, and I got stuck doing the first steps that any tutorial has. I'm running on a linux RH9 with JDK 1.4.2_08 if that matters. So I edited the openssl.cnf with some personal details, then I created a
|
| Problems with JSafeJCE with J2SE 5 | 15 Apr 2005 06:49 GMT | 4 |
I am using the JSafe library from RSA in order to add some encryption capability to an application. Currently facing problems in running in on JRE 1.5. It runs fine on JRE 1.4.2 Some details about usage of this library
|
| reading cerificate file | 13 Apr 2005 04:20 GMT | 1 |
How can I read a certificate into a java application? leo
|
| java policy | 13 Apr 2005 04:17 GMT | 1 |
We are trying to locate and edit the appropriate java.policy file that gets exercised on our server which has 1.50_02 installed and runs Apache 2.0. Our problem is we get a security acces exception whenever our applet tries to execute some code that attempts to do a System ...
|
| DER decoding from x.509 v3 certificate | 11 Apr 2005 13:12 GMT | 6 |
I need to read the extension field of a x.509 v3 certificate. I use the java method getExtensionValue(). The method return an array of bytes DER-encoded. I want to read it as a String and print it on screen. So I have to decode
|
| Decrypting with Cipher | 08 Apr 2005 16:00 GMT | 1 |
I have a client that encrypts a message and sends it to the server. I can encrypt fine: byte[] dataToSend = new byte[somelength]; /*fill dataToSend with some data*/
|
| Create custom socket | 06 Apr 2005 02:58 GMT | 3 |
I am trying to call Java SSL within a C program via JNI. The constraints/requirements are: 1) The socket is created inside the C program. Bound to a port but no accept() has been called yet.
|