remove include Buffer.h
This commit is contained in:
parent
9b0a781f05
commit
1250fed6f9
@ -1,10 +1,10 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include "buffer.h"
|
|
||||||
|
|
||||||
struct evp_cipher_ctx_st;
|
struct evp_cipher_ctx_st;
|
||||||
typedef struct evp_cipher_ctx_st EVP_CIPHER_CTX;
|
typedef struct evp_cipher_ctx_st EVP_CIPHER_CTX;
|
||||||
|
|
||||||
|
class Buffer;
|
||||||
|
|
||||||
class Cryptography
|
class Cryptography
|
||||||
{
|
{
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include "buffer.h"
|
|
||||||
|
|
||||||
constexpr auto MAX_STRING_SIZE = 21;
|
constexpr auto MAX_STRING_SIZE = 21;
|
||||||
|
|
||||||
|
class Buffer;
|
||||||
|
|
||||||
struct Pass
|
struct Pass
|
||||||
{
|
{
|
||||||
char label[MAX_STRING_SIZE];
|
char label[MAX_STRING_SIZE];
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
#include <fstream>
|
#include <fstream>
|
||||||
|
|
||||||
#include "cryptography.h"
|
#include "cryptography.h"
|
||||||
|
#include "Buffer.h"
|
||||||
|
|
||||||
|
|
||||||
Cryptography::Cryptography(const char* password, size_t size)
|
Cryptography::Cryptography(const char* password, size_t size)
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#include "func.h"
|
#include "func.h"
|
||||||
#include "glob.h"
|
#include "glob.h"
|
||||||
|
#include "Buffer.h"
|
||||||
|
|
||||||
Pass* find_password(Buffer* buff, char* label)
|
Pass* find_password(Buffer* buff, char* label)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user