• Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

AltME groups: search

Help · search scripts · search articles · search mailing list

results summary

worldhits
r4wp6
r3wp5
total:11

results window for this page: [start: 7 end: 11]

world-name: r3wp

Group: Core ... Discuss core issues [web-public]
Allen:
2-Nov-2006
Encloak  -- http://www.rebol.net/cookbook/recipes/0023.html-- Carl 
says


Newer versions of REBOL include "cloaking" functions for encrypting 
and decrypting strings. These functions do not provide full strength 
encryption such as Blowfish, AES, or RSA as found in REBOL/Command, 
nevertheless they can be useful for hiding passwords and other values. 
(That's why we call it cloaking rather than encrypting.)
Group: SDK ... [web-public]
Rondon:
14-Jan-2012
http://user1.matsumoto.ne.jp/~goma/js/blowfish.html
Group: DevCon2005 ... DevCon 2005 [web-public]
Romano:
3-Oct-2005
i f i find some time, i will implement the blowfish algorithm a lot 
pmore complex than arc4, can be a good test.
Group: Tech News ... Interesting technology [web-public]
Reichart:
16-Dec-2010
That was a very funny pun on Blowfish :)
Group: Core ... Discuss core issues [web-public]
PeterWood:
1-Apr-2011
If I remember correctly, I was also able to exchange test data that 
was Blowfish encrypted with REBOL but I handled the padding myself:

plain: to binary! text
  
len: remainder length? plain 8

  if 0 < len [

    padding: 8 - len

    insert/dup tail plain to char! padding padding
 
  ]
1 / 11[1]