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
..
2010-06-03 15:09:04 +00:00
2012-04-20 15:55:44 +00:00
2012-04-20 15:55:44 +00:00
2012-09-09 16:51:37 +00:00
2012-07-20 05:11:51 +00:00
2012-07-20 05:24:17 +00:00
2012-07-20 05:24:17 +00:00
2012-07-20 05:11:51 +00:00
2012-07-20 05:24:17 +00:00
2012-04-26 15:01:52 +00:00
2012-04-23 12:16:37 +00:00
2012-09-12 09:51:24 +00:00
2012-07-20 05:33:55 +00:00
2010-06-15 10:00:45 +00:00
2012-04-20 15:55:44 +00:00
2012-06-04 22:21:59 +00:00
2012-06-05 00:50:34 +00:00
2012-07-10 18:24:40 +00:00
2010-06-03 15:09:04 +00:00
2012-01-06 15:28:23 +00:00
2011-07-26 11:18:51 +00:00
2011-05-19 14:33:28 +00:00
2012-04-20 15:55:44 +00:00
2012-04-20 15:55:44 +00:00
2011-03-01 01:07:16 +00:00
2012-01-06 15:28:23 +00:00
2010-06-03 15:09:04 +00:00
2012-04-20 15:55:44 +00:00
2012-06-07 23:18:44 +00:00
2012-06-07 23:18:44 +00:00
2012-08-20 09:17:42 +00:00
2012-06-13 22:55:29 +00:00
2012-08-27 20:00:45 +00:00
2012-06-09 19:20:20 +00:00
2012-06-05 00:50:34 +00:00
2012-04-20 15:55:44 +00:00
2012-09-03 09:57:48 +00:00
2012-06-04 15:25:14 +00:00
2012-01-06 15:28:23 +00:00
2012-04-20 15:55:44 +00:00
2010-06-03 15:09:04 +00:00
2010-07-15 15:02:33 +00:00
2010-06-03 15:09:04 +00:00
2010-11-17 20:12:12 +00:00
2012-01-06 15:28:23 +00:00
2012-01-06 15:28:23 +00:00
2012-06-05 00:50:34 +00:00
2010-06-20 15:42:56 +00:00
2010-06-03 15:09:04 +00:00
2010-06-20 08:39:13 +00:00
2010-06-03 15:09:04 +00:00
2012-03-20 17:40:34 +00:00
2012-01-06 15:28:23 +00:00
2012-04-20 15:55:44 +00:00
2012-06-07 23:18:44 +00:00
2012-01-06 15:28:23 +00:00
2012-01-06 15:28:23 +00:00
2010-06-03 15:09:04 +00:00
2012-06-04 15:25:14 +00:00
2012-06-04 15:25:14 +00:00
2010-06-03 15:09:04 +00:00
2010-08-11 10:28:39 +00:00
2012-01-06 15:28:23 +00:00
2012-01-06 15:28:23 +00:00
2012-01-06 15:28:23 +00:00
2012-01-06 15:28:23 +00:00
2012-06-07 23:18:44 +00:00
2012-06-04 15:25:14 +00:00
2012-04-20 15:55:44 +00:00
2012-01-03 23:12:44 +00:00
2012-01-06 15:28:23 +00:00
2012-04-24 05:18:24 +00:00
2012-01-06 15:28:23 +00:00
2012-01-06 15:28:23 +00:00
2012-01-06 15:28:23 +00:00
2012-04-11 22:14:25 +00:00
2011-08-02 11:17:25 +00:00
2012-04-20 15:55:44 +00:00
2012-04-20 15:55:44 +00:00
2012-09-04 16:49:45 +00:00
2012-09-09 16:51:37 +00:00
2012-01-06 15:28:23 +00:00
2012-06-05 00:50:34 +00:00
2012-06-05 00:50:34 +00:00
2012-01-30 09:30:22 +00:00
2012-01-06 15:28:23 +00:00
2012-04-20 15:55:44 +00:00
2012-01-06 15:28:23 +00:00
2010-06-20 10:50:32 +00:00
2011-09-26 08:57:26 +00:00
2012-06-10 12:13:08 +00:00
2010-06-03 15:09:04 +00:00
2009-10-09 14:54:14 +00:00
2010-08-06 10:51:00 +00:00
2010-06-03 15:09:04 +00:00
2012-06-04 15:25:14 +00:00
2012-01-06 15:28:23 +00:00
2010-07-06 21:32:46 +00:00
2010-07-06 21:32:46 +00:00
2011-10-10 17:50:44 +00:00
2012-09-13 14:02:52 +00:00
2010-11-19 10:11:29 +00:00
2010-06-03 15:09:04 +00:00
2010-06-03 15:09:04 +00:00
2012-05-18 14:49:44 +00:00
2011-08-08 10:13:50 +00:00
2010-02-07 15:37:24 +00:00
2012-06-04 21:28:37 +00:00
2012-06-12 02:30:41 +00:00
2012-01-06 15:28:23 +00:00
2012-01-12 17:53:12 +00:00
2010-06-03 15:09:04 +00:00
2012-01-06 15:28:23 +00:00
2012-01-06 15:28:23 +00:00
2012-06-04 15:25:14 +00:00
2012-05-17 21:08:28 +00:00
2010-07-06 21:32:46 +00:00
2010-07-06 21:32:46 +00:00
2012-07-21 16:48:00 +00:00
2011-08-27 08:09:34 +00:00
2010-06-03 15:09:04 +00:00
2012-06-07 23:18:44 +00:00
2012-02-09 12:50:36 +00:00
2010-11-04 21:46:37 +00:00
2010-10-22 18:16:35 +00:00
2011-05-01 20:22:54 +00:00
2012-09-13 14:02:52 +00:00
2012-01-06 15:28:23 +00:00
2012-04-03 16:59:21 +00:00
2010-07-06 21:32:46 +00:00
2012-01-06 15:28:23 +00:00
2011-09-23 16:36:37 +00:00
2012-05-08 10:28:46 +00:00
2010-07-06 21:32:46 +00:00
2012-04-17 11:03:54 +00:00
2012-01-06 15:28:23 +00:00
2012-01-06 15:28:23 +00:00
2012-01-06 15:28:23 +00:00
2012-01-06 15:28:23 +00:00
2012-04-17 13:23:29 +00:00
2012-01-11 17:26:24 +00:00
2010-10-25 13:21:18 +00:00
2012-05-03 23:12:49 +00:00
2011-07-17 14:23:26 +00:00
2010-09-15 14:54:36 +00:00
2012-06-04 13:27:24 +00:00
2011-03-29 06:05:40 +00:00
2012-06-06 22:26:21 +00:00
2012-04-25 00:21:07 +00:00
2012-04-20 15:55:44 +00:00
2010-06-03 15:09:04 +00:00
2011-10-10 17:50:44 +00:00
2012-01-06 15:28:23 +00:00
2011-02-01 02:34:25 +00:00
2012-01-06 15:28:23 +00:00
2012-07-24 01:05:30 +00:00
2012-07-25 09:54:40 +00:00
2012-07-24 23:35:11 +00:00
2012-04-20 15:55:44 +00:00
2012-04-20 15:55:44 +00:00
2012-01-06 15:28:23 +00:00
2012-06-04 15:25:14 +00:00
2012-01-06 15:28:23 +00:00
2012-06-07 23:18:44 +00:00
2012-09-13 14:02:52 +00:00
2010-06-03 15:09:04 +00:00
2010-06-03 15:09:04 +00:00
2012-06-04 15:25:14 +00:00
2012-01-06 15:28:23 +00:00
2012-06-04 15:25:14 +00:00
2012-06-12 02:30:41 +00:00
2012-06-04 15:25:14 +00:00
2012-06-05 00:50:34 +00:00
2011-03-07 21:44:02 +00:00
2012-04-20 15:55:44 +00:00
2010-06-03 15:09:04 +00:00
2012-04-20 15:55:44 +00:00
2012-01-06 15:28:23 +00:00
2012-01-06 15:28:23 +00:00
2010-07-06 19:02:19 +00:00
2012-01-06 15:28:23 +00:00
2012-01-06 15:28:23 +00:00
2012-04-20 15:55:44 +00:00
2012-06-05 00:50:34 +00:00
2012-01-06 15:28:23 +00:00
2012-04-20 15:55:44 +00:00
2012-01-06 15:28:23 +00:00
2012-01-06 15:28:23 +00:00
2012-04-20 15:55:44 +00:00
2012-04-20 15:55:44 +00:00
2012-04-20 15:55:44 +00:00
2010-06-03 15:09:04 +00:00
2010-06-03 15:09:04 +00:00
2012-04-20 15:55:44 +00:00
2012-07-22 21:54:14 +00:00
2012-06-05 00:50:34 +00:00
2012-01-06 15:28:23 +00:00
2012-06-05 00:50:34 +00:00
2012-06-05 00:50:34 +00:00
2012-05-16 16:39:24 +00:00
2012-01-06 15:28:23 +00:00
2012-06-04 15:25:14 +00:00
2010-07-06 19:02:19 +00:00
2012-04-20 15:55:44 +00:00
2010-06-03 15:09:04 +00:00
2012-06-29 01:02:07 +00:00
2012-01-06 15:28:23 +00:00
2010-07-06 19:02:19 +00:00
2012-04-20 15:55:44 +00:00
2012-06-05 00:50:34 +00:00
2010-06-03 15:09:04 +00:00
2010-06-03 15:09:04 +00:00
2010-06-03 15:09:04 +00:00
2010-06-03 15:09:04 +00:00
2012-06-04 15:25:14 +00:00
2010-07-06 19:02:19 +00:00
2010-06-03 15:09:04 +00:00
2012-01-06 15:28:23 +00:00
2010-06-03 15:09:04 +00:00
2010-11-20 16:28:13 +00:00
2010-11-20 11:15:44 +00:00
2010-11-20 11:15:44 +00:00
2010-11-20 11:15:44 +00:00
2011-02-28 20:43:05 +00:00
2010-09-07 22:17:41 +00:00
2010-11-19 10:11:29 +00:00
2010-09-07 22:17:41 +00:00
2010-06-16 18:08:04 +00:00
2010-06-03 15:09:04 +00:00
2012-01-06 15:28:23 +00:00
2011-02-11 18:24:49 +00:00
2012-07-10 23:40:21 +00:00
2010-06-03 15:09:04 +00:00
2010-06-03 15:09:04 +00:00
2012-03-13 11:55:43 +00:00
2012-01-06 15:28:23 +00:00
2012-04-20 15:55:44 +00:00
2010-07-06 19:02:19 +00:00
2011-06-14 09:52:19 +00:00
2010-06-03 15:09:04 +00:00
2012-01-06 15:28:23 +00:00
2012-04-20 15:55:44 +00:00
2012-04-20 15:55:44 +00:00
2012-06-04 15:25:14 +00:00
2012-06-05 00:50:34 +00:00
2012-06-04 15:25:14 +00:00
2012-08-24 12:11:59 +00:00
2012-06-04 15:25:14 +00:00
2010-06-03 15:09:04 +00:00
2012-06-05 00:50:34 +00:00
2012-01-06 15:28:23 +00:00
2010-06-03 15:09:04 +00:00
2012-06-05 00:50:34 +00:00
2012-06-12 02:30:41 +00:00
2012-06-05 00:50:34 +00:00
2012-06-05 00:50:34 +00:00
2012-06-07 23:18:44 +00:00
2010-06-03 15:09:04 +00:00
2012-08-20 09:17:42 +00:00
2012-06-05 00:50:34 +00:00
2012-01-06 15:28:23 +00:00
2012-01-06 15:28:23 +00:00
2012-04-20 15:55:44 +00:00
2012-06-12 02:30:41 +00:00
2010-06-03 15:09:04 +00:00
2010-06-03 15:09:04 +00:00
2010-06-03 15:09:04 +00:00
2010-06-03 15:09:04 +00:00
2010-06-03 15:09:04 +00:00
2010-06-03 15:09:04 +00:00
2010-06-03 15:09:04 +00:00
2010-06-03 15:09:04 +00:00
2010-06-03 15:09:04 +00:00
2010-06-03 15:09:04 +00:00
2010-06-03 15:09:04 +00:00
2010-06-03 15:09:04 +00:00
2010-06-03 15:09:04 +00:00
2010-06-03 15:09:04 +00:00
2010-07-25 08:45:50 +00:00
2012-06-05 00:50:34 +00:00
2012-06-06 22:26:21 +00:00
2012-07-10 18:24:40 +00:00
2012-01-06 15:28:23 +00:00
2012-07-21 16:48:00 +00:00
2010-06-03 15:09:04 +00:00
2012-08-14 10:44:42 +00:00
2012-07-20 12:07:37 +00:00
2012-04-20 15:55:44 +00:00
2012-01-06 15:28:23 +00:00
2012-01-06 15:28:23 +00:00
2012-01-06 15:28:23 +00:00