2013-07-08 15:10:39 +02:00
|
|
|
Index: glibc-2.17/Versions.def
|
2012-08-28 14:25:24 +02:00
|
|
|
===================================================================
|
2013-07-08 15:10:39 +02:00
|
|
|
--- glibc-2.17.orig/Versions.def
|
|
|
|
+++ glibc-2.17/Versions.def
|
|
|
|
@@ -42,6 +42,10 @@ libc {
|
|
|
|
}
|
|
|
|
libcrypt {
|
|
|
|
GLIBC_2.0
|
|
|
|
+ OW_CRYPT_1.0
|
|
|
|
+}
|
|
|
|
+libowcrypt {
|
|
|
|
+ OW_CRYPT_1.0
|
|
|
|
}
|
|
|
|
libdl {
|
|
|
|
GLIBC_2.0
|
|
|
|
Index: glibc-2.17/crypt/Makefile
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/crypt/Makefile
|
|
|
|
+++ glibc-2.17/crypt/Makefile
|
|
|
|
@@ -21,14 +21,19 @@
|
2011-07-19 14:17:47 +02:00
|
|
|
subdir := crypt
|
|
|
|
|
|
|
|
headers := crypt.h
|
|
|
|
+headers += gnu-crypt.h ow-crypt.h
|
|
|
|
|
2013-07-08 15:10:39 +02:00
|
|
|
-extra-libs := libcrypt
|
|
|
|
+extra-libs := libcrypt libowcrypt
|
2011-07-19 14:17:47 +02:00
|
|
|
extra-libs-others := $(extra-libs)
|
2013-07-08 15:10:39 +02:00
|
|
|
|
2011-07-19 14:17:47 +02:00
|
|
|
libcrypt-routines := crypt-entry md5-crypt sha256-crypt sha512-crypt crypt \
|
|
|
|
crypt_util
|
|
|
|
|
2013-07-08 15:10:39 +02:00
|
|
|
-tests := cert md5c-test sha256c-test sha512c-test badsalttest
|
|
|
|
+libcrypt-routines += crypt_blowfish x86 wrapper crypt_gensalt compat-gensalt
|
|
|
|
+libcrypt-shared-only-routines = crypt_gensalt compat-gensalt
|
|
|
|
+libowcrypt-routines := crypt_gensalt wrapper-gensalt
|
2011-07-19 14:17:47 +02:00
|
|
|
+
|
2013-07-08 15:10:39 +02:00
|
|
|
+tests := cert md5c-test sha256c-test sha512c-test
|
2011-07-19 14:17:47 +02:00
|
|
|
|
2012-08-28 14:25:24 +02:00
|
|
|
include ../Makeconfig
|
2013-07-08 15:10:39 +02:00
|
|
|
|
2013-07-23 15:31:56 +02:00
|
|
|
@@ -77,3 +82,4 @@ endif
|
|
|
|
# This ensures they will load libc.so for needed symbols if loaded by
|
|
|
|
# a statically-linked program that hasn't already loaded it.
|
|
|
|
$(objpfx)libcrypt.so: $(common-objpfx)libc.so $(common-objpfx)libc_nonshared.a
|
|
|
|
+$(objpfx)libowcrypt.so: $(common-objpfx)libc.so $(common-objpfx)libc_nonshared.a
|
2013-07-08 15:10:39 +02:00
|
|
|
Index: glibc-2.17/crypt/Versions
|
2012-08-28 14:25:24 +02:00
|
|
|
===================================================================
|
2013-07-08 15:10:39 +02:00
|
|
|
--- glibc-2.17.orig/crypt/Versions
|
|
|
|
+++ glibc-2.17/crypt/Versions
|
|
|
|
@@ -2,4 +2,12 @@ libcrypt {
|
2011-07-19 14:17:47 +02:00
|
|
|
GLIBC_2.0 {
|
|
|
|
crypt; crypt_r; encrypt; encrypt_r; fcrypt; setkey; setkey_r;
|
|
|
|
}
|
2013-07-08 15:10:39 +02:00
|
|
|
+ OW_CRYPT_1.0 {
|
|
|
|
+ crypt_gensalt; crypt_gensalt_rn; crypt_gensalt_ra;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+libowcrypt {
|
|
|
|
+ OW_CRYPT_1.0 {
|
|
|
|
+ crypt_gensalt; crypt_gensalt_rn; crypt_gensalt_ra;
|
|
|
|
+ }
|
2011-07-19 14:17:47 +02:00
|
|
|
}
|
2013-07-08 15:10:39 +02:00
|
|
|
Index: glibc-2.17/crypt/crypt-entry.c
|
2012-08-28 14:25:24 +02:00
|
|
|
===================================================================
|
2013-07-08 15:10:39 +02:00
|
|
|
--- glibc-2.17.orig/crypt/crypt-entry.c
|
|
|
|
+++ glibc-2.17/crypt/crypt-entry.c
|
2012-11-13 12:56:09 +01:00
|
|
|
@@ -81,7 +81,7 @@ extern struct crypt_data _ufc_foobar;
|
2011-07-19 14:17:47 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
char *
|
|
|
|
-__crypt_r (key, salt, data)
|
|
|
|
+__des_crypt_r (key, salt, data)
|
|
|
|
const char *key;
|
|
|
|
const char *salt;
|
|
|
|
struct crypt_data * __restrict data;
|
2012-11-13 12:56:09 +01:00
|
|
|
@@ -155,6 +155,7 @@ __crypt_r (key, salt, data)
|
2011-07-19 14:17:47 +02:00
|
|
|
_ufc_output_conversion_r (res[0], res[1], salt, data);
|
|
|
|
return data->crypt_3_buf;
|
|
|
|
}
|
|
|
|
+#if 0
|
|
|
|
weak_alias (__crypt_r, crypt_r)
|
|
|
|
|
|
|
|
char *
|
2012-11-13 12:56:09 +01:00
|
|
|
@@ -197,3 +198,4 @@ __fcrypt (key, salt)
|
2011-07-19 14:17:47 +02:00
|
|
|
return crypt (key, salt);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
+#endif
|
2013-07-08 15:10:39 +02:00
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/aarch64/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/ports/sysdeps/unix/sysv/linux/aarch64/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/aarch64/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.17
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/aarch64/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/aarch64/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/alpha/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/ports/sysdeps/unix/sysv/linux/alpha/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/alpha/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.0
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/alpha/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/alpha/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/arm/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/ports/sysdeps/unix/sysv/linux/arm/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/arm/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.4
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/arm/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/arm/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/ia64/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/ports/sysdeps/unix/sysv/linux/ia64/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/ia64/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.0
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/ia64/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/ia64/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/ports/sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.4
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/ports/sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.0
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/mips/mips32/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/ports/sysdeps/unix/sysv/linux/mips/mips32/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/mips/mips32/nptl/libcrypt.abilist
|
|
|
|
@@ -9,3 +9,8 @@ GLIBC_2.0
|
|
|
|
setkey_r F
|
|
|
|
_gp_disp
|
|
|
|
_gp_disp A
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/mips/mips32/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/mips/mips32/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.0
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.0
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.0
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/ports/sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.12
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/ports/sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.12
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/tile/tilepro/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/ports/sysdeps/unix/sysv/linux/tile/tilepro/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/tile/tilepro/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.12
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/ports/sysdeps/unix/sysv/linux/tile/tilepro/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/ports/sysdeps/unix/sysv/linux/tile/tilepro/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/shlib-versions
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/shlib-versions
|
|
|
|
+++ glibc-2.17/shlib-versions
|
|
|
|
@@ -92,6 +92,7 @@ sh.*-.*-linux.* ld=ld-linux.so.2 GLIBC_
|
|
|
|
|
|
|
|
# This defines the shared library version numbers we will install.
|
|
|
|
.*-.*-.* libcrypt=1
|
|
|
|
+.*-.*-.* libowcrypt=1
|
|
|
|
|
|
|
|
# The gross patch for programs assuming broken locale implementations.
|
|
|
|
sh.*-.*-.* libBrokenLocale=1 GLIBC_2.2
|
|
|
|
Index: glibc-2.17/sysdeps/unix/sysv/linux/i386/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/sysdeps/unix/sysv/linux/i386/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/sysdeps/unix/sysv/linux/i386/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.0
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/sysdeps/unix/sysv/linux/i386/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/sysdeps/unix/sysv/linux/i386/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.0
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.3
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/sysdeps/unix/sysv/linux/s390/s390-32/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/sysdeps/unix/sysv/linux/s390/s390-32/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/sysdeps/unix/sysv/linux/s390/s390-32/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.0
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/sysdeps/unix/sysv/linux/s390/s390-32/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/sysdeps/unix/sysv/linux/s390/s390-32/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/sysdeps/unix/sysv/linux/s390/s390-64/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/sysdeps/unix/sysv/linux/s390/s390-64/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/sysdeps/unix/sysv/linux/s390/s390-64/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.2
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/sysdeps/unix/sysv/linux/s390/s390-64/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/sysdeps/unix/sysv/linux/s390/s390-64/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/sysdeps/unix/sysv/linux/sh/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/sysdeps/unix/sysv/linux/sh/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/sysdeps/unix/sysv/linux/sh/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.0
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/sysdeps/unix/sysv/linux/sh/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/sysdeps/unix/sysv/linux/sh/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.0
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.0
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/sysdeps/unix/sysv/linux/x86_64/64/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/sysdeps/unix/sysv/linux/x86_64/64/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/sysdeps/unix/sysv/linux/x86_64/64/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.2.5
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/sysdeps/unix/sysv/linux/x86_64/64/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/sysdeps/unix/sysv/linux/x86_64/64/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/sysdeps/unix/sysv/linux/x86_64/x32/nptl/libcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.17.orig/sysdeps/unix/sysv/linux/x86_64/x32/nptl/libcrypt.abilist
|
|
|
|
+++ glibc-2.17/sysdeps/unix/sysv/linux/x86_64/x32/nptl/libcrypt.abilist
|
|
|
|
@@ -7,3 +7,8 @@ GLIBC_2.16
|
|
|
|
fcrypt F
|
|
|
|
setkey F
|
|
|
|
setkey_r F
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.17/sysdeps/unix/sysv/linux/x86_64/x32/nptl/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.17/sysdeps/unix/sysv/linux/x86_64/x32/nptl/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|