summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cms/profile/common/CACertCAEnrollProfile.java
blob: cdaddef55287ec15c09342db5ff423ce37699039 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
// --- BEGIN COPYRIGHT BLOCK ---
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; version 2 of the License.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// (C) 2007 Red Hat, Inc.
// All rights reserved.
// --- END COPYRIGHT BLOCK ---
package com.netscape.cms.profile.common;

import com.netscape.certsrv.base.EBaseException;
import com.netscape.certsrv.base.IConfigStore;
import com.netscape.certsrv.common.NameValuePairs;
import com.netscape.certsrv.profile.IPolicyConstraint;
import com.netscape.certsrv.profile.IPolicyDefault;
import com.netscape.certsrv.profile.IProfileEx;
import com.netscape.certsrv.profile.IProfileInput;
import com.netscape.certsrv.profile.IProfileOutput;
import com.netscape.certsrv.profile.IProfilePolicy;

/**
 * This class implements a Certificate Manager enrollment
 * profile for CA Certificates.
 * 
 * @version $Revision$, $Date$
 */
public class CACertCAEnrollProfile extends CAEnrollProfile
        implements IProfileEx {

    /**
     * Called after initialization. It populates default
     * policies, inputs, and outputs.
     */
    public void populate() throws EBaseException {
        // create inputs
        NameValuePairs inputParams1 = new NameValuePairs();
        IProfileInput input1 =
                createProfileInput("i1", "certReqInputImpl", inputParams1);
        NameValuePairs inputParams2 = new NameValuePairs();
        IProfileInput input2 =
                createProfileInput("i2", "submitterInfoInputImpl", inputParams2);

        // create outputs 
        NameValuePairs outputParams1 = new NameValuePairs();
        IProfileOutput output1 =
                createProfileOutput("o1", "certOutputImpl", outputParams1);

        // create policies
        IProfilePolicy policy1 =
                createProfilePolicy("set1", "p1",
                        "userSubjectNameDefaultImpl", "noConstraintImpl");
        IPolicyDefault def1 = policy1.getDefault();
        IConfigStore defConfig1 = def1.getConfigStore();
        IPolicyConstraint con1 = policy1.getConstraint();
        IConfigStore conConfig1 = con1.getConfigStore();

        IProfilePolicy policy2 =
                createProfilePolicy("set1", "p2",
                        "validityDefaultImpl", "noConstraintImpl");
        IPolicyDefault def2 = policy2.getDefault();
        IConfigStore defConfig2 = def2.getConfigStore();
        defConfig2.putString("params.range", "180");
        defConfig2.putString("params.startTime", "0");
        IPolicyConstraint con2 = policy2.getConstraint();
        IConfigStore conConfig2 = con2.getConfigStore();

        IProfilePolicy policy3 =
                createProfilePolicy("set1", "p3",
                        "userKeyDefaultImpl", "noConstraintImpl");
        IPolicyDefault def3 = policy3.getDefault();
        IConfigStore defConfig3 = def3.getConfigStore();
        defConfig3.putString("params.keyType", "RSA");
        defConfig3.putString("params.keyMinLength", "512");
        defConfig3.putString("params.keyMaxLength", "4096");
        IPolicyConstraint con3 = policy3.getConstraint();
        IConfigStore conConfig3 = con3.getConfigStore();

        IProfilePolicy policy4 =
                createProfilePolicy("set1", "p4",
                        "signingAlgDefaultImpl", "noConstraintImpl");
        IPolicyDefault def4 = policy4.getDefault();
        IConfigStore defConfig4 = def4.getConfigStore();
        defConfig4.putString("params.signingAlg", "-");
        defConfig4.putString("params.signingAlgsAllowed",
                "SHA1withRSA,SHA256withRSA,SHA512withRSA,MD5withRSA,MD2withRSA,SHA256withEC,SHA384withEC,SHA512withEC");
        IPolicyConstraint con4 = policy4.getConstraint();
        IConfigStore conConfig4 = con4.getConfigStore();

        // extensions
        IProfilePolicy policy5 =
                createProfilePolicy("set1", "p5",
                        "keyUsageExtDefaultImpl", "noConstraintImpl");
        IPolicyDefault def5 = policy5.getDefault();
        IConfigStore defConfig5 = def5.getConfigStore();
        defConfig5.putString("params.keyUsageCritical", "true");
        defConfig5.putString("params.keyUsageCrlSign", "true");
        defConfig5.putString("params.keyUsageDataEncipherment", "false");
        defConfig5.putString("params.keyUsageDecipherOnly", "false");
        defConfig5.putString("params.keyUsageDigitalSignature", "true");
        defConfig5.putString("params.keyUsageEncipherOnly", "false");
        defConfig5.putString("params.keyUsageKeyAgreement", "false");
        defConfig5.putString("params.keyUsageKeyCertSign", "true");
        defConfig5.putString("params.keyUsageKeyEncipherment", "false");
        defConfig5.putString("params.keyUsageNonRepudiation", "true");
        IPolicyConstraint con5 = policy5.getConstraint();
        IConfigStore conConfig5 = con5.getConfigStore();

        IProfilePolicy policy6 =
                createProfilePolicy("set1", "p6",
                        "basicConstraintsExtDefaultImpl", "noConstraintImpl");
        IPolicyDefault def6 = policy6.getDefault();
        IConfigStore defConfig6 = def6.getConfigStore();
        defConfig6.putString("params.basicConstraintsPathLen", "-1");
        defConfig6.putString("params.basicConstraintsIsCA", "true");
        defConfig6.putString("params.basicConstraintsPathLen", "-1");
        IPolicyConstraint con6 = policy6.getConstraint();
        IConfigStore conConfig6 = con6.getConfigStore();
    }
}