easyssl 0.51.8d8e9a5
EasySSL is base back end library for your c++ Qt projects.
icertificate.cpp
Go to the documentation of this file.
1/*
2 * Copyright (C) 2021-2025 QuasarApp.
3 * Distributed under the GPLv3 software license, see the accompanying
4 * Everyone is permitted to copy and distribute verbatim copies
5 * of this license document, but changing it is not allowed.
6*/
7
8
9
10#include "icertificate.h"
11
12
13namespace EasySSL {
14
15ICertificate::ICertificate(const QSharedPointer<ICrypto> &generator) {
16 _keyGenerator = generator;
17}
18
19const QSharedPointer<ICrypto> &ICertificate::keyGenerator() const {
20 return _keyGenerator;
21}
22
23}
const QSharedPointer< ICrypto > & keyGenerator() const
generator This method return private key generator.
ICertificate(const QSharedPointer< ICrypto > &generator)