Home
last modified time | relevance | path

Searched refs:authcid (Results 1 – 25 of 205) sorted by relevance

123456789

/dports/lang/racket/racket-8.3/share/pkgs/sasl-lib/private/
H A Dcram-md5.rkt12 (struct cram-md5-client-ctx sasl-ctx (p-authcid p-password))
16 (define (make-cram-md5-client-ctx authcid password)
17 (define p-authcid (saslprep authcid #:who 'make-cram-md5-client-ctx))
19 (cram-md5-client-ctx #f cram-md5-client-receive-1 p-authcid p-password))
22 (match-define (cram-md5-client-ctx _ _ p-authcid p-password) ctx)
24 (define response (format "~a ~a" p-authcid digest))
27 (define (cram-md5-client-response authcid password challenge)
28 (define p-authcid (saslprep authcid #:who 'cram-md5-client-response))
31 (format "~a ~a" p-authcid digest))
/dports/security/pear-Auth_SASL2/Auth_SASL2-0.2.0/Auth/SASL2/
H A DDigestMD5.php55 * @param string $authcid Authentication id (username)
64 function getResponse($authcid, $pass, $challenge, $hostname, $service, $authzid = '') argument
75 …$response_value = $this->_getResponseValue($authcid, $pass, $challenge['realm'], $challenge['nonce…
79 ',nonce="%s",cnonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $ch…
81 …nonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $challenge['nonc…
152 * @param string $authcid Authentication id (username)
162 function _getResponseValue($authcid, $pass, $realm, $nonce, $cnonce, $digest_uri, $authzid = '') argument
165 …$A1 = sprintf('%s:%s:%s', pack('H32', md5(sprintf('%s:%s:%s', $authcid, $realm, $pass))), $nonce, …
167 …$A1 = sprintf('%s:%s:%s:%s', pack('H32', md5(sprintf('%s:%s:%s', $authcid, $realm, $pass))), $nonc…
H A DSCRAM.php104 * @param string $authcid Authentication id (username)
112 public function getResponse($authcid, $pass, $challenge = NULL, $authzid = NULL) argument
114 $authcid = $this->_formatName($authcid);
115 if (empty($authcid))
130 return $this->_generateInitialResponse($authcid, $authzid);
160 * @param string $authcid Prepared authentication identity.
165 private function _generateInitialResponse($authcid, $authzid) argument
175 $this->first_message_bare = 'n=' . $authcid . ',r=' . $this->cnonce;
/dports/mail/roundcube/roundcubemail-1.5.1/vendor/pear/auth_sasl/Auth/SASL/
H A DDigestMD5.php55 * @param string $authcid Authentication id (username)
64 function getResponse($authcid, $pass, $challenge, $hostname, $service, $authzid = '') argument
75 …$response_value = $this->_getResponseValue($authcid, $pass, $challenge['realm'], $challenge['nonce…
79 ',nonce="%s",cnonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $ch…
81 …nonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $challenge['nonc…
152 * @param string $authcid Authentication id (username)
162 function _getResponseValue($authcid, $pass, $realm, $nonce, $cnonce, $digest_uri, $authzid = '') argument
165 …$A1 = sprintf('%s:%s:%s', pack('H32', md5(sprintf('%s:%s:%s', $authcid, $realm, $pass))), $nonce, …
167 …$A1 = sprintf('%s:%s:%s:%s', pack('H32', md5(sprintf('%s:%s:%s', $authcid, $realm, $pass))), $nonc…
H A DSCRAM.php102 * @param string $authcid Authentication id (username)
110 public function getResponse($authcid, $pass, $challenge = NULL, $authzid = NULL) argument
112 $authcid = $this->_formatName($authcid);
113 if (empty($authcid))
128 return $this->_generateInitialResponse($authcid, $authzid);
158 * @param string $authcid Prepared authentication identity.
163 private function _generateInitialResponse($authcid, $authzid) argument
173 $this->first_message_bare = 'n=' . $authcid . ',r=' . $this->cnonce;
/dports/deskutils/egroupware/egroupware/vendor/egroupware/z-push-dev/src/backend/imap/Auth/SASL/
H A DDigestMD5.php53 * @param string $authcid Authentication id (username)
62 function getResponse($authcid, $pass, $challenge, $hostname, $service, $authzid = '') argument
73 …$response_value = $this->_getResponseValue($authcid, $pass, $challenge['realm'], $challenge['nonce…
77 ',nonce="%s",cnonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $ch…
79 …nonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $challenge['nonc…
150 * @param string $authcid Authentication id (username)
160 function _getResponseValue($authcid, $pass, $realm, $nonce, $cnonce, $digest_uri, $authzid = '') argument
163 …$A1 = sprintf('%s:%s:%s', pack('H32', md5(sprintf('%s:%s:%s', $authcid, $realm, $pass))), $nonce, …
165 …$A1 = sprintf('%s:%s:%s:%s', pack('H32', md5(sprintf('%s:%s:%s', $authcid, $realm, $pass))), $nonc…
H A DSCRAM.php100 * @param string $authcid Authentication id (username)
108 public function getResponse($authcid, $pass, $challenge = NULL, $authzid = NULL) argument
110 $authcid = $this->_formatName($authcid);
111 if (empty($authcid))
126 return $this->_generateInitialResponse($authcid, $authzid);
156 * @param string $authcid Prepared authentication identity.
161 private function _generateInitialResponse($authcid, $authzid) argument
171 $this->first_message_bare = 'n=' . $authcid . ',r=' . $this->cnonce;
/dports/deskutils/egroupware/egroupware/vendor/pear/auth_sasl/Auth/SASL/
H A DDigestMD5.php55 * @param string $authcid Authentication id (username)
64 function getResponse($authcid, $pass, $challenge, $hostname, $service, $authzid = '') argument
75 …$response_value = $this->_getResponseValue($authcid, $pass, $challenge['realm'], $challenge['nonce…
79 ',nonce="%s",cnonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $ch…
81 …nonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $challenge['nonc…
152 * @param string $authcid Authentication id (username)
162 function _getResponseValue($authcid, $pass, $realm, $nonce, $cnonce, $digest_uri, $authzid = '') argument
165 …$A1 = sprintf('%s:%s:%s', pack('H32', md5(sprintf('%s:%s:%s', $authcid, $realm, $pass))), $nonce, …
167 …$A1 = sprintf('%s:%s:%s:%s', pack('H32', md5(sprintf('%s:%s:%s', $authcid, $realm, $pass))), $nonc…
H A DSCRAM.php102 * @param string $authcid Authentication id (username)
110 public function getResponse($authcid, $pass, $challenge = NULL, $authzid = NULL) argument
112 $authcid = $this->_formatName($authcid);
113 if (empty($authcid))
128 return $this->_generateInitialResponse($authcid, $authzid);
158 * @param string $authcid Prepared authentication identity.
163 private function _generateInitialResponse($authcid, $authzid) argument
173 $this->first_message_bare = 'n=' . $authcid . ',r=' . $this->cnonce;
/dports/security/pear-Auth_SASL/Auth_SASL-1.1.0/Auth/SASL/
H A DDigestMD5.php55 * @param string $authcid Authentication id (username)
64 function getResponse($authcid, $pass, $challenge, $hostname, $service, $authzid = '') argument
75 …$response_value = $this->_getResponseValue($authcid, $pass, $challenge['realm'], $challenge['nonce…
79 ',nonce="%s",cnonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $ch…
81 …nonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $challenge['nonc…
152 * @param string $authcid Authentication id (username)
162 function _getResponseValue($authcid, $pass, $realm, $nonce, $cnonce, $digest_uri, $authzid = '') argument
165 …$A1 = sprintf('%s:%s:%s', pack('H32', md5(sprintf('%s:%s:%s', $authcid, $realm, $pass))), $nonce, …
167 …$A1 = sprintf('%s:%s:%s:%s', pack('H32', md5(sprintf('%s:%s:%s', $authcid, $realm, $pass))), $nonc…
H A DSCRAM.php102 * @param string $authcid Authentication id (username)
110 public function getResponse($authcid, $pass, $challenge = NULL, $authzid = NULL) argument
112 $authcid = $this->_formatName($authcid);
113 if (empty($authcid))
128 return $this->_generateInitialResponse($authcid, $authzid);
158 * @param string $authcid Prepared authentication identity.
163 private function _generateInitialResponse($authcid, $authzid) argument
173 $this->first_message_bare = 'n=' . $authcid . ',r=' . $this->cnonce;
/dports/www/groupoffice/groupoffice-6.4.231-php-71/go/vendor/pear/Auth/SASL/
H A DDigestMD5.php55 * @param string $authcid Authentication id (username)
64 public function getResponse($authcid, $pass, $challenge, $hostname, $service, $authzid = '') argument
75 …$response_value = $this->getResponseValue($authcid, $pass, $challenge['realm'], $challenge['nonce'…
79 ',nonce="%s",cnonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $ch…
81 …nonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $challenge['nonc…
152 * @param string $authcid Authentication id (username)
162 …private function getResponseValue($authcid, $pass, $realm, $nonce, $cnonce, $digest_uri, $authzid … argument
165 …$A1 = sprintf('%s:%s:%s', pack('H32', md5(sprintf('%s:%s:%s', $authcid, $realm, $pass))), $nonce, …
167 …$A1 = sprintf('%s:%s:%s:%s', pack('H32', md5(sprintf('%s:%s:%s', $authcid, $realm, $pass))), $nonc…
H A DSCRAM.php102 * @param string $authcid Authentication id (username)
110 public function getResponse($authcid, $pass, $challenge = NULL, $authzid = NULL) argument
112 $authcid = $this->_formatName($authcid);
113 if (empty($authcid))
128 return $this->_generateInitialResponse($authcid, $authzid);
158 * @param string $authcid Prepared authentication identity.
163 private function _generateInitialResponse($authcid, $authzid) argument
173 $this->first_message_bare = 'n=' . $authcid . ',r=' . $this->cnonce;
/dports/www/groupoffice/groupoffice-6.4.231-php-71/modules/z-push/vendor/z-push/backend/imap/Auth/SASL/
H A DDigestMD5.php53 * @param string $authcid Authentication id (username)
62 function getResponse($authcid, $pass, $challenge, $hostname, $service, $authzid = '') argument
73 …$response_value = $this->_getResponseValue($authcid, $pass, $challenge['realm'], $challenge['nonce…
77 ',nonce="%s",cnonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $ch…
79 …nonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $challenge['nonc…
150 * @param string $authcid Authentication id (username)
160 function _getResponseValue($authcid, $pass, $realm, $nonce, $cnonce, $digest_uri, $authzid = '') argument
163 …$A1 = sprintf('%s:%s:%s', pack('H32', md5(sprintf('%s:%s:%s', $authcid, $realm, $pass))), $nonce, …
165 …$A1 = sprintf('%s:%s:%s:%s', pack('H32', md5(sprintf('%s:%s:%s', $authcid, $realm, $pass))), $nonc…
H A DSCRAM.php100 * @param string $authcid Authentication id (username)
108 public function getResponse($authcid, $pass, $challenge = NULL, $authzid = NULL) argument
110 $authcid = $this->_formatName($authcid);
111 if (empty($authcid))
126 return $this->_generateInitialResponse($authcid, $authzid);
156 * @param string $authcid Prepared authentication identity.
161 private function _generateInitialResponse($authcid, $authzid) argument
171 $this->first_message_bare = 'n=' . $authcid . ',r=' . $this->cnonce;
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/candy-chat/xmpp-prebind-php/lib/Auth/SASL/
H A DDigestMD5.php55 * @param string $authcid Authentication id (username)
64 public function getResponse($authcid, $pass, $challenge, $hostname, $service, $authzid = '') argument
75 …$response_value = $this->getResponseValue($authcid, $pass, $challenge['realm'], $challenge['nonce'…
79 ',nonce="%s",cnonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $ch…
81 …nonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $challenge['nonc…
152 * @param string $authcid Authentication id (username)
162 …private function getResponseValue($authcid, $pass, $realm, $nonce, $cnonce, $digest_uri, $authzid … argument
165 …$A1 = sprintf('%s:%s:%s', pack('H32', md5(sprintf('%s:%s:%s', $authcid, $realm, $pass))), $nonce, …
167 …$A1 = sprintf('%s:%s:%s:%s', pack('H32', md5(sprintf('%s:%s:%s', $authcid, $realm, $pass))), $nonc…
/dports/databases/mantis/mantisbt-2.25.2/plugins/EmailReporting/core_pear/Auth/SASL/
H A DDigestMD5.php57 * @param string $authcid Authentication id (username)
66 function getResponse($authcid, $pass, $challenge, $hostname, $service, $authzid = '') argument
77 …$response_value = $this->_getResponseValue($authcid, $pass, $challenge['realm'], $challenge['nonce…
81 ',nonce="%s",cnonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $ch…
83 …nonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $challenge['nonc…
154 * @param string $authcid Authentication id (username)
164 function _getResponseValue($authcid, $pass, $realm, $nonce, $cnonce, $digest_uri, $authzid = '') argument
167 …$A1 = sprintf('%s:%s:%s', pack('H32', md5(sprintf('%s:%s:%s', $authcid, $realm, $pass))), $nonce, …
169 …$A1 = sprintf('%s:%s:%s:%s', pack('H32', md5(sprintf('%s:%s:%s', $authcid, $realm, $pass))), $nonc…
/dports/www/osticket/upload/include/pear/Auth/SASL/
H A DDigestMD5.php55 * @param string $authcid Authentication id (username)
64 function getResponse($authcid, $pass, $challenge, $hostname, $service, $authzid = '') argument
75 …$response_value = $this->_getResponseValue($authcid, $pass, $challenge['realm'], $challenge['nonce…
79 ',nonce="%s",cnonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $ch…
81 …nonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $challenge['nonc…
152 * @param string $authcid Authentication id (username)
162 function _getResponseValue($authcid, $pass, $realm, $nonce, $cnonce, $digest_uri, $authzid = '') argument
165 …$A1 = sprintf('%s:%s:%s', pack('H32', md5(sprintf('%s:%s:%s', $authcid, $realm, $pass))), $nonce, …
167 …$A1 = sprintf('%s:%s:%s:%s', pack('H32', md5(sprintf('%s:%s:%s', $authcid, $realm, $pass))), $nonc…
/dports/net/openldap25-client/openldap-2.5.9/libraries/liblutil/
H A Dsasl.c39 char *authcid; member
57 if (defs->authcid) ber_memfree(defs->authcid); in lutil_sasl_freedefs()
70 char *authcid, in lutil_sasl_defaults() argument
82 defaults->authcid = authcid ? ber_strdup(authcid) : NULL; in lutil_sasl_defaults()
92 if( defaults->authcid == NULL ) { in lutil_sasl_defaults()
93 ldap_get_option( ld, LDAP_OPT_X_SASL_AUTHCID, &defaults->authcid ); in lutil_sasl_defaults()
120 if( defaults ) dflt = defaults->authcid; in interaction()
/dports/net/openldap25-server/openldap-2.5.9/libraries/liblutil/
H A Dsasl.c39 char *authcid; member
57 if (defs->authcid) ber_memfree(defs->authcid); in lutil_sasl_freedefs()
70 char *authcid, in lutil_sasl_defaults() argument
82 defaults->authcid = authcid ? ber_strdup(authcid) : NULL; in lutil_sasl_defaults()
92 if( defaults->authcid == NULL ) { in lutil_sasl_defaults()
93 ldap_get_option( ld, LDAP_OPT_X_SASL_AUTHCID, &defaults->authcid ); in lutil_sasl_defaults()
120 if( defaults ) dflt = defaults->authcid; in interaction()
/dports/net/openldap26-client/openldap-2.6.0/libraries/liblutil/
H A Dsasl.c39 char *authcid; member
57 if (defs->authcid) ber_memfree(defs->authcid); in lutil_sasl_freedefs()
70 char *authcid, in lutil_sasl_defaults() argument
82 defaults->authcid = authcid ? ber_strdup(authcid) : NULL; in lutil_sasl_defaults()
92 if( defaults->authcid == NULL ) { in lutil_sasl_defaults()
93 ldap_get_option( ld, LDAP_OPT_X_SASL_AUTHCID, &defaults->authcid ); in lutil_sasl_defaults()
120 if( defaults ) dflt = defaults->authcid; in interaction()
/dports/net/openldap26-server/openldap-2.6.0/libraries/liblutil/
H A Dsasl.c39 char *authcid; member
57 if (defs->authcid) ber_memfree(defs->authcid); in lutil_sasl_freedefs()
70 char *authcid, in lutil_sasl_defaults() argument
82 defaults->authcid = authcid ? ber_strdup(authcid) : NULL; in lutil_sasl_defaults()
92 if( defaults->authcid == NULL ) { in lutil_sasl_defaults()
93 ldap_get_option( ld, LDAP_OPT_X_SASL_AUTHCID, &defaults->authcid ); in lutil_sasl_defaults()
120 if( defaults ) dflt = defaults->authcid; in interaction()
/dports/net/openldap24-server/openldap-2.4.59/libraries/liblutil/
H A Dsasl.c39 char *authcid; member
57 if (defs->authcid) ber_memfree(defs->authcid); in lutil_sasl_freedefs()
70 char *authcid, in lutil_sasl_defaults() argument
82 defaults->authcid = authcid ? ber_strdup(authcid) : NULL; in lutil_sasl_defaults()
92 if( defaults->authcid == NULL ) { in lutil_sasl_defaults()
93 ldap_get_option( ld, LDAP_OPT_X_SASL_AUTHCID, &defaults->authcid ); in lutil_sasl_defaults()
120 if( defaults ) dflt = defaults->authcid; in interaction()
/dports/net/openldap24-client/openldap-2.4.59/libraries/liblutil/
H A Dsasl.c39 char *authcid; member
57 if (defs->authcid) ber_memfree(defs->authcid); in lutil_sasl_freedefs()
70 char *authcid, in lutil_sasl_defaults() argument
82 defaults->authcid = authcid ? ber_strdup(authcid) : NULL; in lutil_sasl_defaults()
92 if( defaults->authcid == NULL ) { in lutil_sasl_defaults()
93 ldap_get_option( ld, LDAP_OPT_X_SASL_AUTHCID, &defaults->authcid ); in lutil_sasl_defaults()
120 if( defaults ) dflt = defaults->authcid; in interaction()
/dports/www/squid/squid-4.15/src/acl/external/kerberos_ldap_group/
H A Dsupport_sasl.cc68 char *authcid,
90 char *authcid; member
102 char *authcid, in lutil_sasl_defaults() argument
115 defaults->authcid = authcid ? xstrdup(authcid) : NULL; in lutil_sasl_defaults()
125 if (defaults->authcid == NULL) { in lutil_sasl_defaults()
126 ldap_get_option(ld, LDAP_OPT_X_SASL_AUTHCID, &defaults->authcid); in lutil_sasl_defaults()
152 dflt = defaults->authcid; in interaction()
209 xfree(defs->authcid); in lutil_sasl_freedefs()

123456789