in reply to Re: Obscure data
in thread Obscure data

Ok, I see what you mean. This is not a bad approach except for the numeric data. I suppose I could convert every byte to it's ascii code value and then add 13, but this could get more complicated than I'd like. I'm trying to keep it simple, which is not always easy for me.

Thanks!

Replies are listed 'Best First'.
Re: Obscure data
by Abigail-II (Bishop) on Nov 24, 2003 at 18:15 UTC
    For numbers, use rot5:
    y!a-zA-Z0-9!n-za-mN-ZA-M5-90-4!
    Or go wild and do something like:
    y!a-zA-Z0-9!n-zA-Z0-9a-m!

    Abigail