OSX CryptoTokenKit智能卡返回错误6d00



我试图使用CryptoTokenKit读取OSX上智能卡的主文件,但我总是得到statusSword 6d00作为响应。我也试着运行这个琐碎的例子,做了一些修改,但还是出现了同样的错误。我的阅读器是金雅拓电脑双读卡器。

如果你有任何修复它的建议,请告诉我。

我使用以下代码:

    TKSmartCardSlot *slot = [self.smartCardManager slotWithName:slotName];
    TKSmartCard *card = [slot makeSmartCard];
    card.sensitive = YES;
    [card beginSessionWithReply:^(BOOL success, NSError *error)  {
        NSLog(@"%@", error);
        NSLog(@"Proto: %ld", card.currentProtocol);
        NSData *data = [CommonUtil dataFromHexString:@"3F00"]; //<3f00>
        NSLog(@"%@", data);
        [card sendIns:0xA4 p1:0x00 p2:0x00 data:data le:@0
                reply:^(NSData *replyData, UInt16 sw, NSError *error)
         {
             NSLog(@"Response: %@", replyData);
             if (error) {
                 if (error.code == TKErrorCodeCommunicationError) {
                     // set response error code.
                 }
                 NSLog(@"%@", error);
             }
         }];
    }];

这很傻,但在apdu中,如果没有成功代码90 00,就不会有响应数据,le应该是nil

[card sendIns:0xA4 p1:0x00 p2:0x00 data:nil le:nil
                reply:^(NSData *replyData, UInt16 sw, NSError *error)
         {
         }

状态字6D00为"指令代码不受支持或无效"http://www.cardwerk.com/smartcards/smartcard_standard_ISO7816-4_5_basic_organizations.aspx

并非所有板卡都允许选择主文件(0x3F00(。

相关内容

  • 没有找到相关文章

最新更新