break out struct ntlmv2_key;

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@19531 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-12-28 14:38:52 +00:00
parent 7f49c4ad56
commit d3a2df7306

View File

@@ -57,6 +57,13 @@
#include "crypto-headers.h"
struct ntlmv2_key {
uint32_t seq;
RC4_KEY sealkey;
RC4_KEY *signsealkey;
unsigned char signkey[16];
};
typedef struct {
krb5_context context;
krb5_ntlm ntlm;
@@ -80,12 +87,7 @@ typedef struct {
} crypto_send, crypto_recv;
} v1;
struct {
struct {
uint32_t seq;
RC4_KEY sealkey;
RC4_KEY *signsealkey;
unsigned char signkey[16];
} send, recv;
struct ntlmv2_key send, recv;
} v2;
} u;
} *ntlm_ctx;