You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
670 B

#include <my_global.h>
// TODO Not yet implemented.
int GetLatestCryptoKeyVersionImpl()
{
abort();
return 0; /* Keep compiler happy */
}
unsigned int HasCryptoKeyImpl(unsigned int version)
{
abort();
return 0; /* Keep compiler happy */
}
int GetCryptoKeySizeImpl(unsigned int version)
{
abort();
return 0; /* Keep compiler happy */
}
int GetCryptoKeyImpl(unsigned int version, unsigned char* key,
unsigned int key_size)
{
abort();
return 0; /* Keep compiler happy */
}
int GetCryptoIVImpl(unsigned int version, unsigned char* key,
unsigned int key_size)
{
abort();
return 0; /* Keep compiler happy */
}