├── .gitignore ├── Hitag2 ├── 1.c ├── 2.c ├── Hitag2.c ├── README.md └── hitag.c ├── Keeloq ├── Create_keeloq_key.c ├── Keeloq_Decrypt.c ├── Keeloq_Encrypt.c ├── README.md └── Standard_Keeloq_Decrypt.c └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobier/KeyfobAttack/HEAD/.gitignore -------------------------------------------------------------------------------- /Hitag2/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobier/KeyfobAttack/HEAD/Hitag2/1.c -------------------------------------------------------------------------------- /Hitag2/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobier/KeyfobAttack/HEAD/Hitag2/2.c -------------------------------------------------------------------------------- /Hitag2/Hitag2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobier/KeyfobAttack/HEAD/Hitag2/Hitag2.c -------------------------------------------------------------------------------- /Hitag2/README.md: -------------------------------------------------------------------------------- 1 | # HITAG2 加解密算法 2 | -------------------------------------------------------------------------------- /Hitag2/hitag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobier/KeyfobAttack/HEAD/Hitag2/hitag.c -------------------------------------------------------------------------------- /Keeloq/Create_keeloq_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobier/KeyfobAttack/HEAD/Keeloq/Create_keeloq_key.c -------------------------------------------------------------------------------- /Keeloq/Keeloq_Decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobier/KeyfobAttack/HEAD/Keeloq/Keeloq_Decrypt.c -------------------------------------------------------------------------------- /Keeloq/Keeloq_Encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobier/KeyfobAttack/HEAD/Keeloq/Keeloq_Encrypt.c -------------------------------------------------------------------------------- /Keeloq/README.md: -------------------------------------------------------------------------------- 1 | # 这里是Keeloq算法目录 2 | -------------------------------------------------------------------------------- /Keeloq/Standard_Keeloq_Decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobier/KeyfobAttack/HEAD/Keeloq/Standard_Keeloq_Decrypt.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobier/KeyfobAttack/HEAD/README.md --------------------------------------------------------------------------------