[Quickfix-developers] Encrypting the Password field
Brought to you by:
orenmnero
From: Vincent P. <vpr...@ph...> - 2008-06-19 21:05:11
|
How do you encrypt the password field? I tried calling setField with field 98=2 ( EncrypMethod), but you can still see the clear text password in the QF message. -- VP void toAdmin( FIX::Message& m, const FIX::SessionID& id) { cout << "SessionID: " << id << endl; m.setField(98, "2"); m.setField(553,"TEST"); m.setField(554,"x0x0x0"); } |