1 #ifndef _CC_COMMON_EVP_H_
2 #define _CC_COMMON_EVP_H_
4 int cEVP_EncodeBlock(void *,const void *,int);
5 int cEVP_DecodeBlock(void *,const void *,int);
7 #define EVP_EncodeBlock(t,f,l) cEVP_EncodeBlock(t,f,l)
8 #define EVP_DecodeBlock(t,f,l) cEVP_DecodeBlock(t,f,l)
10 #endif /* _CC_COMMON_EVP_H_ */