blob: 39e5a252db0e384451232a90e57469218110f16e [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.kerby.cms.type;
import org.apache.kerby.asn1.Asn1FieldInfo;
import org.apache.kerby.asn1.EnumType;
import org.apache.kerby.asn1.type.Asn1SequenceType;
import org.apache.kerby.asn1.ImplicitField;
import static org.apache.kerby.cms.type.SignedData.MyEnum.*;
/**
* Ref. RFC 5652
* <pre>
* SignedData ::= SEQUENCE {
* version CMSVersion,
* digestAlgorithms DigestAlgorithmIdentifiers,
* encapContentInfo EncapsulatedContentInfo,
* certificates [0] IMPLICIT CertificateSet OPTIONAL,
* crls [1] IMPLICIT RevocationInfoChoices OPTIONAL,
* signerInfos SignerInfos
* }
* </pre>
*
*/
public class SignedData extends Asn1SequenceType {
protected static enum MyEnum implements EnumType {
CMS_VERSION,
DIGEST_ALGORITHMS,
ENCAP_CONTENT_INFO,
CERTIFICATES,
CRLS,
SIGNER_INFOS;
@Override
public int getValue() {
return ordinal();
}
@Override
public String getName() {
return name();
}
}
static Asn1FieldInfo[] fieldInfos = new Asn1FieldInfo[]{
new Asn1FieldInfo(CMS_VERSION, CmsVersion.class),
new Asn1FieldInfo(DIGEST_ALGORITHMS, DigestAlgorithmIdentifiers.class),
new Asn1FieldInfo(ENCAP_CONTENT_INFO, EncapsulatedContentInfo.class),
new ImplicitField(CERTIFICATES, 0, CertificateSet.class),
new ImplicitField(CRLS, 1, RevocationInfoChoices.class),
new Asn1FieldInfo(SIGNER_INFOS, SignerInfos.class)
};
public SignedData() {
super(fieldInfos);
}
public int getVersion() {
return getFieldAsInteger(CMS_VERSION);
}
public void setVersion(int version) {
setFieldAsInt(CMS_VERSION, version);
}
public DigestAlgorithmIdentifiers getDigestAlgorithms() {
return getFieldAs(DIGEST_ALGORITHMS, DigestAlgorithmIdentifiers.class);
}
public void setDigestAlgorithms(DigestAlgorithmIdentifiers digestAlgorithms) {
setFieldAs(DIGEST_ALGORITHMS, digestAlgorithms);
}
public EncapsulatedContentInfo getEncapContentInfo() {
return getFieldAs(ENCAP_CONTENT_INFO, EncapsulatedContentInfo.class);
}
public void setEncapContentInfo(EncapsulatedContentInfo contentInfo) {
setFieldAs(ENCAP_CONTENT_INFO, contentInfo);
}
public CertificateSet getCertificates() {
return getFieldAs(CERTIFICATES, CertificateSet.class);
}
public void setCertificates(CertificateSet certificates) {
setFieldAs(CERTIFICATES, certificates);
}
public RevocationInfoChoices getCrls() {
return getFieldAs(CRLS, RevocationInfoChoices.class);
}
public void setCrls(RevocationInfoChoices crls) {
setFieldAs(CRLS, crls);
}
public SignerInfos getSignerInfos() {
return getFieldAs(SIGNER_INFOS, SignerInfos.class);
}
public void setSignerInfos(SignerInfos signerInfos) {
setFieldAs(SIGNER_INFOS, signerInfos);
}
}