Virtual Method
GioTlsPasswordset_value
since: 2.30
Declaration [src]
void
set_value (
  GTlsPassword* password,
  guchar* value,
  gssize length,
  GDestroyNotify destroy
)
Description [src]
Provide the value for this password.
The value will be owned by the password object, and later freed using the destroy function callback.
Specify the length, for a non-nul-terminated password. Pass -1 as
length if using a nul-terminated password, and length will be
calculated automatically. (Note that the terminating nul is not
considered part of the password in this case.).
Available since: 2.30
Parameters
- value
- 
            Type: An array of gucharThe value for the password. The length of the array is specified in the lengthargument.The data is owned by the caller of the method. 
- length
- 
            Type: gssizeThe length of the password, or -1. 
- destroy
- 
            Type: GDestroyNotifyA function to use to free the password.