0N/A/*
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/A/*
0N/A *
0N/A * (C) Copyright IBM Corp. 1999 All Rights Reserved.
0N/A * Copyright 1997 The Open Group Research Institute. All rights reserved.
0N/A */
0N/A
0N/Apackage sun.security.krb5.internal;
0N/A
0N/Aimport sun.security.util.*;
0N/Aimport java.io.IOException;
0N/A
0N/A/**
0N/A * Implements the ASN.1 KDCOptions type.
0N/A *
0N/A * <xmp>
0N/A * KDCOptions ::= KerberosFlags
0N/A * -- reserved(0),
0N/A * -- forwardable(1),
0N/A * -- forwarded(2),
0N/A * -- proxiable(3),
0N/A * -- proxy(4),
0N/A * -- allow-postdate(5),
0N/A * -- postdated(6),
0N/A * -- unused7(7),
0N/A * -- renewable(8),
0N/A * -- unused9(9),
0N/A * -- unused10(10),
0N/A * -- opt-hardware-auth(11),
0N/A * -- unused12(12),
0N/A * -- unused13(13),
0N/A * -- 15 is reserved for canonicalize
0N/A * -- unused15(15),
0N/A * -- 26 was unused in 1510
0N/A * -- disable-transited-check(26),
0N/A * -- renewable-ok(27),
0N/A * -- enc-tkt-in-skey(28),
0N/A * -- renew(30),
0N/A * -- validate(31)
0N/A *
0N/A * KerberosFlags ::= BIT STRING (SIZE (32..MAX))
0N/A * -- minimum number of bits shall be sent,
0N/A * -- but no fewer than 32
0N/A * </xmp>
0N/A *
0N/A * <p>
0N/A * This definition reflects the Network Working Group RFC 4120
0N/A * specification available at
0N/A * <a href="http://www.ietf.org/rfc/rfc4120.txt">
0N/A * http://www.ietf.org/rfc/rfc4120.txt</a>.
0N/A */
0N/A
0N/Apublic class LoginOptions extends KDCOptions {
0N/A
0N/A // Login Options
0N/A
0N/A public static final int RESERVED = 0;
0N/A public static final int FORWARDABLE = 1;
0N/A public static final int PROXIABLE = 3;
0N/A public static final int ALLOW_POSTDATE = 5;
0N/A public static final int RENEWABLE = 8;
0N/A public static final int RENEWABLE_OK = 27;
0N/A public static final int ENC_TKT_IN_SKEY = 28;
0N/A public static final int RENEW = 30;
0N/A public static final int VALIDATE = 31;
0N/A public static final int MAX = 31;
0N/A
0N/A}