HomeSort by relevance Sort by last modified time
    Searched full:authenticatedattributes (Results 1 - 4 of 4) sorted by null

  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs7/
AuthenticatedAttributes.java 32 * authenticatedAttributes is a set of attributes that are signed (i.e., authenticated) by the signer
34 final class AuthenticatedAttributes {
36 private final List<AttributeTypeAndValue> authenticatedAttributes;
38 private AuthenticatedAttributes(byte[] encoding,
39 List<AttributeTypeAndValue> authenticatedAttributes) {
41 this.authenticatedAttributes = authenticatedAttributes;
45 return authenticatedAttributes;
49 * Returns ASN.1 encoded form of this authenticatedAttributes.
61 return new AuthenticatedAttributes(in.getEncoded()
    [all...]
SignerInfo.java 48 * authenticatedAttributes
62 private final AuthenticatedAttributes authenticatedAttributes;
70 AuthenticatedAttributes authenticatedAttributes,
78 this.authenticatedAttributes = authenticatedAttributes;
101 if (authenticatedAttributes == null) {
104 return authenticatedAttributes.getAttributes();
108 if (authenticatedAttributes == null)
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/pkcs7/
AuthenticatedAttributesTest.java 40 // AuthenticatedAttributes is not public and can be created
46 assertNotNull("Decoded AuthenticatedAttributes is null",
48 assertEquals("Decoded AuthenticatedAttributes size is incorrect",
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
JarUtils.java 141 // If the authenticatedAttributes field of SignerInfo contains more than zero attributes,
154 // If the authenticatedAttributes field contains the message-digest attribute,

Completed in 732 milliseconds