cryptacular
cryptacular copied to clipboard
The friendly complement to the BouncyCastle crypto API for Java.
Define simple API for extensible ciphertext header versioning.
**What's New?** - Refactored asn package to decoder (as it does more than ASN now) - Added decoder for SSH2 RSA & DSA public keys (RFC-4253) - Added PemReader which...
Are there plans for Cryptacular to interface with the Bouncy Castle FIPS 140 validate Java modules? See these links for more information: https://www.bouncycastle.org/fips-java/ https://www.bouncycastle.org/fips/BCFipsDescription-20150728.pdf
In KeyPairUtil class at lines 286, 346, 457 and in CertUtil class at lines 214, 227, 274, 289 InputStream is opened and I can not see to be closed.
Testing with Java 7, Cryptacular 1.1.1, Apache Commons Daemon 1.0.15. Building with Gradle 2.14.1. Without Cryptacular the application starts up as expected. But if I add the dependency to my...
PemUtil currently only supports RFC-1421 and RFC-2440 formats, implement support for RFC-4716 to be able to read SSH2 public keys.
KeyPairUtil should support reading OpenSSH format (.pub) for public keys.
Currently, the implementation assigns 'end-entity-cert' as the default alias name. Enhance the functionality to allow users to specify a custom alias name. Retain 'end-entity-cert' as the default alias if no...
Adds the following useful methods to CertUtil: 1. encodeCert - produce the PEM-encoding given an X509Certificate object 2. subjectDN - produce a string version of the subject of the given...
Provides support for both PEM and binary encodings per RFC 4253. Resolves #69