Deauthenticate from the Enterprise server, clearing any cached credentials.
()
| 103 | |
| 104 | |
| 105 | def deauthenticate(): |
| 106 | """ |
| 107 | Deauthenticate from the Enterprise server, clearing any cached credentials. |
| 108 | """ |
| 109 | if not is_connected(): |
| 110 | raise RuntimeError("Not connected but calling deauthenticate. This is likely an error in your script!") |
| 111 | if not core.BNDeauthenticateEnterpriseServer(): |
| 112 | raise RuntimeError(last_error()) |
| 113 | |
| 114 | |
| 115 | def cancel_authentication(): |
nothing calls this directly
no test coverage detected