summaryrefslogtreecommitdiff
path: root/protocols/Steam/src/api/rsa_key.h
blob: 27a002b717eb3fafa6e7cbd3e083c9e7ca22ab58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _STEAM_REQUEST_RSA_KEY_H_
#define _STEAM_REQUEST_RSA_KEY_H_

class GetRsaKeyRequest : public HttpRequest
{
public:
	GetRsaKeyRequest(const char *username) :
		HttpRequest(HttpPost, STEAM_WEB_URL "/mobilelogin/getrsakey/")
	{
		flags = NLHRF_HTTP11 | NLHRF_SSL | NLHRF_NODUMP;

		CMStringA data;
		data.AppendFormat("username=%s&donotcache=%lld", ptrA(mir_urlEncode(username)), time(NULL));

		Content = new FormUrlEncodedContent(this)
			<< CHAR_PARAM("username", username)
			<< INT64_PARAM("donotcache", time(NULL));
	}
};

#endif //_STEAM_REQUEST_RSA_KEY_H_