Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Make your own encrytion! GENERATOR
#3
(12-06-2009, 07:31 PM)FarOut Wrote: ANYONE DOWN FOR A GAME OF GOLF?

on it
Code:
#!/usr/bin/env python
import random
CharList = [ [ chr( Char ) for Char in range( 65, 90+1 ) + range( 97, 122+1 ) + range(48, 57+1) ], [ chr( Char ) for Char in range( 65, 90+1 ) + range( 97, 122+1 ) + range(48, 57+1) ] ]
EncryptedCharList = []
for Rot in range( len( CharList[ 1 ] ) ):
    EncryptedCharList.append( random.choice( CharList[ 1 ] ) )
    CharList[ 1 ].remove( EncryptedCharList[ -1 ] )
for Chars in range( len( CharList[ 0 ] ) ): print "%s = %s" % ( CharList[ 0 ][ Chars ], EncryptedCharList[ Chars ] )
[Image: nv70ad.png]
Terrorcore, unleash, extermination
Hyper real, cold blood, determination
fudge them, I like this sensation
Incredible, I from the annihilation
Reply


Messages In This Thread
Make your own encrytion! GENERATOR - by nevets04 - 12-06-2009, 12:10 PM
RE: Make your own encrytion! GENERATOR - by wat - 12-06-2009, 07:31 PM
RE: Make your own encrytion! GENERATOR - by Fallen - 12-06-2009, 07:32 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Password Generator nevets04 3 1,123 11-07-2009, 02:30 PM
Last Post: ßeowulf

Forum Jump:


Users browsing this thread: 1 Guest(s)