summaryrefslogtreecommitdiffstats
path: root/src/util/crypto/libcrypto
Commit message (Collapse)AuthorAgeFilesLines
* UTIL: Create new wraper header file sss_endian.hLukas Slebodnik2013-08-281-1/+1
| | | | | | Some platform have header file endian.h and anothers have sys/endian.h. We nedd to use conditional build to handle it correctly, therefore new header file sss_endian.h was created.
* libcrypto fully implementedGeorge McCollister2012-06-264-9/+442
| | | | | | | | | | | | | | | | Implemented working versions of the following functions for libcrypto: sss_base64_encode sss_base64_decode sss_hmac_sha1 sss_password_encrypt sss_password_decrypt test_encrypt_decrypt now expects EOK from libcrypto. test_hmac_sha1 now expects EOK from libcrypto. Added test_base64_encode to test base64 encoding implementation. Added test_base64_decode to test base64 decoding implementation. Signed-off-by: George McCollister <George.McCollister@gmail.com>
* UTIL: Add HMAC-SHA-1 functionJan Cholasta2012-04-241-0/+31
|
* UTIL: Provide base64 encoding and decoding functionsJan Cholasta2012-02-071-0/+37
|
* Set _GNU_SOURCE globallySumit Bose2011-05-231-1/+0
|
* Password obfuscation utility functionsJakub Hrozek2010-09-081-0/+16
| | | | | | | Adds two utility functions to obfuscate a password and inverse to extract the cleartext password back. So far, only NSS-based implementation is provided.
* Move crypto functions into its own subdirJakub Hrozek2010-09-081-0/+381
A refactoring patch that creates a common util/crypto subdir with per-implementation subdirectories for each underlying crypto library supported by SSSD.