Credentials

open class Credentials(pointer: <Error class: unknown class><<Error class: unknown class>>)

The #GCredentials type is a reference-counted wrapper for native credentials. This information is typically used for identifying, authenticating and authorizing other processes.

Some operating systems supports looking up the credentials of the remote peer of a communication endpoint - see e.g. g_socket_get_credentials().

Some operating systems supports securely sending and receiving credentials over a Unix Domain Socket, see #GUnixCredentialsMessage, g_unix_connection_send_credentials() and g_unix_connection_receive_credentials() for details.

On Linux, the native credential type is a struct ucred - see the unix(7) man page for details. This corresponds to %G_CREDENTIALS_TYPE_LINUX_UCRED.

On Apple operating systems (including iOS, tvOS, and macOS), the native credential type is a struct xucred. This corresponds to %G_CREDENTIALS_TYPE_APPLE_XUCRED.

On FreeBSD, Debian GNU/kFreeBSD, and GNU/Hurd, the native credential type is a struct cmsgcred. This corresponds to %G_CREDENTIALS_TYPE_FREEBSD_CMSGCRED.

On NetBSD, the native credential type is a struct unpcbid. This corresponds to %G_CREDENTIALS_TYPE_NETBSD_UNPCBID.

On OpenBSD, the native credential type is a struct sockpeercred. This corresponds to %G_CREDENTIALS_TYPE_OPENBSD_SOCKPEERCRED.

On Solaris (including OpenSolaris and its derivatives), the native credential type is a ucred_t. This corresponds to %G_CREDENTIALS_TYPE_SOLARIS_UCRED.

Since GLib 2.72, on Windows, the native credentials may contain the PID of a process. This corresponds to %G_CREDENTIALS_TYPE_WIN32_PID.

Skipped during bindings generation

  • parameter native: gpointer

  • method to_string: C function g_credentials_to_string is ignored

Since

2.26

Constructors

Link copied to clipboard
constructor()

Creates a new #GCredentials object with credentials matching the the current process.

constructor(pointer: <Error class: unknown class><<Error class: unknown class>>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val gioCredentialsPointer: <Error class: unknown class><<Error class: unknown class>>

Functions

Link copied to clipboard
open fun getUnixPid(): <Error class: unknown class><Int>

Tries to get the UNIX process identifier from @credentials. This method is only available on UNIX platforms.

Link copied to clipboard
open fun getUnixUser(): <Error class: unknown class><<Error class: unknown class>>

Tries to get the UNIX user identifier from @credentials. This method is only available on UNIX platforms.

Link copied to clipboard
open fun isSameUser(otherCredentials: Credentials): <Error class: unknown class><Boolean>

Checks if @credentials and @other_credentials is the same user.

Link copied to clipboard
open fun setUnixUser(uid: <Error class: unknown class>): <Error class: unknown class><Boolean>

Tries to set the UNIX user identifier on @credentials. This method is only available on UNIX platforms.