X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=src%2Fcrypto%2FsslUtil.h;h=4a451b3a1903aae6d251c1579f5e71efbe89c79a;hb=d234de2397cb1137fe180aff5026894e4095abc5;hp=7a6850451f81566477930f14791a7223b7e34686;hpb=9e866a1a2facc8cb1565cd660c6b6d482f18ecb1;p=cassiopeia.git diff --git a/src/crypto/sslUtil.h b/src/crypto/sslUtil.h index 7a68504..4a451b3 100644 --- a/src/crypto/sslUtil.h +++ b/src/crypto/sslUtil.h @@ -1,20 +1,29 @@ #pragma once -#include + #include #include +#include #include +#include + +#include -class CAConfig { -public: +#include "db/database.h" + +struct CAConfig { std::string path; std::string name; + std::string crlURL; + std::string crtURL; std::shared_ptr ca; std::shared_ptr caKey; - CAConfig( std::string name ); + std::shared_ptr notBefore; -}; + CAConfig( const std::string& name ); + bool crlNeedsResign(); +}; struct Profile { uint16_t id; @@ -22,13 +31,26 @@ struct Profile { std::string eku; std::string ku; - std::shared_ptr ca; + std::vector> ca; + std::time_t maxValidity; + std::shared_ptr getCA() { + for( auto it = ca.rbegin(); it != ca.rend(); it++ ) { + if( X509_cmp_current_time( ( *it )->notBefore.get() ) < 0 ) { + return *it; + } + } + + return ca[0]; + } }; extern std::shared_ptr ssl_lib_ref; -std::shared_ptr loadX509FromFile( std::string filename ); -std::shared_ptr loadPkeyFromFile( std::string filename ); +std::shared_ptr loadX509FromFile( const std::string& filename ); +std::shared_ptr loadPkeyFromFile( const std::string& filename ); std::shared_ptr generateSSLContext( bool server ); -std::shared_ptr openSerial( const std::string name ); +std::shared_ptr openSerial( const std::string& name ); +std::string timeToString( std::shared_ptr time ); + +void extractTimes( std::shared_ptr source, std::shared_ptr cert );