summaryrefslogtreecommitdiff
path: root/lib/libcrypto/ripemd
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2016-12-21 15:49:30 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2016-12-21 15:49:30 +0000
commit6980e63b096ec3551366624376a0294e25f896e3 (patch)
tree0dac1094ae0e5f50606097ed0cd0c71ef01c8602 /lib/libcrypto/ripemd
parent17ba22c60dee8a92bb54e6cec513694193aad1eb (diff)
Explicitly export a list of symbols from libcrypto.
Move the "internal" BN functions from bn.h to bn_lcl.h and stop exporting the bn_* symbols. These are documented as only being intended for internal use, so why they were placed in a public header is beyond me... This hides 363 previously exported symbols, most of which exist in headers that are not installed and were never intended to be public. This also removes a few crusty old things that should have died long ago (like _ossl_old_des_read_pw). But don't worry... there are still 3451 symbols exported from the library. With input and testing from inoguchi@. ok beck@ inoguchi@
Diffstat (limited to 'lib/libcrypto/ripemd')
-rw-r--r--lib/libcrypto/ripemd/rmd_locl.h7
-rw-r--r--lib/libcrypto/ripemd/rmdconst.h6
2 files changed, 10 insertions, 3 deletions
diff --git a/lib/libcrypto/ripemd/rmd_locl.h b/lib/libcrypto/ripemd/rmd_locl.h
index 54cce5b6453..f38b101cc69 100644
--- a/lib/libcrypto/ripemd/rmd_locl.h
+++ b/lib/libcrypto/ripemd/rmd_locl.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: rmd_locl.h,v 1.12 2014/10/20 13:06:54 bcook Exp $ */
+/* $OpenBSD: rmd_locl.h,v 1.13 2016/12/21 15:49:29 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -72,8 +72,12 @@
# endif
#endif
+__BEGIN_HIDDEN_DECLS
+
void ripemd160_block_data_order (RIPEMD160_CTX *c, const void *p,size_t num);
+__END_HIDDEN_DECLS
+
#define DATA_ORDER_IS_LITTLE_ENDIAN
#define HASH_LONG RIPEMD160_LONG
@@ -143,4 +147,3 @@ void ripemd160_block_data_order (RIPEMD160_CTX *c, const void *p,size_t num);
a+=F5(b,c,d)+X(w)+K; \
a=ROTATE(a,s)+e; \
c=ROTATE(c,10); }
-
diff --git a/lib/libcrypto/ripemd/rmdconst.h b/lib/libcrypto/ripemd/rmdconst.h
index b36011cc44b..f34047f4ff3 100644
--- a/lib/libcrypto/ripemd/rmdconst.h
+++ b/lib/libcrypto/ripemd/rmdconst.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: rmdconst.h,v 1.2 2014/06/12 15:49:30 deraadt Exp $ */
+/* $OpenBSD: rmdconst.h,v 1.3 2016/12/21 15:49:29 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -55,6 +55,9 @@
* copied and put under another distribution licence
* [including the GNU Public Licence.]
*/
+
+__BEGIN_HIDDEN_DECLS
+
#define KL0 0x00000000L
#define KL1 0x5A827999L
#define KL2 0x6ED9EBA1L
@@ -397,3 +400,4 @@
#define WR79 11
#define SR79 11
+__END_HIDDEN_DECLS