Show
Ignore:
Timestamp:
05/23/09 02:06:34 (3 years ago)
Author:
ocjhb
Message:

when storing: removed b64, added zlib

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/sandbox/jhb/oc2/blowfish.py

    r318 r319  
    573573    cipher.initCTR() 
    574574    text = "The quick brown fox jumps over the lazy dog" 
    575     print "\tText:\t\t", text 
     575    text = 'h' * 100000 
     576    #print "\tText:\t\t", text 
    576577    crypted = cipher.encryptCTR(text) 
    577     print "\tEncrypted:\t", crypted 
     578    #print "\tEncrypted:\t", crypted 
    578579    cipher.initCTR() 
    579580    decrypted = cipher.decryptCTR(crypted) 
    580     print "\tDecrypted:\t", decrypted 
     581    #print "\tDecrypted:\t", decrypted