summaryrefslogtreecommitdiff
path: root/usr/src/lib/libcrypt/common/des_encrypt.c
diff options
context:
space:
mode:
authorJosef 'Jeff' Sipek <jeffpc@josefsipek.net>2013-07-29 16:16:59 -0400
committerRichard Lowe <richlowe@richlowe.net>2013-07-29 16:18:07 -0400
commit694c35faa87b858ecdadfe4fc592615f4eefbb07 (patch)
tree2a78abdba3549d11ff88460d03ff67ce152ae59c /usr/src/lib/libcrypt/common/des_encrypt.c
parent36f7455d36b60be70d7aae5959fa19e71954678e (diff)
downloadillumos-gate-694c35faa87b858ecdadfe4fc592615f4eefbb07.tar.gz
3882 Remove xmod & friends
Reviewed by: Dan McDonald <danmcd@nexenta.com> Reviewed by: Richard Lowe <richlowe@richlowe.net> Approved by: Richard Lowe <richlowe@richlowe.net>
Diffstat (limited to 'usr/src/lib/libcrypt/common/des_encrypt.c')
-rw-r--r--usr/src/lib/libcrypt/common/des_encrypt.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/usr/src/lib/libcrypt/common/des_encrypt.c b/usr/src/lib/libcrypt/common/des_encrypt.c
index 937b9c8a11..05a3ba56c7 100644
--- a/usr/src/lib/libcrypt/common/des_encrypt.c
+++ b/usr/src/lib/libcrypt/common/des_encrypt.c
@@ -27,8 +27,6 @@
/* Copyright (c) 1988 AT&T */
/* All Rights Reserved */
-#pragma ident "%Z%%M% %I% %E% SMI"
-
#pragma weak _des_encrypt1 = des_encrypt1
#include <sys/types.h>
@@ -37,7 +35,6 @@ void
des_encrypt1(char *block, char *L, char *IP, char *R, char *preS, char *E,
char KS[][48], char S[][64], char *f, char *tempL, char *P, char *FP)
{
-/* EXPORT DELETE START */
int i;
int t, j, k;
char t2;
@@ -115,5 +112,4 @@ des_encrypt1(char *block, char *L, char *IP, char *R, char *preS, char *E,
*/
for (j = 0; j < 64; j++)
block[j] = L[FP[j]-1];
-/* EXPORT DELETE END */
}