summaryrefslogtreecommitdiff
path: root/sunrpc/des_crypt.c
diff options
context:
space:
mode:
Diffstat (limited to 'sunrpc/des_crypt.c')
-rw-r--r--sunrpc/des_crypt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sunrpc/des_crypt.c b/sunrpc/des_crypt.c
index 7a4bc5d6cf..87389b47ce 100644
--- a/sunrpc/des_crypt.c
+++ b/sunrpc/des_crypt.c
@@ -105,7 +105,7 @@ cbc_crypt (char *key, char *buf, unsigned int len, unsigned int mode,
COPY8 (dp.des_ivec, ivec);
return err;
}
-
+libc_hidden_def (cbc_crypt)
/*
* ECB mode encryption
@@ -118,3 +118,4 @@ ecb_crypt (char *key, char *buf, unsigned int len, unsigned int mode)
dp.des_mode = ECB;
return common_crypt (key, buf, len, mode, &dp);
}
+libc_hidden_def (ecb_crypt)