1613a2f6bSGordon Ross /* 2613a2f6bSGordon Ross * CDDL HEADER START 3613a2f6bSGordon Ross * 4613a2f6bSGordon Ross * The contents of this file are subject to the terms of the 5613a2f6bSGordon Ross * Common Development and Distribution License (the "License"). 6613a2f6bSGordon Ross * You may not use this file except in compliance with the License. 7613a2f6bSGordon Ross * 8613a2f6bSGordon Ross * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9613a2f6bSGordon Ross * or http://www.opensolaris.org/os/licensing. 10613a2f6bSGordon Ross * See the License for the specific language governing permissions 11613a2f6bSGordon Ross * and limitations under the License. 12613a2f6bSGordon Ross * 13613a2f6bSGordon Ross * When distributing Covered Code, include this CDDL HEADER in each 14613a2f6bSGordon Ross * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15613a2f6bSGordon Ross * If applicable, add the following below this CDDL HEADER, with the 16613a2f6bSGordon Ross * fields enclosed by brackets "[]" replaced with your own identifying 17613a2f6bSGordon Ross * information: Portions Copyright [yyyy] [name of copyright owner] 18613a2f6bSGordon Ross * 19613a2f6bSGordon Ross * CDDL HEADER END 20613a2f6bSGordon Ross */ 21613a2f6bSGordon Ross 22613a2f6bSGordon Ross /* 23613a2f6bSGordon Ross * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 24613a2f6bSGordon Ross * Use is subject to license terms. 25*85e6b674SGordon Ross * Copyright 2013 Nexenta Systems, Inc. All rights reserved. 26613a2f6bSGordon Ross */ 27613a2f6bSGordon Ross 28613a2f6bSGordon Ross #ifndef _NTLM_H 29613a2f6bSGordon Ross #define _NTLM_H 30613a2f6bSGordon Ross 31613a2f6bSGordon Ross /* 32613a2f6bSGordon Ross * NTLM support functions 33613a2f6bSGordon Ross * See ntlm.c 34613a2f6bSGordon Ross */ 35613a2f6bSGordon Ross 36613a2f6bSGordon Ross /* 37613a2f6bSGordon Ross * Size of all LM/NTLM hashes, challenge 38613a2f6bSGordon Ross * NTLM_HASH_SZ: 16 bytes (see smb_lib.h) 39613a2f6bSGordon Ross * NTLM_CHAL_SZ: 8 bytes (see smb_lib.h) 40613a2f6bSGordon Ross */ 41613a2f6bSGordon Ross #define NTLM_V1_RESP_SZ 24 /* response size */ 42613a2f6bSGordon Ross 43613a2f6bSGordon Ross #define NAMETYPE_EOL 0x0000 /* end of list of names */ 44613a2f6bSGordon Ross #define NAMETYPE_MACHINE_NB 0x0001 /* NetBIOS machine name */ 45613a2f6bSGordon Ross #define NAMETYPE_DOMAIN_NB 0x0002 /* NetBIOS domain name */ 46613a2f6bSGordon Ross #define NAMETYPE_MACHINE_DNS 0x0003 /* DNS machine name */ 47613a2f6bSGordon Ross #define NAMETYPE_DOMAIN_DNS 0x0004 /* DNS (AD) domain name */ 48613a2f6bSGordon Ross 49613a2f6bSGordon Ross int 50613a2f6bSGordon Ross ntlm_compute_lm_hash(uchar_t *hash, const char *pw); 51613a2f6bSGordon Ross 52613a2f6bSGordon Ross int 53613a2f6bSGordon Ross ntlm_compute_nt_hash(uchar_t *hash, const char *pw); 54613a2f6bSGordon Ross 55613a2f6bSGordon Ross int 56613a2f6bSGordon Ross ntlm_build_target_info(struct smb_ctx *, struct mbuf *, struct mbdata *); 57613a2f6bSGordon Ross 58613a2f6bSGordon Ross int 59613a2f6bSGordon Ross ntlm_put_v1_responses(struct smb_ctx *ctx, 60613a2f6bSGordon Ross struct mbdata *lm_mbp, struct mbdata *nt_mbp); 61613a2f6bSGordon Ross 62613a2f6bSGordon Ross int 63*85e6b674SGordon Ross ntlm_put_v1x_responses(struct smb_ctx *ctx, 64*85e6b674SGordon Ross struct mbdata *lm_mbp, struct mbdata *nt_mbp); 65*85e6b674SGordon Ross 66*85e6b674SGordon Ross int 67613a2f6bSGordon Ross ntlm_put_v2_responses(struct smb_ctx *ctx, struct mbdata *ti_mbp, 68613a2f6bSGordon Ross struct mbdata *lm_mbp, struct mbdata *nt_mbp); 69613a2f6bSGordon Ross 70*85e6b674SGordon Ross int 71*85e6b674SGordon Ross ntlm_build_mac_key(struct smb_ctx *ctx, struct mbdata *ntresp_mbp); 72*85e6b674SGordon Ross 73*85e6b674SGordon Ross void 74*85e6b674SGordon Ross ntlm2_kxkey(struct smb_ctx *ctx, struct mbdata *lm_mbp, uchar_t *kxkey); 75*85e6b674SGordon Ross 76613a2f6bSGordon Ross #endif /* _NTLM_H */ 77