in reply to Re: Re: Obscure data
in thread Obscure data

y!a-zA-Z!n-za-mN-ZA-M!

Abigail

Replies are listed 'Best First'.
Re: Re: Obscure data
by sweetblood (Prior) on Nov 24, 2003 at 18:08 UTC
    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!

      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