Clear SSL client certificate state from JavaScript

后端 未结 3 1243
谎友^
谎友^ 2020-12-16 01:51

I\'m using client certificates in SSL sessions to authenticate users, but I\'m having a bit of a problem with cached sessions. (I have configured IIS to accept—not req

3条回答
  •  暖寄归人
    2020-12-16 02:28

    You may be interested in this discussion and this Chromium issue. In particular, you should try:

    if (window.crypto) window.crypto.logout();
    

提交回复
热议问题