Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/sun/security/krb5/PAData.java
38838 views
1
/*
2
* Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
/*
24
* @test
25
* @bug 6570062
26
* @summary Kerberos authentication regression
27
*/
28
29
import sun.security.krb5.internal.KRBError;
30
import sun.security.krb5.internal.Krb5;
31
import sun.security.util.DerValue;
32
33
public class PAData {
34
public static void main(String[] args) throws Exception {
35
// This is the dump of a KRB-ERROR data, no sensitive info included.
36
byte[] bytes = {
37
(byte)0X7E, (byte)0X71, (byte)0X30, (byte)0X6F,
38
(byte)0XA0, (byte)0X03, (byte)0X02, (byte)0X01,
39
(byte)0X05, (byte)0XA1, (byte)0X03, (byte)0X02,
40
(byte)0X01, (byte)0X1E, (byte)0XA4, (byte)0X11,
41
(byte)0X18, (byte)0X0F, (byte)0X32, (byte)0X30,
42
(byte)0X30, (byte)0X37, (byte)0X30, (byte)0X36,
43
(byte)0X32, (byte)0X31, (byte)0X32, (byte)0X31,
44
(byte)0X30, (byte)0X32, (byte)0X34, (byte)0X33,
45
(byte)0X5A, (byte)0XA5, (byte)0X05, (byte)0X02,
46
(byte)0X03, (byte)0X0A, (byte)0XC8, (byte)0XC5,
47
(byte)0XA6, (byte)0X03, (byte)0X02, (byte)0X01,
48
(byte)0X12, /* The errorcode at bytes[44] */
49
(byte)0XA9, (byte)0X0A, (byte)0X1B,
50
(byte)0X08, (byte)0X4E, (byte)0X33, (byte)0X2E,
51
(byte)0X4C, (byte)0X4F, (byte)0X43, (byte)0X41,
52
(byte)0X4C, (byte)0XAA, (byte)0X1D, (byte)0X30,
53
(byte)0X1B, (byte)0XA0, (byte)0X03, (byte)0X02,
54
(byte)0X01, (byte)0X02, (byte)0XA1, (byte)0X14,
55
(byte)0X30, (byte)0X12, (byte)0X1B, (byte)0X06,
56
(byte)0X6B, (byte)0X72, (byte)0X62, (byte)0X74,
57
(byte)0X67, (byte)0X74, (byte)0X1B, (byte)0X08,
58
(byte)0X4E, (byte)0X33, (byte)0X2E, (byte)0X4C,
59
(byte)0X4F, (byte)0X43, (byte)0X41, (byte)0X4C,
60
(byte)0XAC, (byte)0X19, (byte)0X04, (byte)0X17,
61
(byte)0X30, (byte)0X15, (byte)0XA1, (byte)0X03,
62
(byte)0X02, (byte)0X01, (byte)0X03, (byte)0XA2,
63
(byte)0X0E, (byte)0X04, (byte)0X0C, (byte)0X72,
64
(byte)0X00, (byte)0X00, (byte)0XC0, (byte)0X00,
65
(byte)0X00, (byte)0X00, (byte)0X00, (byte)0X01,
66
(byte)0X00, (byte)0X00, (byte)0X00
67
};
68
String err = "";
69
70
try {
71
new KRBError(new DerValue(bytes));
72
} catch (Exception e) {
73
err += "Test 1 fails.\n";
74
}
75
76
try {
77
bytes[44] = Krb5.KDC_ERR_PREAUTH_REQUIRED;
78
new KRBError(new DerValue(bytes));
79
err += "Test 2 fails.\n";
80
} catch (Exception e) {
81
// correct bahavior
82
}
83
if (err != "") {
84
throw new Exception(err);
85
}
86
}
87
}
88
89