v2.3.10 reissue
[git-osx-installer.git] / include / CommonCrypto / CommonEVP.h
blobf3a5f43ac31233d5c9a570ce39cea82a942c1562
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_ */