Monday, February 6, 2012 7:18

Posts Tagged ‘Security’

RSA DER Key generated by Java

Monday, August 2, 2010 12:56

We can use the normal java way to generate RSA key. (for security reason, we'd betterĀ  generate 2048 bytes RSA key) But the problem is the most popular way to store RSA key is keeping them as DER format. You can get some detailed info below: http://www.cryptosys.net/pki/rsakeyformats.html Also if you want the java code ...

This was posted under category: Java  |  Read Full Story  |  0 Comments

Encryt file in java

Thursday, November 13, 2008 22:12

We can use both Key and Password to encryt file. Use the Key I rewrited the DESEncryptUtil got from internet. PBE the third party utility - Jasypt is used to encrypt/decryt ...

This was posted under category: Java  |  Read Full Story  |  0 Comments