summaryrefslogtreecommitdiffabout
authorMichael Krelin <hacker@klever.net>2007-12-16 22:52:51 (UTC)
committer Michael Krelin <hacker@klever.net>2007-12-17 12:09:16 (UTC)
commit24a6f9e3525b76ed1aa787f66b003b01b767af39 (patch) (unidiff)
tree87741582a2a673205b11ac0386725c0b9d8377f9
parentd4e05a6fe00ebd64546637e5873759d4e8d1b010 (diff)
downloadlibopkele-24a6f9e3525b76ed1aa787f66b003b01b767af39.zip
libopkele-24a6f9e3525b76ed1aa787f66b003b01b767af39.tar.gz
libopkele-24a6f9e3525b76ed1aa787f66b003b01b767af39.tar.bz2
made secret_t non-constant size and added params_t::query_string function
1. removed checking that secret_t is exactly 20 bytes, because its size is not so constant anymore. 2. added a query_string function that produces a query string suitable for use in GET and POST requests. I'm making use of it when performing direct request when establishing associations. Signed-off-by: Michael Krelin <hacker@klever.net>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--include/opkele/types.h18
-rw-r--r--lib/params.cc13
-rw-r--r--lib/secret.cc12
3 files changed, 30 insertions, 13 deletions
diff --git a/include/opkele/types.h b/include/opkele/types.h
index 520618d..ca07df5 100644
--- a/include/opkele/types.h
+++ b/include/opkele/types.h
@@ -19,58 +19,58 @@ namespace opkele {
19 using std::map; 19 using std::map;
20 using std::ostream; 20 using std::ostream;
21 using std::auto_ptr; 21 using std::auto_ptr;
22 using std::multimap; 22 using std::multimap;
23 using std::set; 23 using std::set;
24 24
25 /** 25 /**
26 * the OpenID operation mode 26 * the OpenID operation mode
27 */ 27 */
28 typedef enum _mode_t { 28 typedef enum _mode_t {
29 mode_associate, 29 mode_associate,
30 mode_checkid_immediate, 30 mode_checkid_immediate,
31 mode_checkid_setup, 31 mode_checkid_setup,
32 mode_check_association 32 mode_check_association
33 } mode_t; 33 } mode_t;
34 34
35 /** 35 /**
36 * the association secret container 36 * the association secret container
37 */ 37 */
38 class secret_t : public vector<unsigned char> { 38 class secret_t : public vector<unsigned char> {
39 public: 39 public:
40 40
41 /** 41 /**
42 * xor the secret and hmac together and encode, using base64 42 * xor the secret and hmac together and encode, using base64
43 * @param key_sha1 pointer to the sha1 digest 43 * @param key_d pointer to the message digest
44 * @param rv reference to the return value 44 * @param rv reference to the return value
45 */ 45 */
46 void enxor_to_base64(const unsigned char *key_sha1,string& rv) const; 46 void enxor_to_base64(const unsigned char *key_d,string& rv) const;
47 /** 47 /**
48 * decode base64-encoded secret and xor it with the sha1 digest 48 * decode base64-encoded secret and xor it with the message digest
49 * @param key_sha1 pointer to the message digest 49 * @param key_d pointer to the message digest
50 * @param b64 base64-encoded secret value 50 * @param b64 base64-encoded secret value
51 */ 51 */
52 void enxor_from_base64(const unsigned char *key_sha1,const string& b64); 52 void enxor_from_base64(const unsigned char *key_d,const string& b64);
53 /** 53 /**
54 * plainly encode to base64 representation 54 * plainly encode to base64 representation
55 * @param rv reference to the return value 55 * @param rv reference to the return value
56 */ 56 */
57 void to_base64(string& rv) const; 57 void to_base64(string& rv) const;
58 /** 58 /**
59 * decode cleartext secret from base64 59 * decode cleartext secret from base64
60 * @param b64 base64-encoded representation of the secret value 60 * @param b64 base64-encoded representation of the secret value
61 */ 61 */
62 void from_base64(const string& b64); 62 void from_base64(const string& b64);
63 }; 63 };
64 64
65 /** 65 /**
66 * Interface to the association. 66 * Interface to the association.
67 */ 67 */
68 class association_t { 68 class association_t {
69 public: 69 public:
70 70
71 virtual ~association_t() { } 71 virtual ~association_t() { }
72 72
73 /** 73 /**
74 * retrieve the server with which association was established. 74 * retrieve the server with which association was established.
75 * @return server name 75 * @return server name
76 */ 76 */
@@ -140,48 +140,56 @@ namespace opkele {
140 string& get_param(const string& n); 140 string& get_param(const string& n);
141 141
142 /** 142 /**
143 * parse the OpenID key/value data. 143 * parse the OpenID key/value data.
144 * @param kv the OpenID key/value data 144 * @param kv the OpenID key/value data
145 */ 145 */
146 void parse_keyvalues(const string& kv); 146 void parse_keyvalues(const string& kv);
147 /** 147 /**
148 * sign the fields. 148 * sign the fields.
149 * @param secret the secret used for signing 149 * @param secret the secret used for signing
150 * @param sig reference to the string, containing base64-encoded 150 * @param sig reference to the string, containing base64-encoded
151 * result 151 * result
152 * @param slist the comma-separated list of fields to sign 152 * @param slist the comma-separated list of fields to sign
153 * @param prefix the string to prepend to parameter names 153 * @param prefix the string to prepend to parameter names
154 */ 154 */
155 void sign(secret_t secret,string& sig,const string& slist,const char *prefix=0) const; 155 void sign(secret_t secret,string& sig,const string& slist,const char *prefix=0) const;
156 156
157 /** 157 /**
158 * append parameters to the URL as a GET-request parameters. 158 * append parameters to the URL as a GET-request parameters.
159 * @param url the base URL 159 * @param url the base URL
160 * @param prefix the string to prepend to parameter names 160 * @param prefix the string to prepend to parameter names
161 * @return the ready-to-use location 161 * @return the ready-to-use location
162 */ 162 */
163 string append_query(const string& url,const char *prefix = "openid.") const; 163 string append_query(const string& url,const char *prefix = "openid.") const;
164
165 /**
166 * make up a query string suitable for use in GET and POST
167 * requests.
168 * @param prefix string to prened to parameter names
169 * @return query string
170 */
171 string query_string(const char *prefix = "openid.") const;
164 }; 172 };
165 173
166 /** 174 /**
167 * dump the key/value pairs for the parameters to the stream. 175 * dump the key/value pairs for the parameters to the stream.
168 * @param o output stream 176 * @param o output stream
169 * @param p the parameters 177 * @param p the parameters
170 */ 178 */
171 ostream& operator << (ostream& o,const params_t& p); 179 ostream& operator << (ostream& o,const params_t& p);
172 180
173 namespace xrd { 181 namespace xrd {
174 182
175 struct priority_compare { 183 struct priority_compare {
176 inline bool operator()(long a,long b) const { 184 inline bool operator()(long a,long b) const {
177 return (a<0) ? false : (b<0) ? false : (a<b); 185 return (a<0) ? false : (b<0) ? false : (a<b);
178 } 186 }
179 }; 187 };
180 188
181 template <typename _DT> 189 template <typename _DT>
182 class priority_map : public multimap<long,_DT,priority_compare> { 190 class priority_map : public multimap<long,_DT,priority_compare> {
183 typedef multimap<long,_DT,priority_compare> map_type; 191 typedef multimap<long,_DT,priority_compare> map_type;
184 public: 192 public:
185 193
186 inline _DT& add(long priority,const _DT& d) { 194 inline _DT& add(long priority,const _DT& d) {
187 return insert(typename map_type::value_type(priority,d))->second; 195 return insert(typename map_type::value_type(priority,d))->second;
diff --git a/lib/params.cc b/lib/params.cc
index ea86d3a..7a572c1 100644
--- a/lib/params.cc
+++ b/lib/params.cc
@@ -78,31 +78,44 @@ namespace opkele {
78 0,&md_len); 78 0,&md_len);
79 sig = util::encode_base64(md,md_len); 79 sig = util::encode_base64(md,md_len);
80 } 80 }
81 81
82 string params_t::append_query(const string& url,const char *prefix) const { 82 string params_t::append_query(const string& url,const char *prefix) const {
83 string rv = url; 83 string rv = url;
84 bool p = true; 84 bool p = true;
85 if(rv.find('?')==string::npos) { 85 if(rv.find('?')==string::npos) {
86 rv += '?'; 86 rv += '?';
87 p = false; 87 p = false;
88 } 88 }
89 for(const_iterator i=begin();i!=end();++i) { 89 for(const_iterator i=begin();i!=end();++i) {
90 if(p) 90 if(p)
91 rv += '&'; 91 rv += '&';
92 else 92 else
93 p = true; 93 p = true;
94 rv += prefix; 94 rv += prefix;
95 rv += i->first; 95 rv += i->first;
96 rv += '='; 96 rv += '=';
97 rv += util::url_encode(i->second); 97 rv += util::url_encode(i->second);
98 } 98 }
99 return rv; 99 return rv;
100 } 100 }
101 101
102 string params_t::query_string(const char *prefix) const {
103 string rv;
104 for(const_iterator i=begin();i!=end();++i) {
105 if(!rv.empty())
106 rv += '&';
107 rv += prefix;
108 rv += i->first;
109 rv += '=';
110 rv += util::url_encode(i->second);
111 }
112 return rv;
113 }
114
102 ostream& operator << (ostream& o,const params_t& p) { 115 ostream& operator << (ostream& o,const params_t& p) {
103 for(params_t::const_iterator i=p.begin();i!=p.end();++i) 116 for(params_t::const_iterator i=p.begin();i!=p.end();++i)
104 o << i->first << ':' << i->second << '\n'; 117 o << i->first << ':' << i->second << '\n';
105 return o; 118 return o;
106 } 119 }
107 120
108} 121}
diff --git a/lib/secret.cc b/lib/secret.cc
index 632a2ca..d538890 100644
--- a/lib/secret.cc
+++ b/lib/secret.cc
@@ -1,49 +1,45 @@
1#include <algorithm> 1#include <algorithm>
2#include <functional> 2#include <functional>
3#include <opkele/types.h> 3#include <opkele/types.h>
4#include <opkele/exception.h> 4#include <opkele/exception.h>
5#include <opkele/util.h> 5#include <opkele/util.h>
6 6
7namespace opkele { 7namespace opkele {
8 using namespace std; 8 using namespace std;
9 9
10 template<class __a1,class __a2,class __r> 10 template<class __a1,class __a2,class __r>
11 struct bitwise_xor : public binary_function<__a1,__a2,__r> { 11 struct bitwise_xor : public binary_function<__a1,__a2,__r> {
12 __r operator() (const __a1& a1,const __a2& a2) const { 12 __r operator() (const __a1& a1,const __a2& a2) const {
13 return a1^a2; 13 return a1^a2;
14 } 14 }
15 }; 15 };
16 16
17 void secret_t::enxor_to_base64(const unsigned char *key_sha1,string& rv) const { 17 void secret_t::enxor_to_base64(const unsigned char *key_d,string& rv) const {
18 if(size()!=20)
19 throw bad_input(OPKELE_CP_ "wrong secret size");
20 vector<unsigned char> tmp; 18 vector<unsigned char> tmp;
21 transform( 19 transform(
22 begin(), end(), 20 begin(), end(),
23 key_sha1, 21 key_d,
24 back_insert_iterator<vector<unsigned char> >(tmp), 22 back_insert_iterator<vector<unsigned char> >(tmp),
25 bitwise_xor<unsigned char,unsigned char,unsigned char>() ); 23 bitwise_xor<unsigned char,unsigned char,unsigned char>() );
26 rv = util::encode_base64(&(tmp.front()),tmp.size()); 24 rv = util::encode_base64(&(tmp.front()),tmp.size());
27 } 25 }
28 26
29 void secret_t::enxor_from_base64(const unsigned char *key_sha1,const string& b64) { 27 void secret_t::enxor_from_base64(const unsigned char *key_d,const string& b64) {
30 clear(); 28 clear();
31 util::decode_base64(b64,*this); 29 util::decode_base64(b64,*this);
32 transform( 30 transform(
33 begin(), end(), 31 begin(), end(),
34 key_sha1, 32 key_d,
35 begin(), 33 begin(),
36 bitwise_xor<unsigned char,unsigned char,unsigned char>() ); 34 bitwise_xor<unsigned char,unsigned char,unsigned char>() );
37 } 35 }
38 36
39 void secret_t::to_base64(string& rv) const { 37 void secret_t::to_base64(string& rv) const {
40 if(size()!=20)
41 throw bad_input(OPKELE_CP_ "wrong secret size");
42 rv = util::encode_base64(&(front()),size()); 38 rv = util::encode_base64(&(front()),size());
43 } 39 }
44 40
45 void secret_t::from_base64(const string& b64) { 41 void secret_t::from_base64(const string& b64) {
46 util::decode_base64(b64,*this); 42 util::decode_base64(b64,*this);
47 } 43 }
48 44
49} 45}