#include <IKeyChain.h>
Inheritance diagram for mx::IKeyChain:
Public Member Functions | |
virtual mxmPerlStyleHash & | chainKeys ()=0 |
Returns a reference to an encapsuled hash holding the actual keys (user/password) pairs - use it to set up your key chain. | |
virtual void | enableKeyForwarding (bool enabled)=0 |
Toggles whether or not key transactions should be forwarded to another external authenticator in case all keys have already been tried. |
A key chain holds multiple (username, password)
pairs and serves them to an IRequiresExternalAuthentication
-entity. If all of these keys are tried for a given authentication procedure, the key chain can switch further transactions through to another external authenticator, if such is attached (that's why it also implements IRequiresExternalAuthenticator
).
[khe]
Kai Hergenroether
|
Toggles whether or not key transactions should be forwarded to another external authenticator in case all keys have already been tried.
Default is Implemented in mx::KeyChain. |