Any support for DES encrypt and decrypt in 3.0? | developer.brewmp.com Any support for DES encrypt and decrypt in 3.0? | developer.brewmp.com

Developer

Any support for DES encrypt and decrypt in 3.0?

Forums:

#ifndef AEESECURITY_H
#define AEESECURITY_H
/*======================================================
FILE: AEESecurity.h

SERVICES: AEE Security Interface

DESCRIPTION: This file provides definitions for the Security interfaces made available by
the AEE to application developers. This is a standard header file that must be included by
all applications using the security services of the AEE.

There are 3 interfaces

IHash - Does MD5, MD2 or SHA1
ICipher - Does ArcFour (Stream cipher)

CLASS IDs: AEECLSID_MD5
AEECLSID_MD2
AEECLSID_SHA1
AEECLSID_ARC4
AEECLSID_DES_ENCRYPT
AEECLSID_DES_DECRYPT
AEECLSID_3DES_ENCRYPT
AEECLSID_3DES_DECRYPT

Copyright ?1999-2002 QUALCOMM Incorporated.
All Rights Reserved.
QUALCOMM Proprietary/GTDR
=====================================================*/

this is AEESecurity.h of BREW 2.1
I can use AEECLSID_DES_DECRYPT like that:

ISHELL_CreateInstance(pApp->m_pIShell, AEECLSID_DES_DECRYPT, (void **)&pICipher) ;

but create failed..

so,I want to know whether there is any support for DES in BREW 3.0 or other method to use DES?

thx a lot~