MIKAI
Library to modify content of a Mykey
mikai-internal.h
Go to the documentation of this file.
1 /*
2  * @author Lilz <https://telegram.me/Lilz73>
3  * @copyright 2020-2021 Lilz <https://telegram.me/Lilz73>
4  * @license MIKAI LICENSE
5  *
6  * This file is part of MIKAI.
7  *
8  * MIKAI is free software: you can redistribute it and/or modify
9  * it under the terms of the MIKAI License, as published by
10  * Lilz along with this program and available on "MIKAI Download" Telegram channel
11  * <https://telegram.me/mikaidownload>.
12  *
13  * MIKAI is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY.
15  *
16  * You should have received a copy of the MIKAI License along
17  * with MIKAI.
18  * If not, see <https://telegram.me/mikaidownload>.
19  */
20 
21 #ifndef MIKAI_MIKAI_INTERNAL_H
22 #define MIKAI_MIKAI_INTERNAL_H
23 
24 #include <stdint.h>
25 #include "srix/srix.h"
26 #include "mikai-error.h"
27 
31 struct MyKey {
32  uint32_t encryptionKey; /* Session Key */
33  Srix *srix4k; /* SRIX4k tag */
34  MikaiError error; /* Error */
35 };
36 
37 #endif /* MIKAI_MIKAI_INTERNAL_H */
MyKey::encryptionKey
uint32_t encryptionKey
Definition: mikai-internal.h:32
MyKey
Struct that represents a MyKey.
Definition: mikai-internal.h:31
mikai-error.h
MyKey::error
MikaiError error
Definition: mikai-internal.h:34
Srix
Generic SRIX4K tag.
Definition: srix.c:29
MikaiError
Error structure that contains a description message.
Definition: mikai-error.h:40
srix.h
MyKey::srix4k
Srix * srix4k
Definition: mikai-internal.h:33