8 lines
208 B
Plaintext
8 lines
208 B
Plaintext
|
#pragma once
|
||
|
|
||
|
namespace crypto
|
||
|
{
|
||
|
// replace these with your own values!
|
||
|
static const char * const HTTP_PASSWORD = "secure!1";
|
||
|
static const char * const SALT = "1234567890abcdefghijklmnopqrstuv";
|
||
|
}
|