encryption with python

Steve M sjmaster at gmail.com
Wed Sep 7 11:35:11 EDT 2005


>My goal is to combine two different numbers and
encrypt them to create a new number that cann't be traced back to the
originals.

Here's one:
def encrypt(x, y):
    """Return a number that combines x and y but cannot be traced back
to them."""
    return x + y




More information about the Python-list mailing list