Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(682)

Side by Side Diff: remoting/protocol/third_party_host_authenticator.h

Issue 12313085: Host-side third party token validation (Closed) Base URL: http://git.chromium.org/chromium/src.git@third_party_auth_protocol
Patch Set: Reviewer comments Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef REMOTING_PROTOCOL_THIRD_PARTY_HOST_AUTHENTICATOR_H_ 5 #ifndef REMOTING_PROTOCOL_THIRD_PARTY_HOST_AUTHENTICATOR_H_
6 #define REMOTING_PROTOCOL_THIRD_PARTY_HOST_AUTHENTICATOR_H_ 6 #define REMOTING_PROTOCOL_THIRD_PARTY_HOST_AUTHENTICATOR_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 const TokenValidatedCallback& token_validated_callback) = 0; 47 const TokenValidatedCallback& token_validated_callback) = 0;
48 48
49 // URL sent to the client, to be used by its |TokenFetcher| to get a token. 49 // URL sent to the client, to be used by its |TokenFetcher| to get a token.
50 virtual const GURL& token_url() const = 0; 50 virtual const GURL& token_url() const = 0;
51 51
52 // Space-separated list of connection attributes the host must send to the 52 // Space-separated list of connection attributes the host must send to the
53 // client, and require the token received in response to match. 53 // client, and require the token received in response to match.
54 virtual const std::string& token_scope() const = 0; 54 virtual const std::string& token_scope() const = 0;
55 }; 55 };
56 56
57 class TokenValidatorFactory {
58 public:
59 virtual ~TokenValidatorFactory() {}
60
61 // Creates a TokenValidator. |local_jid| and |remote_jid| are used to create
62 // a token scope that is restricted to the current connection's JIDs.
63 virtual scoped_ptr<TokenValidator> CreateTokenValidator(
64 const std::string& local_jid,
65 const std::string& remote_jid) = 0;
66
67 virtual bool IsEnabled() const = 0;
68 };
69
57 // Creates a third-party host authenticator. |local_cert| and |key_pair| are 70 // Creates a third-party host authenticator. |local_cert| and |key_pair| are
58 // used by the underlying V2Authenticator to create the SSL channels. 71 // used by the underlying V2Authenticator to create the SSL channels.
59 // |token_validator| contains the token parameters to be sent to the client 72 // |token_validator| contains the token parameters to be sent to the client
60 // and is used to obtain the shared secret. 73 // and is used to obtain the shared secret.
61 ThirdPartyHostAuthenticator(const std::string& local_cert, 74 ThirdPartyHostAuthenticator(const std::string& local_cert,
62 scoped_refptr<RsaKeyPair> key_pair, 75 scoped_refptr<RsaKeyPair> key_pair,
63 scoped_ptr<TokenValidator> token_validator); 76 scoped_ptr<TokenValidator> token_validator);
64 virtual ~ThirdPartyHostAuthenticator(); 77 virtual ~ThirdPartyHostAuthenticator();
65 78
66 protected: 79 protected:
(...skipping 10 matching lines...) Expand all
77 90
78 std::string local_cert_; 91 std::string local_cert_;
79 scoped_refptr<RsaKeyPair> key_pair_; 92 scoped_refptr<RsaKeyPair> key_pair_;
80 scoped_ptr<TokenValidator> token_validator_; 93 scoped_ptr<TokenValidator> token_validator_;
81 }; 94 };
82 95
83 } // namespace protocol 96 } // namespace protocol
84 } // namespace remoting 97 } // namespace remoting
85 98
86 #endif // REMOTING_PROTOCOL_THIRD_PARTY_HOST_AUTHENTICATOR_H_ 99 #endif // REMOTING_PROTOCOL_THIRD_PARTY_HOST_AUTHENTICATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698