Hello everyone,
Can someone explain how to use this new function for iOS 14?
Authenticate command (0x35 command code)
What does it mean by "in-process reply is returned to the caller without any processing"?
Seems clear enough but I am getting a Result Failure with Error:
Can someone explain how to use this new function for iOS 14?
Authenticate command (0x35 command code)
Authenticate command (0x35 command code) as defined in ISO15693-3 specification. Please note that in-process reply is returned to the caller without any processing.
Code Block public func authenticate(requestFlags flags: NFCISO15693RequestFlag, cryptoSuiteIdentifier: Int, message: Data, resultHandler: @escaping (Result<(NFCISO15693ResponseFlag, Data), Error>) -> Void)
What does it mean by "in-process reply is returned to the caller without any processing"?
Seems clear enough but I am getting a Result Failure with Error:
Code Block Tag connection lost
I managed to get it working!!!
So the message data should be created as the APDU wants,
but we should remove the Tag UID, the 0x35 command and the 0x20 flag from the APDU Byte array.
Seems like this "authenticate" command actually fills those spots for you!!
(Some better documentation would be nice tho)
So the message data should be created as the APDU wants,
but we should remove the Tag UID, the 0x35 command and the 0x20 flag from the APDU Byte array.
Seems like this "authenticate" command actually fills those spots for you!!
Excellent job CoreNFC team!!!
(Some better documentation would be nice tho)