Horace Ho wrote:
> Where can I find more information about two functsions:
> - EncDigestMD5
> - EncDES
> For example, I am looking for:
> 1 if the function is implemented in a particular ROM
I don't know if this is the official answer or not, but look in
<SystemMgr.h> for these lines:
#define sysFtrNumEncryption 4 // Which encryption schemes are present
#define sysFtrNumEncryptionMaskDES 0x00000001 // bit 0: 1 if DES is
present
This suggests that you can test for existence of DES by getting feature
'psys' #4 and testing the indicated bit.
(I have no idea if this is supported or even correct, and someone from
Palm will surely enlighten us shortly, but at least this is what's
sitting in plain sight in the header files.)
-slj-