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 33 * authenticatedAttributes is a set of attributes that are signed (i.e., authenticated) by the signer
35 class AuthenticatedAttributes {
37 private List authenticatedAttributes;
39 public AuthenticatedAttributes(byte[] encoding, List authenticatedAttributes) {
41 this.authenticatedAttributes = authenticatedAttributes;
44 return authenticatedAttributes;
48 * Returns ASN.1 encoded form of this authenticatedAttributes.
61 return new AuthenticatedAttributes(in.getEncoded()
    [all...]
SignerInfo.java 48 * authenticatedAttributes
65 private AuthenticatedAttributes authenticatedAttributes;
73 AuthenticatedAttributes authenticatedAttributes,
84 this.authenticatedAttributes = authenticatedAttributes;
111 if (authenticatedAttributes == null) {
114 return authenticatedAttributes.getAttributes();
118 if (authenticatedAttributes == null)
    [all...]

Completed in 227 milliseconds