Package apple.cryptotokenkit.protocol
Interface TKTokenDriverDelegate
-
- All Known Subinterfaces:
TKSmartCardTokenDriverDelegate
public interface TKTokenDriverDelegateDelegate for customizing token driver operations. SmartCard tokens should implement TKSmartCardTokenDriverDelegate instead of this base protocol.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voidtokenDriverTerminateToken(TKTokenDriver driver, TKToken token)Terminates previously created token, should release all resources associated with it.default TKTokentokenDriverTokenForConfigurationError(TKTokenDriver driver, TKTokenConfiguration configuration, org.moe.natj.general.ptr.Ptr<NSError> error)Creates new token for specified configuration.
-
-
-
Method Detail
-
tokenDriverTerminateToken
default void tokenDriverTerminateToken(TKTokenDriver driver, TKToken token)
Terminates previously created token, should release all resources associated with it.
-
tokenDriverTokenForConfigurationError
default TKToken tokenDriverTokenForConfigurationError(TKTokenDriver driver, TKTokenConfiguration configuration, org.moe.natj.general.ptr.Ptr<NSError> error)
Creates new token for specified configuration. SmartCard token drivers should not implement this method.
-
-