Przemyslaw Czerpak
62f1c44f96
2012-09-13 16:02 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* 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>
2012-09-13 14:02:52 +00:00
..
2012-09-12 09:51:24 +00:00
2012-07-24 22:31:14 +00:00
2012-07-12 15:23:08 +00:00
2012-09-09 16:51:37 +00:00
2012-09-04 12:47:22 +00:00
2011-05-09 19:46:56 +00:00
2010-06-03 14:48:23 +00:00
2012-07-25 09:54:40 +00:00
2011-07-12 14:03:11 +00:00
2012-04-04 18:03:58 +00:00
2012-04-20 15:55:44 +00:00
2012-08-14 10:44:42 +00:00
2012-09-12 09:51:24 +00:00
2012-09-13 14:02:52 +00:00
2012-09-12 09:51:24 +00:00
2010-11-09 00:17:45 +00:00