HomeSort by: relevance | last modified time | path
    Searched refs:authzid (Results 1 - 17 of 17) sorted by relevancy

  /src/crypto/external/bsd/libsaslc/dist/src/
mech_plain.c 72 const char *authzid, *authcid, *passwd; local
76 authzid = saslc_sess_getprop(sess, SASLC_PLAIN_AUTHZID);
77 if (authzid != NULL && strlen(authzid) > CRED_MAX_LEN) {
79 "authzid should be shorter than 256 characters");
107 len = asprintf(&outstr, "%s%c%s%c%s", authzid != NULL ? authzid : "",
117 "authzid='%s' authcid='%s' passwd='%s'\n",
118 authzid != NULL ? authzid : "", authcid, passwd)
    [all...]
mech_digestmd5.c 174 char *authzid; member in struct:__anon966
469 /* If authzid is specified, then A1 is */
472 /* ":", nonce-value, ":", cnonce-value, ":", unq(authzid-value) } */
474 /* If authzid is not specified, then A1 is */
483 if (ms->rdata.authzid == NULL)
487 if ((unq_authzid = unq(ms->rdata.authzid)) == NULL)
1895 free(rdata->authzid);
1953 const char *authzid; local
1998 authzid = saslc_sess_getprop(sess, SASLC_DIGESTMD5_AUTHZID);
1999 if (authzid != NULL)
    [all...]
  /src/external/bsd/openldap/dist/libraries/libldap/
whoami.c 35 * LDAP Who Am I? (Extended) Operation <draft-zeilenga-ldap-authzid-xx.txt>
41 struct berval **authzid )
49 assert( authzid != NULL );
51 *authzid = NULL;
53 rc = ldap_parse_extended_result( ld, res, &retoid, authzid, 0 );
85 struct berval **authzid,
100 rc = ldap_parse_whoami( ld, res, authzid );
  /src/external/bsd/openldap/dist/include/
lutil_ldap.h 41 char *authzid ));
ldap.h 2352 struct berval **authzid ));
2363 struct berval **authzid,
  /src/external/bsd/openldap/dist/tests/scripts/
test014-whoami 76 -e \!authzid=""
87 -e \!authzid="dn:$BABSDN"
98 -e \!authzid="u:uham"
112 AUTHZID="u:bjorn"
113 echo "Testing ldapwhoami as ${BINDDN} for ${AUTHZID} (dn.exact)..."
115 -e \!authzid="$AUTHZID"
126 AUTHZID="u:bjorn"
127 echo "Testing ldapwhoami as ${BINDDN} for ${AUTHZID} (u)..."
129 -e \!authzid="$AUTHZID
    [all...]
  /src/external/bsd/openldap/dist/libraries/liblutil/
sasl.c 46 char *authzid; member in struct:lutil_sasl_defaults_s
64 if (defs->authzid) ber_memfree(defs->authzid);
77 char *authzid )
89 defaults->authzid = authzid ? ber_strdup(authzid) : NULL;
100 if( defaults->authzid == NULL ) {
101 ldap_get_option( ld, LDAP_OPT_X_SASL_AUTHZID, &defaults->authzid );
132 if( defaults ) dflt = defaults->authzid;
    [all...]
  /src/external/bsd/openldap/dist/clients/tools/
ldapwhoami.c 62 fprintf( stderr, _("Issue LDAP Who am I? operation to request user's authzid\n\n"));
119 struct berval *authzid = NULL; local
189 rc = ldap_parse_whoami( ld, res, &authzid );
197 if( authzid != NULL ) {
198 if( authzid->bv_len == 0 ) {
201 printf("%s\n", authzid->bv_val );
236 ber_bvfree( authzid );
common.h 87 extern char *authzid;
common.c 102 char *authzid = NULL; variable
329 N_(" [!]authzid=<authzid> (RFC 4370; \"dn:<dn>\" or \"u:<user>\")\n")
372 N_(" -X authzid SASL authorization identity (\"dn:<dn>\" or \"u:<user>\")\n"),
481 } else if ( strcasecmp( control, "authzid" ) == 0 ) {
482 if( authzid != NULL ) {
483 fprintf( stderr, "authzid control previously specified\n");
488 fprintf( stderr, "authzid control incompatible with proxydn\n");
493 fprintf( stderr, "authzid: control value expected\n" );
497 fprintf( stderr, "authzid: must be marked critical\n" )
    [all...]
  /src/external/bsd/openldap/dist/contrib/slapd-modules/authzid/
Makefile 34 PROGRAMS = authzid.la
52 authzid.la: authzid.lo
authzid.c 1 /* $NetBSD: authzid.c,v 1.3 2025/09/05 21:16:15 christos Exp $ */
3 /* authzid.c - RFC 3829 Authzid Control */
24 * RFC 3829 Authzid
30 __RCSID("$NetBSD: authzid.c,v 1.3 2025/09/05 21:16:15 christos Exp $");
71 static slap_overinst authzid; variable
314 rs->sr_text = "authzid control specified multiple times";
319 rs->sr_text = "authzid control value not absent";
338 "slapo-authzid must be global" );
380 authzid.on_bi.bi_type = "authzid"
    [all...]
  /src/external/bsd/openldap/dist/tests/data/
lloadd-sasl.conf 26 authzid="dn:cn=Manager,dc=example,dc=com"
  /src/external/bsd/openldap/dist/contrib/slapd-modules/vc/
vc.c 76 struct berval *authzid,
106 if ( authzid ) {
107 ber_printf( ber, "tO", LDAP_TAG_EXOP_VERIFY_CREDENTIALS_AUTHZID, authzid );
  /src/external/bsd/openldap/dist/tests/data/regressions/its9863/
its9863 46 echo "Test #1 ensures that authzid in IDAssertBind is working correctly."
169 authzid="dn:cn=manager,dc=example,dc=com"
  /src/external/ibm-public/postfix/dist/src/global/
dict_ldap.c 358 char *authzid; member in struct:bind_props
377 in->result = ctx->authzid;
437 props.authzid = dict_ldap->sasl_authz;
  /src/external/bsd/openldap/dist/servers/slapd/
proto-slap.h 1729 struct berval *authzid ));

Completed in 31 milliseconds