This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import hashlib | |
import hmac | |
import base64 | |
import click | |
def make_digest(message): | |
key = bytes(message, 'UTF-8') | |
message = bytes(message, 'UTF-8') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef WAVHEADER_H | |
#define WAVHEADER_H | |
#include <QtGlobal> | |
#include <QString> | |
#include <QDebug> | |
// Структура, описывающая заголовок WAV файла. | |
struct WAVHeader | |
{ |