补充缺失的头文件

This commit is contained in:
taynpg 2024-03-08 17:12:19 +08:00
parent 4600979405
commit 2291bddfdb
3 changed files with 5 additions and 1 deletions

3
.gitignore vendored
View File

@ -1 +1,2 @@
build
build
.cache

View File

@ -1,6 +1,8 @@
#ifndef BOX_CRTP_RSA_H
#define BOX_CRTP_RSA_H
#include <cstddef>
namespace cppbox {
struct HData {

View File

@ -1,6 +1,7 @@
#include <iostream>
#include <box_rsa.h>
#include <cassert>
#include <cstring>
using namespace cppbox;