summaryrefslogtreecommitdiffstats
path: root/src/util/crypto/libcrypto/crypto_obfuscate.c
Commit message (Collapse)AuthorAgeFilesLines
* libcrypto fully implementedGeorge McCollister2012-06-261-2/+283
| | | | | | | | | | | | | | | | 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>
* 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.