rxkad.c (d1da4e50e5d09f02c340927a4fcb7f54202fa033) | rxkad.c (b1bdb691c3c38b4fbaf99fa8474f5cfa99b2d774) |
---|---|
1/* Kerberos-based RxRPC security 2 * 3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. 4 * Written by David Howells (dhowells@redhat.com) 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version --- 4 unchanged lines hidden (view full) --- 13#include <linux/net.h> 14#include <linux/skbuff.h> 15#include <linux/udp.h> 16#include <linux/crypto.h> 17#include <linux/scatterlist.h> 18#include <linux/ctype.h> 19#include <net/sock.h> 20#include <net/af_rxrpc.h> | 1/* Kerberos-based RxRPC security 2 * 3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. 4 * Written by David Howells (dhowells@redhat.com) 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version --- 4 unchanged lines hidden (view full) --- 13#include <linux/net.h> 14#include <linux/skbuff.h> 15#include <linux/udp.h> 16#include <linux/crypto.h> 17#include <linux/scatterlist.h> 18#include <linux/ctype.h> 19#include <net/sock.h> 20#include <net/af_rxrpc.h> |
21#define rxrpc_debug rxkad_debug |
|
21#include "ar-internal.h" 22 23#define RXKAD_VERSION 2 24#define MAXKRB5TICKETLEN 1024 25#define RXKAD_TKT_TYPE_KERBEROS_V5 256 26#define ANAME_SZ 40 /* size of authentication name */ 27#define INST_SZ 40 /* size of principal's instance */ 28#define REALM_SZ 40 /* size of principal's auth domain */ --- 1125 unchanged lines hidden --- | 22#include "ar-internal.h" 23 24#define RXKAD_VERSION 2 25#define MAXKRB5TICKETLEN 1024 26#define RXKAD_TKT_TYPE_KERBEROS_V5 256 27#define ANAME_SZ 40 /* size of authentication name */ 28#define INST_SZ 40 /* size of principal's instance */ 29#define REALM_SZ 40 /* size of principal's auth domain */ --- 1125 unchanged lines hidden --- |