Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/crypto/dist/krb4/lib/krb removed not-used files



details:   https://anonhg.NetBSD.org/src/rev/9f9815c73306
branches:  trunk
changeset: 515278:9f9815c73306
user:      assar <assar%NetBSD.org@localhost>
date:      Fri Sep 21 14:40:30 2001 +0000

description:
removed not-used files
noticed by Bernd Ernesti <netbsd%veego.de@localhost>

diffstat:

 crypto/dist/krb4/lib/krb/krb.h |  360 -----------------------------------------
 1 files changed, 0 insertions(+), 360 deletions(-)

diffs (truncated from 364 to 300 lines):

diff -r 66f73f27930c -r 9f9815c73306 crypto/dist/krb4/lib/krb/krb.h
--- a/crypto/dist/krb4/lib/krb/krb.h    Fri Sep 21 14:14:30 2001 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,360 +0,0 @@
-/*
- * $Id: krb.h,v 1.3 2001/02/04 18:04:03 christos Exp $
- *
- * Copyright 1987, 1988 by the Massachusetts Institute of Technology. 
- *
- * For copying and distribution information, please see the file
- * <mit-copyright.h>. 
- *
- * Include file for the Kerberos library. 
- */
-
-#if !defined (__STDC__) && !defined(_MSC_VER)
-#define const
-#define signed
-#endif
-
-#include <ktypes.h>
-#include <time.h>
-
-#ifndef __KRB_H__
-#define __KRB_H__
-
-/* XXX */
-#ifndef __BEGIN_DECLS
-#if defined(__cplusplus)
-#define        __BEGIN_DECLS   extern "C" {
-#define        __END_DECLS     };
-#else
-#define        __BEGIN_DECLS
-#define        __END_DECLS
-#endif
-#endif
-
-#if defined (__STDC__) || defined (_MSC_VER)
-#ifndef __P
-#define __P(x) x
-#endif
-#else
-#ifndef __P
-#define __P(x) ()
-#endif
-#endif
-
-__BEGIN_DECLS
-
-/* Need some defs from des.h    */
-#if !defined(NOPROTO) && !defined(__STDC__)
-#define NOPROTO
-#endif
-#include <des.h>
-
-/* CNS compatibility ahead! */
-#ifndef KRB_INT32
-#define KRB_INT32 int32_t
-#endif
-#ifndef KRB_UINT32
-#define KRB_UINT32 u_int32_t
-#endif
-
-/* Global library variables. */
-extern int krb_ignore_ip_address; /* To turn off IP address comparison */
-extern int krb_no_long_lifetimes; /* To disable AFS compatible lifetimes */
-extern int krbONE;
-#define         HOST_BYTE_ORDER (* (char *) &krbONE)
-/* Debug variables */
-extern int krb_debug;
-extern int krb_ap_req_debug;
-extern int krb_dns_debug;
-
-
-/* Text describing error codes */
-#define                MAX_KRB_ERRORS  256
-extern const char *krb_err_txt[MAX_KRB_ERRORS];
-
-/* General definitions */
-#define                KSUCCESS        0
-#define                KFAILURE        255
-
-/*
- * Kerberos specific definitions 
- *
- * KRBLOG is the log file for the kerberos master server. KRB_CONF is
- * the configuration file where different host machines running master
- * and slave servers can be found. KRB_MASTER is the name of the
- * machine with the master database.  The admin_server runs on this
- * machine, and all changes to the db (as opposed to read-only
- * requests, which can go to slaves) must go to it. KRB_HOST is the
- * default machine * when looking for a kerberos slave server.  Other
- * possibilities are * in the KRB_CONF file. KRB_REALM is the name of
- * the realm. 
- */
-
-/* /etc/kerberosIV is only for backwards compatibility, don't use it! */
-#ifndef KRB_CONF
-#define KRB_CONF       "/etc/krb.conf"
-#endif
-#ifndef KRB_RLM_TRANS
-#define KRB_RLM_TRANS   "/etc/krb.realms"
-#endif
-#ifndef KRB_CNF_FILES
-#define KRB_CNF_FILES  { KRB_CONF,   "/etc/kerberosIV/krb.conf", 0}
-#endif
-#ifndef KRB_RLM_FILES
-#define KRB_RLM_FILES  { KRB_RLM_TRANS, "/etc/kerberosIV/krb.realms", 0}
-#endif
-#ifndef KRB_EQUIV
-#define KRB_EQUIV      "/etc/krb.equiv"
-#endif
-#define KRB_MASTER     "kerberos"
-#ifndef KRB_REALM
-#define KRB_REALM      (krb_get_default_realm())
-#endif
-
-/* The maximum sizes for aname, realm, sname, and instance +1 */
-#define        ANAME_SZ        40
-#define                REALM_SZ        40
-#define                SNAME_SZ        40
-#define                INST_SZ         40
-/* Leave space for quoting */
-#define                MAX_K_NAME_SZ   (2*ANAME_SZ + 2*INST_SZ + 2*REALM_SZ - 3)
-#define                KKEY_SZ         100
-#define                VERSION_SZ      1
-#define                MSG_TYPE_SZ     1
-#define                DATE_SZ         26      /* RTI date output */
-
-#define MAX_HSTNM 100 /* for compatibility */
-
-typedef struct krb_principal{
-    char name[ANAME_SZ];
-    char instance[INST_SZ];
-    char realm[REALM_SZ];
-}krb_principal;
-
-#ifndef DEFAULT_TKT_LIFE       /* allow compile-time override */
-/* default lifetime for krb_mk_req & co., 10 hrs */
-#define        DEFAULT_TKT_LIFE 120
-#endif
-
-#define                KRB_TICKET_GRANTING_TICKET      "krbtgt"
-
-/* Definition of text structure used to pass text around */
-#define                MAX_KTXT_LEN    1250
-
-struct ktext {
-    unsigned int length;               /* Length of the text */
-    unsigned char dat[MAX_KTXT_LEN];   /* The data itself */
-    u_int32_t mbz;             /* zero to catch runaway strings */
-};
-
-typedef struct ktext *KTEXT;
-typedef struct ktext KTEXT_ST;
-
-
-/* Definitions for send_to_kdc */
-#define        CLIENT_KRB_TIMEOUT      4       /* default time between retries */
-#define CLIENT_KRB_RETRY       5       /* retry this many times */
-#define        CLIENT_KRB_BUFLEN       512     /* max unfragmented packet */
-
-/* Definitions for ticket file utilities */
-#define        R_TKT_FIL       0
-#define        W_TKT_FIL       1
-
-/* Parameters for rd_ap_req */
-/* Maximum alloable clock skew in seconds */
-#define        CLOCK_SKEW      5*60
-/* Filename for readservkey */
-#ifndef                KEYFILE
-#define                KEYFILE         (krb_get_default_keyfile())
-#endif
-
-/* Structure definition for rd_ap_req */
-
-struct auth_dat {
-    unsigned char k_flags;     /* Flags from ticket */
-    char    pname[ANAME_SZ];   /* Principal's name */
-    char    pinst[INST_SZ];    /* His Instance */
-    char    prealm[REALM_SZ];  /* His Realm */
-    u_int32_t checksum;                /* Data checksum (opt) */
-    des_cblock session;                /* Session Key */
-    int     life;              /* Life of ticket */
-    u_int32_t time_sec;                /* Time ticket issued */
-    u_int32_t address;         /* Address in ticket */
-    KTEXT_ST reply;            /* Auth reply (opt) */
-};
-
-typedef struct auth_dat AUTH_DAT;
-
-/* Structure definition for credentials returned by get_cred */
-
-struct credentials {
-    char    service[ANAME_SZ]; /* Service name */
-    char    instance[INST_SZ]; /* Instance */
-    char    realm[REALM_SZ];   /* Auth domain */
-    des_cblock session;                /* Session key */
-    int     lifetime;          /* Lifetime */
-    int     kvno;              /* Key version number */
-    KTEXT_ST ticket_st;                /* The ticket itself */
-    int32_t    issue_date;     /* The issue time */
-    char    pname[ANAME_SZ];   /* Principal's name */
-    char    pinst[INST_SZ];    /* Principal's instance */
-};
-
-typedef struct credentials CREDENTIALS;
-
-/* Structure definition for rd_private_msg and rd_safe_msg */
-
-struct msg_dat {
-    unsigned char *app_data;   /* pointer to appl data */
-    u_int32_t app_length;      /* length of appl data */
-    u_int32_t hash;            /* hash to lookup replay */
-    int     swap;              /* swap bytes? */
-    int32_t    time_sec;               /* msg timestamp seconds */
-    unsigned char time_5ms;    /* msg timestamp 5ms units */
-};
-
-typedef struct msg_dat MSG_DAT;
-
-struct krb_host {
-    char *realm;
-    char *host;
-    enum krb_host_proto { PROTO_UDP, PROTO_TCP, PROTO_HTTP } proto;
-    int port;
-    int admin;
-};
-
-/* Location of ticket file for save_cred and get_cred */
-#define TKT_FILE        tkt_string()
-#ifndef TKT_ROOT
-#define TKT_ROOT        (krb_get_default_tkt_root())
-#endif
-
-/* Error codes returned from the KDC */
-#define                KDC_OK          0       /* Request OK */
-#define                KDC_NAME_EXP    1       /* Principal expired */
-#define                KDC_SERVICE_EXP 2       /* Service expired */
-#define                KDC_AUTH_EXP    3       /* Auth expired */
-#define                KDC_PKT_VER     4       /* Protocol version unknown */
-#define                KDC_P_MKEY_VER  5       /* Wrong master key version */
-#define                KDC_S_MKEY_VER  6       /* Wrong master key version */
-#define                KDC_BYTE_ORDER  7       /* Byte order unknown */
-#define                KDC_PR_UNKNOWN  8       /* Principal unknown */
-#define                KDC_PR_N_UNIQUE 9       /* Principal not unique */
-#define                KDC_NULL_KEY   10       /* Principal has null key */
-#define                KDC_GEN_ERR    20       /* Generic error from KDC */
-
-
-/* Values returned by get_credentials */
-#define                GC_OK           0       /* Retrieve OK */
-#define                RET_OK          0       /* Retrieve OK */
-#define                GC_TKFIL       21       /* Can't read ticket file */
-#define                RET_TKFIL      21       /* Can't read ticket file */
-#define                GC_NOTKT       22       /* Can't find ticket or TGT */
-#define                RET_NOTKT      22       /* Can't find ticket or TGT */
-
-
-/* Values returned by mk_ap_req         */
-#define                MK_AP_OK        0       /* Success */
-#define                MK_AP_TGTEXP   26       /* TGT Expired */
-
-/* Values returned by rd_ap_req */
-#define                RD_AP_OK        0       /* Request authentic */
-#define                RD_AP_UNDEC    31       /* Can't decode authenticator */
-#define                RD_AP_EXP      32       /* Ticket expired */
-#define                RD_AP_NYV      33       /* Ticket not yet valid */
-#define                RD_AP_REPEAT   34       /* Repeated request */
-#define                RD_AP_NOT_US   35       /* The ticket isn't for us */
-#define                RD_AP_INCON    36       /* Request is inconsistent */
-#define                RD_AP_TIME     37       /* delta_t too big */
-#define                RD_AP_BADD     38       /* Incorrect net address */
-#define                RD_AP_VERSION  39       /* protocol version mismatch */
-#define                RD_AP_MSG_TYPE 40       /* invalid msg type */
-#define                RD_AP_MODIFIED 41       /* message stream modified */
-#define                RD_AP_ORDER    42       /* message out of order */
-#define                RD_AP_UNAUTHOR 43       /* unauthorized request */
-
-/* Values returned by get_pw_tkt */
-#define                GT_PW_OK        0       /* Got password changing tkt */
-#define                GT_PW_NULL     51       /* Current PW is null */
-#define                GT_PW_BADPW    52       /* Incorrect current password */
-#define                GT_PW_PROT     53       /* Protocol Error */
-#define                GT_PW_KDCERR   54       /* Error returned by KDC */
-#define                GT_PW_NULLTKT  55       /* Null tkt returned by KDC */
-
-
-/* Values returned by send_to_kdc */
-#define                SKDC_OK         0       /* Response received */
-#define                SKDC_RETRY     56       /* Retry count exceeded */
-#define                SKDC_CANT      57       /* Can't send request */
-
-/*
- * Values returned by get_intkt
- * (can also return SKDC_* and KDC errors)
- */
-
-#define                INTK_OK         0       /* Ticket obtained */
-#define                INTK_W_NOTALL  61       /* Not ALL tickets returned */



Home | Main Index | Thread Index | Old Index