mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
refactory parity files a bit
This commit is contained in:
parent
61c9252e15
commit
0942ce7a68
8 changed files with 30 additions and 76 deletions
|
@ -189,7 +189,6 @@ add_subdirectory(${PM3_ROOT}/client/deps deps)
|
|||
set (TARGET_SOURCES
|
||||
${PM3_ROOT}/common/commonutil.c
|
||||
${PM3_ROOT}/common/util_posix.c
|
||||
${PM3_ROOT}/common/parity.c
|
||||
${PM3_ROOT}/common/bucketsort.c
|
||||
${PM3_ROOT}/common/crapto1/crapto1.c
|
||||
${PM3_ROOT}/common/crapto1/crypto1.c
|
||||
|
|
|
@ -660,7 +660,6 @@ SRCS += bucketsort.c \
|
|||
iso15693tools.c \
|
||||
legic_prng.c \
|
||||
lfdemod.c \
|
||||
parity.c \
|
||||
util_posix.c
|
||||
|
||||
# swig
|
||||
|
|
|
@ -57,7 +57,6 @@ endif ()
|
|||
add_library(pm3rrg_rdv4 SHARED
|
||||
${PM3_ROOT}/common/commonutil.c
|
||||
${PM3_ROOT}/common/util_posix.c
|
||||
${PM3_ROOT}/common/parity.c
|
||||
${PM3_ROOT}/common/bucketsort.c
|
||||
${PM3_ROOT}/common/crapto1/crapto1.c
|
||||
${PM3_ROOT}/common/crapto1/crypto1.c
|
||||
|
|
|
@ -190,7 +190,6 @@ add_subdirectory(${PM3_ROOT}/client/deps deps)
|
|||
set (TARGET_SOURCES
|
||||
${PM3_ROOT}/common/commonutil.c
|
||||
${PM3_ROOT}/common/util_posix.c
|
||||
${PM3_ROOT}/common/parity.c
|
||||
${PM3_ROOT}/common/bucketsort.c
|
||||
${PM3_ROOT}/common/crapto1/crapto1.c
|
||||
${PM3_ROOT}/common/crapto1/crypto1.c
|
||||
|
|
|
@ -177,12 +177,6 @@ static int print_authentication2(void) {
|
|||
|
||||
static const char *felica_model_name(uint8_t rom_type, uint8_t ic_type) {
|
||||
// source: mainly https://www.sony.net/Products/felica/business/tech-support/list.html
|
||||
|
||||
if (ic_type >= 0x14 && ic_type <= 0x1F) {
|
||||
return "FeliCa Mobile IC Chip V3.0";
|
||||
}
|
||||
|
||||
|
||||
switch (ic_type) {
|
||||
// FeliCa Standard Products:
|
||||
case 0x46:
|
||||
|
@ -239,7 +233,7 @@ static const char *felica_model_name(uint8_t rom_type, uint8_t ic_type) {
|
|||
case 0x1D:
|
||||
case 0x1E:
|
||||
case 0x1F:
|
||||
return "Mobile FeliCa IC Chip V3.0";
|
||||
return "FeliCa Mobile IC Chip V3.0";
|
||||
case 0x10:
|
||||
case 0x11:
|
||||
case 0x12:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue