11
0
Fork 0

Add deprecation note for functions available in libosmogsm

This commit is contained in:
Max 2016-07-11 13:12:33 +02:00
parent 1ef73c575d
commit edacdfb5f4
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
#ifndef A53_F_H #ifndef A53_F_H
#define A53_F_H #define A53_F_H
void GSM( u8 *key, int klen, int count, u8 *block1, u8 *block2 ); void GSM( u8 *key, int klen, int count, u8 *block1, u8 *block2 ) __attribute__((__deprecated__("Deprectaed: use implementation from libosmogsm instead")));
void ECSD( u8 *key, int klen, int count, u8 *block1, u8 *block2 ); void ECSD( u8 *key, int klen, int count, u8 *block1, u8 *block2 );
void GEA3( u8 *key, int klen, u32 input, u8 direction, u8 *block, int m ); void GEA3( u8 *key, int klen, u32 input, u8 direction, u8 *block, int m ) __attribute__((__deprecated__("Deprectaed: use implementation from libosmogsm instead")));
#endif #endif