mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
15 lines
325 B
C++
15 lines
325 B
C++
#include "hmac_sha256.h"
|
|
#include <bfc/platform/types.h>
|
|
|
|
class OAuthKey
|
|
{
|
|
public:
|
|
OAuthKey(const void *key, size_t key_len);
|
|
~OAuthKey();
|
|
void FeedMessage(const void *data, size_t data_len);
|
|
void EndMessage();
|
|
void GetBase64(char *output, size_t len);
|
|
HMAC_SHA256_CTX ctx;
|
|
uint8_t buf[HMAC_SHA256_DIGEST_LENGTH];
|
|
};
|
|
|