this set of patches provides libcrypt.so.1 based on musl 1.1.19

geraldo netto (4):
  libc/crypt: copy crypt functions from musl 1.1.19
  makefile: update crypt references to use libc instead of musl
  core/elf.cc: export libcrypt.so
  tests/crypt: add unit test for crypt functions

 Makefile                    |   15 +-
 core/elf.cc                 |    1 +
 libc/crypt/crypt.c          |   16 +
 libc/crypt/crypt_blowfish.c |  798 +++++++++++++++++++++++++++++++++
 libc/crypt/crypt_des.c      | 1018 +++++++++++++++++++++++++++++++++++++++++++
 libc/crypt/crypt_md5.c      |  285 ++++++++++++
 libc/crypt/crypt_r.c        |   32 ++
 libc/crypt/crypt_sha256.c   |  322 ++++++++++++++
 libc/crypt/crypt_sha512.c   |  371 ++++++++++++++++
 libc/crypt/encrypt.c        |   60 +++
 libc/include/crypt.h        |   20 +
 modules/tests/Makefile      |    2 +-
 tests/tst-crypt.c           |   71 +++
 13 files changed, 3003 insertions(+), 8 deletions(-)
 create mode 100644 libc/crypt/crypt.c
 create mode 100644 libc/crypt/crypt_blowfish.c
 create mode 100644 libc/crypt/crypt_des.c
 create mode 100644 libc/crypt/crypt_md5.c
 create mode 100644 libc/crypt/crypt_r.c
 create mode 100644 libc/crypt/crypt_sha256.c
 create mode 100644 libc/crypt/crypt_sha512.c
 create mode 100644 libc/crypt/encrypt.c
 create mode 100644 libc/include/crypt.h
 create mode 100644 tests/tst-crypt.c

--
2.7.4

-- 
You received this message because you are subscribed to the Google Groups "OSv 
Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to osv-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to