Home
last modified time | relevance | path

Searched refs:AuthContext (Results 1 – 25 of 509) sorted by relevance

12345678910>>...21

/dports/deskutils/ausweisapp2/AusweisApp2-1.22.2/src/workflows/base/context/
H A DAuthContext.cpp17 AuthContext::AuthContext(const QSharedPointer<ActivationContext>& pActivationContext) in AuthContext() function in AuthContext
52 …connect(&generalSettings, &GeneralSettings::fireLanguageChanged, this, &AuthContext::fireProgressC… in AuthContext()
56 void AuthContext::setProgress(int pValue, const QString& pMessage) in setProgress()
76 void AuthContext::initAccessRightManager(const QSharedPointer<const CVCertificate>& pTerminalCvc) in initAccessRightManager()
85 bool AuthContext::isCanAllowedMode() const in isCanAllowedMode()
91 const QByteArray& AuthContext::getSslSession() const in getSslSession()
97 void AuthContext::setSslSession(const QByteArray& pSession) in setSslSession()
103 QByteArray AuthContext::encodeEffectiveChat() in encodeEffectiveChat()
114 CVCertificateChain AuthContext::getChainStartingWith(const QSharedPointer<const CVCertificate>& pCh… in getChainStartingWith()
134 bool AuthContext::hasChainForCertificationAuthority(const EstablishPaceChannelOutput& pPaceOutput) … in hasChainForCertificationAuthority()
[all …]
/dports/deskutils/ausweisapp2/AusweisApp2-1.22.2/test/qt/ui/json/
H A Dtest_MsgContext.cpp55 QVERIFY(!readOnly.getContext<AuthContext>()); in workflowContext()
56 QVERIFY(!ctx.getContext<AuthContext>()); in workflowContext()
61 QVERIFY(!readOnly.getContext<AuthContext>()); in workflowContext()
62 QVERIFY(!ctx.getContext<AuthContext>()); in workflowContext()
67 QVERIFY(!readOnly.getContext<AuthContext>()); in workflowContext()
68 QVERIFY(!ctx.getContext<AuthContext>()); in workflowContext()
71 …ctx.setWorkflowContext(QSharedPointer<AuthContext>(new AuthContext(QSharedPointer<InternalActivati… in workflowContext()
73 QVERIFY(readOnly.getContext<AuthContext>()); in workflowContext()
74 QVERIFY(ctx.getContext<AuthContext>()); in workflowContext()
78 QVERIFY(ctx.getContext<AuthContext>()); in workflowContext()
[all …]
/dports/deskutils/ausweisapp2/AusweisApp2-1.22.2/test/qt/workflows/states/
H A Dtest_StateGetTcToken.cpp26 const QSharedPointer<AuthContext> context(new AuthContext(nullptr)); in test_Run()
46 const QSharedPointer<AuthContext> context(new AuthContext(nullptr)); in test_IsValidRedirectUrl()
63 const QSharedPointer<AuthContext> context(new AuthContext(nullptr)); in test_SendRequest()
77 const QSharedPointer<AuthContext> context(new AuthContext(nullptr)); in test_ParseTcTokenNoData()
103 const QSharedPointer<AuthContext> context(new AuthContext(nullptr)); in test_ParseTcTokenWithDataUsePsk()
119 const QSharedPointer<AuthContext> context(new AuthContext(nullptr)); in test_ParseTcTokenWithDataNoPsk()
/dports/deskutils/ausweisapp2/AusweisApp2-1.22.2/test/qt/workflows/context/
H A Dtest_AuthContext.cpp69 AuthContext context(nullptr); in test_ErrorReportedToServer()
83 AuthContext context(nullptr); in test_DidAuthenticateEacResponse1()
95 AuthContext context(nullptr); in test_DidAuthenticateResponseEacAdditionalInputType()
107 AuthContext context(nullptr); in test_DidAuthenticateEacAdditional()
119 AuthContext context(nullptr); in test_DidAuthenticateResponseEac2()
131 AuthContext context(nullptr); in test_DidList()
144 AuthContext context(nullptr); in test_DidListResponse()
156 AuthContext context(nullptr); in test_Disconnect()
169 AuthContext context(nullptr); in test_DisconnectResponse()
181 AuthContext context(nullptr); in test_TransmitResponses()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/openscreen/src/cast/sender/channel/
H A Dcast_auth_util.h31 class AuthContext {
33 ~AuthContext();
37 static AuthContext Create();
48 explicit AuthContext(const std::string& nonce);
59 const AuthContext& auth_context);
68 const AuthContext& auth_context,
H A Dcast_auth_util.cc165 AuthContext AuthContext::Create() { in Create()
166 return AuthContext(CastNonce::Get()); in Create()
169 AuthContext::AuthContext(const std::string& nonce) : nonce_(nonce) {} in AuthContext() function in openscreen::cast::AuthContext
171 AuthContext::~AuthContext() {} in ~AuthContext()
173 Error AuthContext::VerifySenderNonce(const std::string& nonce_response, in VerifySenderNonce()
234 const AuthContext& auth_context, in AuthenticateChallengeReplyImpl()
281 const AuthContext& auth_context) { in AuthenticateChallengeReply()
293 const AuthContext& auth_context, in AuthenticateChallengeReplyForTest()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/openscreen/src/cast/sender/channel/
H A Dcast_auth_util.h31 class AuthContext {
33 ~AuthContext();
37 static AuthContext Create();
48 explicit AuthContext(const std::string& nonce);
59 const AuthContext& auth_context);
68 const AuthContext& auth_context,
H A Dcast_auth_util.cc169 AuthContext AuthContext::Create() { in Create()
170 return AuthContext(CastNonce::Get()); in Create()
173 AuthContext::AuthContext(const std::string& nonce) : nonce_(nonce) {} in AuthContext() function in openscreen::cast::AuthContext
175 AuthContext::~AuthContext() {} in ~AuthContext()
177 Error AuthContext::VerifySenderNonce(const std::string& nonce_response, in VerifySenderNonce()
238 const AuthContext& auth_context, in AuthenticateChallengeReplyImpl()
285 const AuthContext& auth_context) { in AuthenticateChallengeReply()
297 const AuthContext& auth_context, in AuthenticateChallengeReplyForTest()
/dports/misc/concourse/concourse-6.7.2/vendor/code.cloudfoundry.org/credhub-cli/vendor/github.com/armon/go-socks5/
H A Dauth.go24 type AuthContext struct { struct
34 Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)
45 func (a NoAuthAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)…
47 return &AuthContext{NoAuth, nil}, err
60 func (a UserPassAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, erro…
109 return &AuthContext{UserPassAuth, map[string]string{"Username": string(user)}}, nil
113 func (s *Server) authenticate(conn io.Writer, bufConn io.Reader) (*AuthContext, error) {
/dports/misc/concourse/concourse-6.7.2/vendor/code.cloudfoundry.org/credhub-cli/vendor/github.com/cloudfoundry/go-socks5/
H A Dauth.go24 type AuthContext struct { struct
34 Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)
45 func (a NoAuthAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)…
47 return &AuthContext{NoAuth, nil}, err
60 func (a UserPassAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, erro…
109 return &AuthContext{UserPassAuth, map[string]string{"Username": string(user)}}, nil
113 func (s *Server) authenticate(conn io.Writer, bufConn io.Reader) (*AuthContext, error) {
/dports/net/concourse-fly/concourse-6.7.1/vendor/github.com/cloudfoundry/go-socks5/
H A Dauth.go24 type AuthContext struct { struct
34 Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)
45 func (a NoAuthAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)…
47 return &AuthContext{NoAuth, nil}, err
60 func (a UserPassAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, erro…
109 return &AuthContext{UserPassAuth, map[string]string{"Username": string(user)}}, nil
113 func (s *Server) authenticate(conn io.Writer, bufConn io.Reader) (*AuthContext, error) {
/dports/net/bosh-cli/bosh-cli-5.5.0/vendor/github.com/cloudfoundry/go-socks5/
H A Dauth.go24 type AuthContext struct { struct
34 Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)
45 func (a NoAuthAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)…
47 return &AuthContext{NoAuth, nil}, err
60 func (a UserPassAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, erro…
109 return &AuthContext{UserPassAuth, map[string]string{"Username": string(user)}}, nil
113 func (s *Server) authenticate(conn io.Writer, bufConn io.Reader) (*AuthContext, error) {
/dports/net/bosh-bootloader/bosh-bootloader-7.2.12/vendor/github.com/cloudfoundry/go-socks5/
H A Dauth.go24 type AuthContext struct { struct
34 Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)
45 func (a NoAuthAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)…
47 return &AuthContext{NoAuth, nil}, err
60 func (a UserPassAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, erro…
109 return &AuthContext{UserPassAuth, map[string]string{"Username": string(user)}}, nil
113 func (s *Server) authenticate(conn io.Writer, bufConn io.Reader) (*AuthContext, error) {
/dports/net/ooni-probe-cli/probe-cli-3.10.1/vendor/github.com/ooni/psiphon/oopsi/github.com/armon/go-socks5/
H A Dauth.go24 type AuthContext struct { struct
34 Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)
45 func (a NoAuthAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)…
47 return &AuthContext{NoAuth, nil}, err
60 func (a UserPassAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, erro…
109 return &AuthContext{UserPassAuth, map[string]string{"Username": string(user)}}, nil
113 func (s *Server) authenticate(conn io.Writer, bufConn io.Reader) (*AuthContext, error) {
/dports/net/ooni-mini/probe-engine-0.23.0/vendor/github.com/ooni/psiphon/oopsi/github.com/armon/go-socks5/
H A Dauth.go24 type AuthContext struct { struct
34 Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)
45 func (a NoAuthAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)…
47 return &AuthContext{NoAuth, nil}, err
60 func (a UserPassAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, erro…
109 return &AuthContext{UserPassAuth, map[string]string{"Username": string(user)}}, nil
113 func (s *Server) authenticate(conn io.Writer, bufConn io.Reader) (*AuthContext, error) {
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/cloudfoundry/go-socks5/
H A Dauth.go24 type AuthContext struct { struct
34 Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)
45 func (a NoAuthAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)…
47 return &AuthContext{NoAuth, nil}, err
60 func (a UserPassAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, erro…
109 return &AuthContext{UserPassAuth, map[string]string{"Username": string(user)}}, nil
113 func (s *Server) authenticate(conn io.Writer, bufConn io.Reader) (*AuthContext, error) {
/dports/net/ooni-probe-cli/probe-cli-3.10.1/vendor/github.com/armon/go-socks5/
H A Dauth.go24 type AuthContext struct { struct
34 Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)
45 func (a NoAuthAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)…
47 return &AuthContext{NoAuth, nil}, err
60 func (a UserPassAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, erro…
109 return &AuthContext{UserPassAuth, map[string]string{"Username": string(user)}}, nil
113 func (s *Server) authenticate(conn io.Writer, bufConn io.Reader) (*AuthContext, error) {
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/cloudfoundry/socks5-proxy/vendor/github.com/cloudfoundry/go-socks5/
H A Dauth.go24 type AuthContext struct { struct
34 Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)
45 func (a NoAuthAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)…
47 return &AuthContext{NoAuth, nil}, err
60 func (a UserPassAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, erro…
109 return &AuthContext{UserPassAuth, map[string]string{"Username": string(user)}}, nil
113 func (s *Server) authenticate(conn io.Writer, bufConn io.Reader) (*AuthContext, error) {
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/cast_channel/
H A Dcast_auth_util.h72 class AuthContext {
74 ~AuthContext();
78 static AuthContext Create();
80 static AuthContext CreateForTest(const std::string& nonce);
90 explicit AuthContext(const std::string& nonce);
100 const AuthContext& auth_context);
H A Dcast_auth_util.cc258 AuthContext AuthContext::Create() { in Create()
259 return AuthContext(CastNonce::Get()); in Create()
263 AuthContext AuthContext::CreateForTest(const std::string& nonce_data) { in CreateForTest()
276 return AuthContext(nonce); in CreateForTest()
279 AuthContext::AuthContext(const std::string& nonce) : nonce_(nonce) {} in AuthContext() function in cast_channel::AuthContext
281 AuthContext::~AuthContext() = default;
283 AuthResult AuthContext::VerifySenderNonce( in VerifySenderNonce()
357 const AuthContext& auth_context) { in AuthenticateChallengeReply()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/cast_channel/
H A Dcast_auth_util.h72 class AuthContext {
74 ~AuthContext();
78 static AuthContext Create();
88 explicit AuthContext(const std::string& nonce);
98 const AuthContext& auth_context);
/dports/deskutils/ausweisapp2/AusweisApp2-1.22.2/src/ui/json/messages/
H A DMsgHandlerAccessRights.cpp14 Q_ASSERT(pContext.getContext<AuthContext>()); in MsgHandlerAccessRights()
15 fillAccessRights(pContext.getContext<AuthContext>()); in MsgHandlerAccessRights()
22 auto ctx = pContext.getContext<AuthContext>(); in MsgHandlerAccessRights()
43 …cessRights::handleSetChatData(const QJsonArray& pChat, const QSharedPointer<AuthContext>& pContext) in handleSetChatData()
108 void MsgHandlerAccessRights::fillAccessRights(const QSharedPointer<const AuthContext>& pContext) in fillAccessRights()
133 QJsonObject MsgHandlerAccessRights::getAuxiliaryData(const QSharedPointer<const AuthContext>& pCont… in getAuxiliaryData()
/dports/devel/grpc130/grpc-1.30.2/src/csharp/Grpc.Core/Internal/
H A DAuthContextSafeHandle.cs42 public AuthContext ToAuthContext() in ToAuthContext()
46 return new AuthContext(null, new Dictionary<string, List<AuthProperty>>()); in ToAuthContext()
66 return new AuthContext(peerIdentityPropertyName, propertiesDict); in ToAuthContext()
102 public IntPtr AuthContext; field
/dports/devel/grpc/grpc-1.42.0/src/csharp/Grpc.Core/Internal/
H A DAuthContextSafeHandle.cs42 public AuthContext ToAuthContext() in ToAuthContext()
46 return new AuthContext(null, new Dictionary<string, List<AuthProperty>>()); in ToAuthContext()
66 return new AuthContext(peerIdentityPropertyName, propertiesDict); in ToAuthContext()
102 public IntPtr AuthContext; field
/dports/devel/grpc134/grpc-1.34.1/src/csharp/Grpc.Core/Internal/
H A DAuthContextSafeHandle.cs42 public AuthContext ToAuthContext() in ToAuthContext()
46 return new AuthContext(null, new Dictionary<string, List<AuthProperty>>()); in ToAuthContext()
66 return new AuthContext(peerIdentityPropertyName, propertiesDict); in ToAuthContext()
102 public IntPtr AuthContext; field

12345678910>>...21