From 93ed99d6ffb948e9ddde9ddc7280b33fc86adc75 Mon Sep 17 00:00:00 2001 From: Luk Claes Date: Sat, 26 May 2012 12:07:38 +0200 Subject: s3:libsmb: get rid of clisigning routines Signed-off-by: Luk Claes Signed-off-by: Stefan Metzmacher --- source3/libsmb/clisigning.c | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 source3/libsmb/clisigning.c (limited to 'source3/libsmb/clisigning.c') diff --git a/source3/libsmb/clisigning.c b/source3/libsmb/clisigning.c deleted file mode 100644 index 7dab9d3817..0000000000 --- a/source3/libsmb/clisigning.c +++ /dev/null @@ -1,45 +0,0 @@ -/* - Unix SMB/CIFS implementation. - SMB Signing Code - Copyright (C) Jeremy Allison 2003. - Copyright (C) Andrew Bartlett 2002-2003 - Copyright (C) Stefan Metzmacher 2009 - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#include "includes.h" -#include "libsmb/libsmb.h" -#include "../libcli/smb/smbXcli_base.h" - -bool cli_simple_set_signing(struct cli_state *cli, - const DATA_BLOB user_session_key, - const DATA_BLOB response) -{ - return smb1cli_conn_activate_signing(cli->conn, - user_session_key, - response); -} - -bool cli_check_sign_mac(struct cli_state *cli, const char *buf, uint32_t seqnum) -{ - return smb1cli_conn_check_signing(cli->conn, - (const uint8_t *)buf, - seqnum); -} - -bool client_is_signing_on(struct cli_state *cli) -{ - return smb1cli_conn_signing_is_active(cli->conn); -} -- cgit