Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Top Posters

Who's Online (1)

Powered by Vanilla. Made with Bootstrap.
Simple encoder using binascii
  • Hey I've just finished coding up a simple encoder that encodes text using binascii. It's not the best encryption but it'll get the job done for simple text :)


    from binascii import *
    '''
    Simply encodes user input using binascii
    '''
    text = raw_input(\"Text to encode: \")

    data = b2a_uu(text)
    text = a2b_uu(data)
    print text, \"==>\", repr(data)

    Sample output:

    Text to encode: iexploit
    iexploit ==> '(:65X<&QO:70 \n'


    Simple yet effective. I'm still working on a decoder I'll post the source of the decoder once I get it finished.
  • Xin
    Posts: 3,251
    Nice i like these cryptography posts i learn a lot
    Xin
  • said:


    Nice i like these cryptography posts i learn a lot



    Thanks. I've been looking into it and it seems as there theres no way to decode this 0.o

    I bet it's decode able but I haven't found a solution on decoding it.
  • undead
    Posts: 822
    Nice little program chronic. ;)