summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorCharles Longeau <chl@cvs.openbsd.org>2012-08-28 07:52:30 +0000
committerCharles Longeau <chl@cvs.openbsd.org>2012-08-28 07:52:30 +0000
commit4c7d1ace0330b12a74d330097c24e7b55047e9e2 (patch)
tree30deab70b490867fa35b878df786adbde5753b9d /usr.sbin
parent0e31848fc1e7070c289ef22082f8b2d5b4f1f268 (diff)
This file isn't and won't be used --> delete it.
ok gilles@
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/smtpd/encrypt.c58
1 files changed, 0 insertions, 58 deletions
diff --git a/usr.sbin/smtpd/encrypt.c b/usr.sbin/smtpd/encrypt.c
deleted file mode 100644
index 75c38565a56..00000000000
--- a/usr.sbin/smtpd/encrypt.c
+++ /dev/null
@@ -1,58 +0,0 @@
-/* $OpenBSD: encrypt.c,v 1.2 2012/08/26 10:17:13 chl Exp $ */
-
-/*
- * Copyright (c) 2012 Charles Longeau <chl@openbsd.org>
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
-
-#include <sys/types.h>
-#include <sys/queue.h>
-#include <sys/tree.h>
-#include <sys/param.h>
-#include <sys/socket.h>
-#include <sys/stat.h>
-
-#include <imsg.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <unistd.h>
-
-#include "smtpd.h"
-#include "log.h"
-
-
-int
-encrypt_file(int fdin, int fdout)
-{
- return (1);
-}
-
-int
-decrypt_file(int fdin, int fdout)
-{
- return (1);
-}
-
-size_t
-encrypt_buffer(const char *ib, size_t iblen, char *ob, size_t oblen)
-{
- return (1);
-}
-
-size_t
-decrypt_buffer(const char *ib, size_t iblen, char *ob, size_t oblen)
-{
- return (1);
-}