Method
GckSessionset_pin_async
Declaration [src]
void
gck_session_set_pin_async (
  GckSession* self,
  const guchar* old_pin,
  gsize n_old_pin,
  const guchar* new_pin,
  gsize n_new_pin,
  GCancellable* cancellable,
  GAsyncReadyCallback callback,
  gpointer user_data
)
Description [src]
Change the user’s pin on this slot that this session is opened on.
This call will return immediately and completes asynchronously.
Parameters
- old_pin
- 
            Type: An array of gucharThe user’s old PIN, or NULLfor protected authentication path.The argument can be NULL.The length of the array is specified in the n_new_pinargument.The data is owned by the caller of the method. 
- n_old_pin
- 
            Type: gsizeThe length of the old PIN. 
- new_pin
- 
            Type: An array of gucharThe user’s new PIN, or NULLfor protected authentication path.The argument can be NULL.The length of the array is specified in the n_new_pinargument.The data is owned by the caller of the method. 
- n_new_pin
- 
            Type: gsizeThe length of the new PIN. 
- cancellable
- 
            Type: GCancellableOptional cancellation object, or NULL.The argument can be NULL.The data is owned by the caller of the method. 
- callback
- 
            Type: GAsyncReadyCallbackCalled when the operation completes. The argument can be NULL.
- user_data
- 
            Type: gpointerData to pass to the callback. The argument can be NULL.The data is owned by the caller of the method.