2020-02-27 23:35:17 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
2022-01-07 08:58:03 +08:00
|
|
|
// Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
2020-02-27 23:35:17 +08:00
|
|
|
//
|
2022-01-07 08:58:03 +08:00
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// See LICENSE.txt for the text of the license.
|
2020-02-27 23:35:17 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Utility functions used in many places, not specific to any piece of code.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef __CARDHELPER_H
|
|
|
|
#define __CARDHELPER_H
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include "common.h"
|
|
|
|
|
2023-07-23 17:57:03 +08:00
|
|
|
bool IsHIDSamPresent(bool verbose);
|
2021-04-04 23:01:43 +08:00
|
|
|
bool IsCardHelperPresent(bool verbose);
|
2020-02-27 23:35:17 +08:00
|
|
|
bool Encrypt(uint8_t *src, uint8_t *dest);
|
|
|
|
bool Decrypt(uint8_t *src, uint8_t *dest);
|
|
|
|
void DecodeBlock6(uint8_t *src);
|
2020-03-12 04:00:19 +08:00
|
|
|
uint8_t GetNumberBlocksForUserId(uint8_t *src);
|
2020-07-20 02:45:47 +08:00
|
|
|
uint8_t GetPinSize(uint8_t *src);
|
2021-04-04 23:01:43 +08:00
|
|
|
|
|
|
|
int GetConfigCardByIdx(uint8_t typ, uint8_t *blocks);
|
|
|
|
int GetConfigCardStrByIdx(uint8_t typ, uint8_t *out);
|
|
|
|
int VerifyRdv4Signature(uint8_t *memid, uint8_t *signature);
|
2020-02-27 23:35:17 +08:00
|
|
|
#endif
|