blob: 17aeb89797c9ff57636bc6c6b7f26ec1c19bd890 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3 *
4 * This code is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License version 2 only, as
6 * published by the Free Software Foundation. Sun designates this
7 * particular file as subject to the "Classpath" exception as provided
8 * by Sun in the LICENSE file that accompanied this code.
9 *
10 * This code is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 * version 2 for more details (a copy is included in the LICENSE file that
14 * accompanied this code).
15 *
16 * You should have received a copy of the GNU General Public License version
17 * 2 along with this work; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19 *
20 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21 * CA 95054 USA or visit www.sun.com if you need additional information or
22 * have any questions.
23 */
24
25/*
26 *
27 * (C) Copyright IBM Corp. 1999 All Rights Reserved.
28 * Copyright 1997 The Open Group Research Institute. All rights reserved.
29 */
30
31package sun.security.krb5.internal;
32
33import sun.security.krb5.EncryptedData;
34import sun.security.krb5.Asn1Exception;
35import sun.security.util.*;
36import java.io.IOException;
37import java.math.BigInteger;
38
39/**
40 * Implements the ASN.1 AP-REP type.
41 *
42 * <xmp>
43 * AP-REP ::= [APPLICATION 15] SEQUENCE {
44 * pvno [0] INTEGER (5),
45 * msg-type [1] INTEGER (15),
46 * enc-part [2] EncryptedData -- EncAPRepPart
47 * }
48 * </xmp>
49 *
50 * <p>
51 * This definition reflects the Network Working Group RFC 4120
52 * specification available at
53 * <a href="http://www.ietf.org/rfc/rfc4120.txt">
54 * http://www.ietf.org/rfc/rfc4120.txt</a>.
55 */
56public class APRep {
57 public int pvno;
58 public int msgType;
59 public EncryptedData encPart;
60
61 public APRep(EncryptedData new_encPart) {
62 pvno = Krb5.PVNO;
63 msgType = Krb5.KRB_AP_REP;
64 encPart = new_encPart;
65 }
66
67 public APRep(byte[] data) throws Asn1Exception,
68 KrbApErrException, IOException {
69 init(new DerValue(data));
70 }
71
72 public APRep(DerValue encoding) throws Asn1Exception,
73 KrbApErrException, IOException {
74 init(encoding);
75 }
76
77 /**
78 * Initializes an APRep object.
79 * @param encoding a single DER-encoded value.
80 * @exception Asn1Exception if an error occurs while decoding an ASN1 encoded data.
81 * @exception IOException if an I/O error occurs while reading encoded data.
82 * @exception KrbApErrException if the value read from the DER-encoded data
83 * stream does not match the pre-defined value.
84 */
85 private void init(DerValue encoding) throws Asn1Exception,
86 KrbApErrException, IOException {
87
88 if (((encoding.getTag() & (byte)(0x1F)) != Krb5.KRB_AP_REP)
89 || (encoding.isApplication() != true)
90 || (encoding.isConstructed() != true))
91 throw new Asn1Exception(Krb5.ASN1_BAD_ID);
92 DerValue der = encoding.getData().getDerValue();
93 if (der.getTag() != DerValue.tag_Sequence)
94 throw new Asn1Exception(Krb5.ASN1_BAD_ID);
95 DerValue subDer = der.getData().getDerValue();
96 if ((subDer.getTag() & (byte)0x1F) != (byte)0x00)
97 throw new Asn1Exception(Krb5.ASN1_BAD_ID);
98 pvno = subDer.getData().getBigInteger().intValue();
99 if (pvno != Krb5.PVNO)
100 throw new KrbApErrException(Krb5.KRB_AP_ERR_BADVERSION);
101 subDer = der.getData().getDerValue();
102 if ((subDer.getTag() & (byte)0x1F) != (byte)0x01)
103 throw new Asn1Exception(Krb5.ASN1_BAD_ID);
104 msgType = subDer.getData().getBigInteger().intValue();
105 if (msgType != Krb5.KRB_AP_REP)
106 throw new KrbApErrException(Krb5.KRB_AP_ERR_MSG_TYPE);
107 encPart = EncryptedData.parse(der.getData(), (byte)0x02, false);
108 if (der.getData().available() > 0)
109 throw new Asn1Exception(Krb5.ASN1_BAD_ID);
110 }
111
112 /**
113 * Encodes an APRep object.
114 * @return byte array of encoded APRep object.
115 * @exception Asn1Exception if an error occurs while decoding an ASN1 encoded data.
116 * @exception IOException if an I/O error occurs while reading encoded data.
117 */
118 public byte[] asn1Encode() throws Asn1Exception, IOException {
119 DerOutputStream bytes = new DerOutputStream();
120 DerOutputStream temp = new DerOutputStream();
121 temp.putInteger(BigInteger.valueOf(pvno));
122 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x00), temp);
123 temp = new DerOutputStream();
124 temp.putInteger(BigInteger.valueOf(msgType));
125 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x01), temp);
126 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x02), encPart.asn1Encode());
127 temp = new DerOutputStream();
128 temp.write(DerValue.tag_Sequence, bytes);
129 DerOutputStream aprep = new DerOutputStream();
130 aprep.write(DerValue.createTag(DerValue.TAG_APPLICATION, true, (byte)0x0F), temp);
131 return aprep.toByteArray();
132 }
133
134}