Skip to content

Tag: openssl

CMS signature SHA1+RSA with PEM format – Java

I need to generate a CMS with SHA1+RSA detached signature in PEM format over a xml file input. I need to make this from Java code in runtime. I need to avoid the use of an external tool like OpenSSL. This is because we need invoke some services with the generated signature from Java and manage error properly …

Load RSA public key from file

I’ve generated a private key with: After this I’ve generated a public key with: I want to sign some messages with my private key, and verify some other messages with my public key, using code like this: I found a solution to convert my private key to PKCS8 format and load it. It works with some co…