1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2019 Merlok
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
7 //-----------------------------------------------------------------------------
8 // NFC Data Exchange Format (NDEF) functions
9 //-----------------------------------------------------------------------------
19 tnfEmptyRecord
= 0x00,
20 tnfWellKnownRecord
= 0x01,
21 tnfMIMEMediaRecord
= 0x02,
22 tnfAbsoluteURIRecord
= 0x03,
23 tnfExternalRecord
= 0x04,
24 tnfUnknownRecord
= 0x05,
25 tnfUnchangedRecord
= 0x06
30 stRSASSA_PSS_SHA_1
= 0x01,
31 stRSASSA_PKCS1_v1_5_WITH_SHA_1
= 0x02,
41 } ndefCertificateFormat_t
;
49 TypeNameFormat_t TypeNameFormat
;
60 extern int NDEFDecodeAndPrint(uint8_t *ndef
, size_t ndefLen
, bool verbose
);