hmm, im no expert, but your key in "quotes" is not a byte[] but a string? you're key is not 0xD0, 0x76, 0x3e etc but "d" then "0" etc (ASCII values of those chars)... or am i totally missing something? do you really work for navy.mil ?! LOL wow
On Fri, 7 Jan 2005 16:45:46 -0500, Mayorga, Armando CIV FLTINFOWARCEN NORFOLK VA <[EMAIL PROTECTED]> wrote: > > > Ok found the problem it was in the client > > changed > const BYTE key[DES_EDE3::DEFAULT_KEYLENGTH] = "d0763edaa9d9bd2a9516280e"; > //problem with this is if you specify a size the last byte will be a NULL > > instead used > const BYTE key [] = "d0763edaa9d9bd2a9516280e"; > //this works fine > > > thanks anyway > > AJ -- "Thou shalt not follow the null pointer for at it's end madness and chaos lie."
