textual
[RRG-proxmark3.git] / client / src / cmdhffelica.h
blob63f738a2d9669b60dcd1b57cd0123a07473c5eac
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2017 October, Satsuoni
3 // 2017 iceman
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
6 // the license.
7 //-----------------------------------------------------------------------------
8 // High frequency ISO18092 / FeliCa commands
9 //-----------------------------------------------------------------------------
11 #ifndef CMDHFFELICA_H__
12 #define CMDHFFELICA_H__
14 #include "common.h"
15 #include "iso18.h"
17 int CmdHFFelica(const char *Cmd);
18 int read_felica_uid(bool loop, bool verbose);
19 int send_request_service(uint8_t flags, uint16_t datalen, uint8_t *data, bool verbose);
20 int send_rd_plain(uint8_t flags, uint16_t datalen, uint8_t *data, bool verbose, felica_read_without_encryption_response_t *rd_noCry_resp);
22 #endif