in reply to Re^3: is this script secured enough from internet attacks
in thread is this script secured enough from internet attacks


how does this unpack H* insert into work?
there are no rules, there are no thumbs..

Replies are listed 'Best First'.
Re^5: is this script secured enough from internet attacks
by Anonymous Monk on Jun 27, 2011 at 13:20 UTC
    Hex encoded data is [0-9A-F]
    $ perl -e " print unpack q[H*], join q[],@ARGV " 1 "<" 3 " Foo" 313c3320466f6f $ perl -e " print pack q[H*], join q[],@ARGV " 313c3320466f6f 1<3 Foo
    I doubt the pack tradeoff is preferable as a workaround for a problem in FreeTDS (which I doubt exists)