Searched defs:authenticatedAttributes (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/org/apache/harmony/security/pkcs7/
H A DAuthenticatedAttributes.java32 * authenticatedAttributes is a set of attributes that are signed (i.e., authenticated) by the signer
36 private final List<AttributeTypeAndValue> authenticatedAttributes; field in class:AuthenticatedAttributes
39 List<AttributeTypeAndValue> authenticatedAttributes) {
41 this.authenticatedAttributes = authenticatedAttributes;
45 return authenticatedAttributes;
49 * Returns ASN.1 encoded form of this authenticatedAttributes.
38 AuthenticatedAttributes(byte[] encoding, List<AttributeTypeAndValue> authenticatedAttributes) argument
H A DSignerInfo.java48 * authenticatedAttributes
62 private final AuthenticatedAttributes authenticatedAttributes; field in class:SignerInfo
70 AuthenticatedAttributes authenticatedAttributes,
78 this.authenticatedAttributes = authenticatedAttributes;
101 if (authenticatedAttributes == null) {
104 return authenticatedAttributes.getAttributes();
108 if (authenticatedAttributes == null) {
111 return authenticatedAttributes.getEncoded();
131 if (authenticatedAttributes !
67 SignerInfo(int version, Object[] issuerAndSerialNumber, AlgorithmIdentifier digestAlgorithm, AuthenticatedAttributes authenticatedAttributes, AlgorithmIdentifier digestEncryptionAlgorithm, byte[] encryptedDigest, List<?> unauthenticatedAttributes) argument
[all...]

Completed in 145 milliseconds