62f1c44f96d460d1108ffc685111368f9a6a4b11
* harbour/src/rtl/hbbffnc.c
* harbour/include/harbour.hbx
+ added new functions for BlowFish encryption using CFB (cipher feedback)
mode instead of ECB (electronic codebook) mode with ANSI X.923 padding:
hb_blowfishEncrypt_CFB( <cBfKey>, <cText> [, <cInitSeed> ] )
-> <cCipher> | NIL
return string encrypted using CFB (cipher feedback) mode or
NIL on error (wrong parameters)
hb_blowfishDecrypt_CFB( <cBfKey>, <cCipher> [, <cInitSeed> ] )
-> <cText> | NIL
return string decrypted using CFB (cipher feedback) mode or
NIL on error (wrong parameters),
* harbour/src/rtl/Makefile
+ harbour/src/rtl/hbmd5enc.c
* harbour/include/harbour.hbx
+ added new functions for MD5 encryption/decryption
using CFB (cipher feedback) mode:
hb_MD5Encrypt( <cText>, <cPasswd> ) -> <cCipher>
hb_MD5Decrypt( <cCipher>, <cPasswd> ] ) -> <cText>
Description
Harbour Core — Reference source for Five development
Languages
C
80.3%
xBase
17.8%
Makefile
0.6%
C++
0.4%
Harbour
0.4%
Other
0.3%