4#include "Stroika/Foundation/StroikaPreComp.h"
6#if qStroika_HasComponent_OpenSSL
7#include "Stroika/Foundation/Cryptography/Providers/OpenSSL/PrivateKey.h"
9#include "Stroika/Foundation/Execution/RequiredComponentMissingException.h"
13#include "PrivateKey.h"
17using namespace Stroika::Foundation::Cryptography;
18#if !qStroika_HasComponent_OpenSSL
27auto Cryptography::PKI::PrivateKey::Ptr::ToString () const ->
String
29 if (*
this ==
nullptr) {
34 sb <<
"type: "sv << this->GetType ();
35 sb <<
", bits: "sv << this->GetBits ();
36 sb <<
", summary: "sv << this->GetPrintSummary ();
Similar to String, but intended to more efficiently construct a String. Mutable type (String is large...
String is like std::u32string, except it is much easier to use, often much more space efficient,...