mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-04-24 16:46:02 +02:00
9 lines
412 B
Objective-C
9 lines
412 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#import <MtProtoKit/MTEncryption.h>
|
|
|
|
|
|
void MyAesIgeEncrypt(const void *inBytes, int length, void *outBytes, const void *key, int keyLength, void *iv);
|
|
void MyAesIgeDecrypt(const void *inBytes, int length, void *outBytes, const void *key, int keyLength, void *iv);
|
|
void MyAesCbcDecrypt(const void *inBytes, int length, void *outBytes, const void *key, int keyLength, void *iv);
|