summaryrefslogtreecommitdiff
path: root/source3/libsmb/clisigning.c
diff options
context:
space:
mode:
authorLuk Claes <luk@debian.org>2012-05-26 12:07:38 +0200
committerStefan Metzmacher <metze@samba.org>2012-05-28 14:49:51 +0200
commit93ed99d6ffb948e9ddde9ddc7280b33fc86adc75 (patch)
treec244dc66e8728241af44a0c70d51123e2e661d2d /source3/libsmb/clisigning.c
parentf7f73c4dbad4dc47e3f37cd09f90470c2e54a4c2 (diff)
downloadsamba-93ed99d6ffb948e9ddde9ddc7280b33fc86adc75.tar.gz
samba-93ed99d6ffb948e9ddde9ddc7280b33fc86adc75.tar.bz2
samba-93ed99d6ffb948e9ddde9ddc7280b33fc86adc75.zip
s3:libsmb: get rid of clisigning routines
Signed-off-by: Luk Claes <luk@debian.org> Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/libsmb/clisigning.c')
-rw-r--r--source3/libsmb/clisigning.c45
1 files changed, 0 insertions, 45 deletions
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 <abartlet@samba.org> 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 <http://www.gnu.org/licenses/>.
-*/
-
-#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);
-}