2 .\" Copyright (C) 1998-2003, Carnegie Mellon Univeristy. All Rights Reserved.
3 .\" Portions Copyright (C) 2003, Sun Microsystems,
4 .\" Inc. All Rights Reserved
5 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License.
6 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
7 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
8 .TH SASL_GETSECRET_T 3SASL "Oct 27, 2003"
10 sasl_getsecret_t \- the SASL callback function for secrets (passwords)
14 \fBcc\fR [ \fIflag\fR ... ] \fIfile\fR ... \fB-lsasl\fR [ \fIlibrary\fR ... ]
15 #include <sasl/sasl.h>
17 \fBint\fR \fBsasl_getsecret_t\fR(\fBsasl_conn_t *\fR\fIconn\fR, \fBvoid *\fR\fIcontext\fR,
18 \fBint\fR \fIid\fR, \fBsasl_secret_t **\fR\fIpsecret\fR);
24 Use the \fBsasl_getsecret_t()\fR function to retrieve the secret from the
25 application. Allocate a \fBsasl_secret_t\fR to length
26 \fBsizeof(sasl_secret_t)+<length of secret>\fR. \fBsasl_secret_t\fR has two
27 fields of \fIlen\fR which contain the length of \fIsecret\fR in bytes and the
28 data contained in \fIsecret\fR. The \fIsecret\fR string does not need to be
37 The connection context
46 The context from the callback structure
64 To cancel, set the value of \fIpsecret\fR to \fINULL\fR. Otherwise, set the
65 value to the password structure. The structure must persist until the next call
66 to \fBsasl_getsecret_t()\fR in the same connection. Middleware erases password
67 data when it is done with it.
73 Like other SASL callback functions, \fBsasl_getsecret_t()\fR returns an integer
74 that corresponds to a SASL error code. See <\fBsasl.h\fR> for a complete list
83 The call to \fBsasl_getsecret_t()\fR was successful.
88 See \fBsasl_errors\fR(3SASL) for information on SASL error codes.
92 See \fBattributes\fR(5) for descriptions of the following attributes:
100 ATTRIBUTE TYPE ATTRIBUTE VALUE
102 Interface Stability Evolving
110 \fBsasl_errors\fR(3SASL), \fBattributes\fR(5)