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

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: Add missing parameters 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 GURL& token_url,
65 const GURL& token_validation_url,
66 scoped_refptr<RsaKeyPair> key_pair,
Sergey Ulanov 2013/03/28 22:34:54 These three parameters are specific to url-based t
rmsousa 2013/03/28 23:12:49 These can change during the lifetime of the host (
Sergey Ulanov 2013/03/28 23:39:39 For some policies we restart the host when they ch
rmsousa 2013/04/04 22:13:43 Done.
67 const std::string& local_jid,
68 const std::string& remote_jid) = 0;
69 };
70
57 // Creates a third-party host authenticator. |local_cert| and |key_pair| are 71 // Creates a third-party host authenticator. |local_cert| and |key_pair| are
58 // used by the underlying V2Authenticator to create the SSL channels. 72 // used by the underlying V2Authenticator to create the SSL channels.
59 // |token_validator| contains the token parameters to be sent to the client 73 // |token_validator| contains the token parameters to be sent to the client
60 // and is used to obtain the shared secret. 74 // and is used to obtain the shared secret.
61 ThirdPartyHostAuthenticator(const std::string& local_cert, 75 ThirdPartyHostAuthenticator(const std::string& local_cert,
62 scoped_refptr<RsaKeyPair> key_pair, 76 scoped_refptr<RsaKeyPair> key_pair,
63 scoped_ptr<TokenValidator> token_validator); 77 scoped_ptr<TokenValidator> token_validator);
64 virtual ~ThirdPartyHostAuthenticator(); 78 virtual ~ThirdPartyHostAuthenticator();
65 79
66 protected: 80 protected:
(...skipping 10 matching lines...) Expand all
77 91
78 std::string local_cert_; 92 std::string local_cert_;
79 scoped_refptr<RsaKeyPair> key_pair_; 93 scoped_refptr<RsaKeyPair> key_pair_;
80 scoped_ptr<TokenValidator> token_validator_; 94 scoped_ptr<TokenValidator> token_validator_;
81 }; 95 };
82 96
83 } // namespace protocol 97 } // namespace protocol
84 } // namespace remoting 98 } // namespace remoting
85 99
86 #endif // REMOTING_PROTOCOL_THIRD_PARTY_HOST_AUTHENTICATOR_H_ 100 #endif // REMOTING_PROTOCOL_THIRD_PARTY_HOST_AUTHENTICATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698