HomeSort by relevance Sort by last modified time
    Searched refs:authenticatedAttributes (Results 1 - 2 of 2) 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...]

Completed in 59 milliseconds