JVM Languages
jca.txt
Associated article: Java Security Architecture and Extensions
Tags: Security JVM Languages
Published source code accompanying the article by Volker Roth in which he examines the Java Cryptography Architecture framework that provides a common interface for accessing basic cryptographic primitives. Also see JCA.ZIP.
Java Security Architecture and Extensions
by Volker Roth
Listing One
AlgorithmIdentifier ::= SEQUENCE {
algorithm OBJECT IDENTIFIER,
parameters ANY DEFINED BY algorithm OPTIONAL
}
Listing Two
SignerInfo ::= SEQUENCE {
version Version,
issuerAndSerialNumber IssuerAndSerialNumber,
digestAlgorithm DigestAlgorithmIdentifier,
authenticatedAttributes [0] IMPLICIT Attributes OPTIONAL,
digestEncryptionAlgorithm DigestEncryptionAlgorithmIdentifier,
encryptedDigest EncryptedDigest,
unauthenticatedAttributes [1] ...


