This is the mail archive of the cygwin-apps mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH crypt 0/8] Use musl implementation


Yaakov Selkowitz (8):
  Import musl sources
  Port sources to Cygwin
  Export crypt_r
  Guard GNU extensions in header, declare other functions
  Disable blowfish cipher
  Update Makefile
  Update README
  Add .gitignore

 .gitignore       |    4 +
 COPYRIGHT        |  163 +++++++++
 Makefile         |   28 +-
 crypt.README     |   38 +-
 crypt.c          |   44 +--
 crypt.def        |    1 +
 crypt.h          |   27 ++
 crypt_blowfish.c |  798 ++++++++++++++++++++++++++++++++++++++++++
 crypt_des.c      | 1018 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 crypt_md5.c      |  285 +++++++++++++++
 crypt_r.c        |   31 ++
 crypt_sha256.c   |  322 +++++++++++++++++
 crypt_sha512.c   |  371 ++++++++++++++++++++
 encrypt.c        |  343 +++---------------
 encrypt.h        |   35 --
 15 files changed, 3090 insertions(+), 418 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 COPYRIGHT
 create mode 100644 crypt.h
 create mode 100644 crypt_blowfish.c
 create mode 100644 crypt_des.c
 create mode 100644 crypt_md5.c
 create mode 100644 crypt_r.c
 create mode 100644 crypt_sha256.c
 create mode 100644 crypt_sha512.c
 delete mode 100644 encrypt.h

-- 
2.13.2


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]