X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=src%2Fcrypto%2FsslUtil.h;h=2ecba42b9874686014d7c72ac77919de321a1b63;hb=6121035a7d8ea738bc89c2de8e6602fb1099b0e2;hp=1327a17bd47367dd0113ce8dec984e1ca93ccb27;hpb=3ea4de25c712971a35dbad27d8834d75933daa08;p=cassiopeia.git diff --git a/src/crypto/sslUtil.h b/src/crypto/sslUtil.h index 1327a17..2ecba42 100644 --- a/src/crypto/sslUtil.h +++ b/src/crypto/sslUtil.h @@ -2,6 +2,7 @@ #include #include +#include #include #include #include @@ -10,15 +11,18 @@ #include "db/database.h" -class CAConfig { -public: +struct CAConfig { std::string path; std::string name; + std::string crlURL; + std::string crtURL; std::shared_ptr ca; std::shared_ptr caKey; std::shared_ptr notBefore; + CAConfig( const std::string& name ); + bool crlNeedsResign(); }; @@ -31,13 +35,21 @@ struct Profile { std::vector> ca; std::time_t maxValidity; std::shared_ptr getCA() { + std::shared_ptr min = nullptr; + for( auto it = ca.rbegin(); it != ca.rend(); it++ ) { if( X509_cmp_current_time( ( *it )->notBefore.get() ) < 0 ) { - return *it; + if( min != nullptr ) { + if( strcmp( min->name.c_str(), ( *it )->name.c_str() ) < 0 ) { + min = *it; + } + } else { + min = *it; + } } } - return ca[0]; + return min ? min : ca[0]; } }; @@ -49,4 +61,5 @@ std::shared_ptr loadPkeyFromFile( const std::string& filename ); std::shared_ptr generateSSLContext( bool server ); 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 );