Home
last modified time | relevance | path

Searched refs:ClientNonce (Results 1 – 25 of 56) sorted by relevance

123

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.SqlClient/tests/Tools/TDS/TDS/FeatureExtAck/
H A DTDSFeatureExtAckFederatedAuthenticationOption.cs31 public byte[] ClientNonce { get; set; } property in Microsoft.SqlServer.TDS.FeatureExtAck.TDSFeatureExtAckFederatedAuthenticationOption
59 ClientNonce = clientNonce; in TDSFeatureExtAckFederatedAuthenticationOption()
93 …TDSUtilities.WriteUInt(destination, ((ClientNonce != null) ? s_nonceDataLength : 0) + ((Signature … in Deflate()
95 if (ClientNonce != null) in Deflate()
98 destination.Write(ClientNonce, 0, (int)s_nonceDataLength); in Deflate()
121 ClientNonce = new byte[s_nonceDataLength]; in Inflate()
124 source.Read(ClientNonce, 0, (int)s_nonceDataLength); in Inflate()
/dports/databases/erlang-epgsql/epgsql-4.1.0/src/
H A Depgsql_scram.erl47 parse_server_first(ServerFirst, ClientNonce) ->
59 check_nonce(ClientNonce, proplists:get_value(nonce, Parts)),
70 get_client_final(SrvFirst, ClientNonce, UserName, Password) ->
80 ClientFirstBare = client_first_bare(UserName, ClientNonce),
110 check_nonce(ClientNonce, ServerNonce) ->
111 Size = size(ClientNonce),
112 <<ClientNonce:Size/binary, _/binary>> = ServerNonce,
/dports/net-im/coyim/coyim-0.3.11/sasl/scram/
H A Dstates.go34 clientNonce, ok := props[sasl.ClientNonce]
36 return c, nil, sasl.PropertyMissingError{Property: sasl.ClientNonce}
80 clientNonce, ok := props[sasl.ClientNonce]
82 return c, nil, sasl.PropertyMissingError{Property: sasl.ClientNonce}
H A Dmechanism_test.go31 client.SetProperty(sasl.ClientNonce, "fyko+d2lbbFgONRv9qkxdawL")
/dports/security/vault/vault-1.8.2/vendor/github.com/xdg/scram/
H A Dclient_conv_test.go41 if c.ClientNonce != "" {
42 client = client.WithNonceGenerator(func() string { return c.ClientNonce })
H A Dtestdata_test.go26 ClientNonce string member
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/
H A D_DigestClient.cs541 internal string ClientNonce; field in System.Net.HttpDigestChallenge
586 ClientNonce = value; in defineAttribute()
653 if (ClientNonce!=null) { in ToBlob()
655 stringBuilder.Append(HttpDigest.pair(HttpDigest.DA_cnonce, ClientNonce, true)); in ToBlob()
956 if (digestChallenge.ClientNonce==null || digestChallenge.Stale) { in Authenticate()
957 …estChallenge.ClientNonce:" + ValidationHelper.ToString(digestChallenge.ClientNonce) + " digestChal… in Authenticate()
961 digestChallenge.ClientNonce = createUpgradedNonce(digestChallenge); in Authenticate()
965 digestChallenge.ClientNonce = createNonce(32); in Authenticate()
1030 authorization.Append(pair(DA_cnonce, digestChallenge.ClientNonce, true)); in Authenticate()
1125 challenge.ClientNonce + ":" + in responseValue()
[all …]
/dports/net-im/coyim/coyim-0.3.11/sasl/digestmd5/
H A Dstates.go55 clientNonce, ok := props[sasl.ClientNonce]
57 return c, nil, sasl.PropertyMissingError{Property: sasl.ClientNonce}
H A Dmechanism_test.go36 client.SetProperty(sasl.ClientNonce, "OA6MHXh6VqTrRk")
/dports/net-im/coyim/coyim-0.3.11/sasl/
H A Dproperty.go16 ClientNonce const
/dports/net/freerdp/freerdp-2.5.0/libfreerdp/core/
H A Dnla.c138 SecBuffer ClientNonce; member
1218 if (!winpr_Digest_Update(sha256, nla->ClientNonce.pvBuffer, nla->ClientNonce.cbBuffer)) in nla_encrypt_public_key_hash()
1455 if (!winpr_Digest_Update(sha256, nla->ClientNonce.pvBuffer, nla->ClientNonce.cbBuffer)) in nla_decrypt_public_key_hash()
1925 (nla->ClientNonce.cbBuffer > 0) ? nla_sizeof_client_nonce(nla->ClientNonce.cbBuffer) : 0; in nla_send()
2117 sspi_SecBufferFree(&nla->ClientNonce); in nla_decode_ts_request()
2118 if (!sspi_SecBufferAlloc(&nla->ClientNonce, length)) in nla_decode_ts_request()
2121 Stream_Read(s, nla->ClientNonce.pvBuffer, length); in nla_decode_ts_request()
2122 nla->ClientNonce.cbBuffer = length; in nla_decode_ts_request()
2369 if (!sspi_SecBufferAlloc(&nla->ClientNonce, NonceLength)) in nla_new()
2373 if (winpr_RAND(nla->ClientNonce.pvBuffer, NonceLength) < 0) in nla_new()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.SqlClient/tests/Tools/TDS/TDS.Servers/
H A DGenericTDSServer.cs124 (session as GenericTDSServerSession).ClientNonce = preLoginRequest.Nonce; in OnPreLoginRequest()
614 …FeatureExtAckFederatedAuthenticationOption((session as GenericTDSServerSession).ClientNonce, null); in OnFederatedAuthenticationCompleted()
619 …new TDSFeatureExtAckFederatedAuthenticationOption((session as GenericTDSServerSession).ClientNonce, in OnFederatedAuthenticationCompleted()
620 … decryptedTicket.GetSignature((session as GenericTDSServerSession).ClientNonce)); in OnFederatedAuthenticationCompleted()
H A DFederatedAuthenticationNegativeTDSServer.cs108 fedAutExtAct.ClientNonce = null; in OnLogin7Request()
/dports/sysutils/helmfile/vault-f6547fa8e820/builtin/credential/aws/
H A Dpath_identity_whitelist.go120 "client_nonce": entry.ClientNonce,
133 ClientNonce string `json:"client_nonce"` member
/dports/misc/concourse/vault-bdd38fca2cff/builtin/credential/aws/
H A Dpath_identity_whitelist.go120 "client_nonce": entry.ClientNonce,
133 ClientNonce string `json:"client_nonce"` member
/dports/sysutils/gomplate/gomplate-3.9.0/vendor/github.com/hashicorp/vault/builtin/credential/aws/
H A Dpath_identity_whitelist.go114 "client_nonce": entry.ClientNonce,
127 ClientNonce string `json:"client_nonce"` member
/dports/sysutils/helmfile/helmfile-0.138.7/vendor/github.com/hashicorp/vault/builtin/credential/aws/
H A Dpath_identity_whitelist.go114 "client_nonce": entry.ClientNonce,
127 ClientNonce string `json:"client_nonce"` member
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/hashicorp/vault/builtin/credential/aws/
H A Dpath_identity_whitelist.go120 "client_nonce": entry.ClientNonce,
133 ClientNonce string `json:"client_nonce"` member
/dports/sysutils/gomplate/vault-sdk-v0.1.13/builtin/credential/aws/
H A Dpath_identity_whitelist.go114 "client_nonce": entry.ClientNonce,
127 ClientNonce string `json:"client_nonce"` member
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/hashicorp/vault/vault-api-v1.0.4/builtin/credential/aws/
H A Dpath_identity_whitelist.go114 "client_nonce": entry.ClientNonce,
127 ClientNonce string `json:"client_nonce"` member
/dports/devel/gitlab-runner/vault-sdk-v0.1.13/builtin/credential/aws/
H A Dpath_identity_whitelist.go114 "client_nonce": entry.ClientNonce,
127 ClientNonce string `json:"client_nonce"` member
/dports/sysutils/istio/vault-sdk-v0.1.12/builtin/credential/aws/
H A Dpath_identity_whitelist.go114 "client_nonce": entry.ClientNonce,
127 ClientNonce string `json:"client_nonce"` member
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/hashicorp/vault/builtin/credential/aws/
H A Dpath_identity_whitelist.go114 "client_nonce": entry.ClientNonce,
127 ClientNonce string `json:"client_nonce"` member
/dports/security/vault/vault-1.8.2/builtin/credential/aws/
H A Dpath_identity_accesslist.go122 "client_nonce": entry.ClientNonce,
135 ClientNonce string `json:"client_nonce"` member
/dports/security/john/john-1.9.0-jumbo-1/doc/
H A DHDAA_README10 user:$MAGIC$response$user$realm$method$uri$nonce$nonceCount$ClientNonce$qop

123