Module: wine Branch: refs/heads/master Commit: 23791c2510e8d06c9bc1b1323e070eb6b3cc39ff URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=23791c2510e8d06c9bc1b132...
Author: Juan Lang juan_lang@yahoo.com Date: Wed May 31 00:31:10 2006 -0700
crypt32: Implement CryptBinaryToStringA and CryptStringToBinaryA.
Implement CryptBinaryToStringA and CryptStringToBinaryA based on Kai Blin's base64 encoder/decoder.
---
dlls/crypt32/Makefile.in | 1 dlls/crypt32/base64.c | 579 ++++++++++++++++++++++++++++++++++++++++ dlls/crypt32/crypt32.spec | 4 dlls/crypt32/tests/.gitignore | 1 dlls/crypt32/tests/Makefile.in | 1 dlls/crypt32/tests/base64.c | 456 ++++++++++++++++++++++++++++++++ include/wincrypt.h | 29 ++ 7 files changed, 1071 insertions(+), 0 deletions(-) create mode 100644 dlls/crypt32/base64.c create mode 100644 dlls/crypt32/tests/base64.c
Diff: http://source.winehq.org/git/?p=wine.git;a=commitdiff;h=23791c2510e8d06c9bc1...