• 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
r4wp3
r3wp10
total:13

results window for this page: [start: 1 end: 13]

world-name: r4wp

Group: #Red ... Red language group [web-public]
DocKimbel:
22-Sep-2012
Marco: besides coding in Red/System, I don't see what you could do 
currently to speed it up. Here are some ideas for the additional 
coding that will need to be done:


You can write in Red/System some of the non-trivial natives, like 
e.g. set natives: sort, union, intersect, unique, difference. Other 
natives or support code we will need are codecs for:

- compression supporting these algorithms: deflate, lzo

- cryptography: MD5, SHA-1, AES, ...(all the required ones for SSH 
and SSL support)


You can port C code to Red/System, there are tons of available C 
source code, you just have to make it right (crypto requires accurate 
coding, implementations need to be deeply tested for flaws).
Group: !REBOL3 ... General discussion about REBOL 3 [web-public]
MarcS:
21-Mar-2013
Provisional SHA-2 implementation, https://github.com/0branch/r3/commits/sha2-experimental
MarcS:
21-Mar-2013
>> checksum/method to-binary "A simple SHA-2 test." 'sha256

== #{E57EBDB51368F9A7ACE63E115193AEAD5E377742E0B4CD6B735CF5AAD49E67EB}

world-name: r3wp

Group: !AltME ... Discussion about AltME [web-public]
[unknown: 10]:
1-Mar-2006
Well almost complete this filesharing... If there would be a nice 
Password protection possible on shared files (Like the SHA exmaple 
from Carls Cookbook) the filesharing would be complete upto the level 
of privicy ...
Group: Core ... Discuss core issues [web-public]
Graham:
13-Sep-2010
This is BSD C code for SHA 224 - 512 ... can someone review this 
to see if we can include in 2.7.8 ?
Group: MySQL ... [web-public]
Volker:
9-Jan-2006
sha_input: http://www.distlab.dk/mysql-4.1/html/mysys_2sha1_8c-source.html#l00179

Seems the two inputs are like a join. Usefull this way if one hashes 
files withput loading everything in memory.
Group: SDK ... [web-public]
TomBon:
13-Jan-2012
rondon,

you have to check that the choosen encryption scheme is compatible 
on both sides. at least SHA-1 / MD5 should work.

here you have some javasript routines:
	http://www.movable-type.co.uk/scripts/sha1.html
	http://pajhome.org.uk/crypt/md5/index.html

howto rebol:
http://www.rebol.com/docs/words/wchecksum.html


just send some test data and adjust the encryption scheme at the 
javasript side.

with luck, the rebol implementation is suitable for the routines 
above.
Cyphre:
16-Jan-2012
Graham: I was able to implement TLS1.0 protocol configured to use 
the TLS_RSA_WITH_RC4_128_SHA cipher-suite. All the mentioned algorithms 
were calculated using the  build-in Rebol2 encryption functionality. 
I had no problems regarding the compatibility. I haven't tried the 
cipher-suite with the AES enctryption though but my guess it will 
work as well.
Group: Tech News ... Interesting technology [web-public]
Ladislav:
16-Jun-2009
seems, that digital signatures are becoming quite insecure these 
days http://www.secureworks.com/research/blog/index.php/2009/6/3/sha-1-collision-attacks-now-252/
Group: !REBOL3 ... [web-public]
Andreas:
19-Nov-2010
which sha-2 do you need?
GrahamC:
19-Nov-2010
It doesn't matter .. sha-256 is good
Group: !REBOL3 Modules ... Get help with R3's module system [web-public]
Sunanda:
22-Oct-2010
Checksum/secure is SHA-1
Group: Core ... Discuss core issues [web-public]
Sunanda:
20-Nov-2010
checksum/secure is a SHA-1 hash.....Hashes are not decryptable, but 
you should find other tools that can produce a SHA-1 hash.