Home
last modified time | relevance | path

Searched refs:SslCertificate (Results 1 – 25 of 723) sorted by relevance

12345678910>>...29

/dports/polish/kadu/kadu-4.3/kadu-core/ssl/
H A Dssl-certificate-repository.h29 class SslCertificate; variable
35 using Storage = QSet<SslCertificate>;
46 QSet<SslCertificate> certificates() const;
48 void setPersistentCertificates(const QSet<SslCertificate> &certificates);
49 QSet<SslCertificate> persistentCertificates() const;
51 bool containsCertificate(const SslCertificate &certificate) const;
54 void addCertificate(SslCertificate certificate);
55 void addPersistentCertificate(SslCertificate certificate);
56 void removeCertificate(SslCertificate certificate);
H A Dssl-certificate.cpp24 SslCertificate::SslCertificate(QString hostName, QByteArray pemHexEncodedCertificate) : in SslCertificate() function in SslCertificate
30 QString SslCertificate::hostName() const in hostName()
35 QByteArray SslCertificate::pemHexEncodedCertificate() const in pemHexEncodedCertificate()
40 bool operator == (const SslCertificate &x, const SslCertificate &y) in operator ==()
49 uint qHash(const SslCertificate &key, uint seed) in qHash()
H A Dssl-certificate-repository.cpp43 QSet<SslCertificate> SslCertificateRepository::certificates() const in certificates()
48 void SslCertificateRepository::setPersistentCertificates(const QSet<SslCertificate> &certificates) in setPersistentCertificates()
54 QSet<SslCertificate> SslCertificateRepository::persistentCertificates() const in persistentCertificates()
59 bool SslCertificateRepository::containsCertificate(const SslCertificate &certificate) const in containsCertificate()
64 void SslCertificateRepository::addCertificate(SslCertificate certificate) in addCertificate()
69 void SslCertificateRepository::addPersistentCertificate(SslCertificate certificate) in addPersistentCertificate()
75 void SslCertificateRepository::removeCertificate(SslCertificate certificate) in removeCertificate()
H A Dssl-certificate.h25 class SslCertificate
29 SslCertificate(QString hostName, QByteArray pemHexEncodedCertificate);
40 bool operator == (const SslCertificate &x, const SslCertificate &y);
41 uint qHash(const SslCertificate &key, uint seed = 0);
H A Dssl-certificate-storage.cpp50 QSet<SslCertificate> SslCertificateStorage::loadCertificates() const in loadCertificates()
56 auto result = QSet<SslCertificate>{}; in loadCertificates()
63 result.insert(SslCertificate{hostName, pemHexEncodedCertificate}); in loadCertificates()
68 void SslCertificateStorage::storeCertificates(const QSet<SslCertificate> &certificates) const in storeCertificates()
H A Dssl-certificate-storage.h33 class SslCertificate; variable
43 QSet<SslCertificate> loadCertificates() const;
44 void storeCertificates(const QSet<SslCertificate> &certificates) const;
/dports/net/bosh-bootloader/bosh-bootloader-7.2.12/vendor/github.com/genevieve/leftovers/gcp/compute/
H A Dssl_certificate.go5 type SslCertificate struct { struct
10 func NewSslCertificate(client sslCertificatesClient, name string) SslCertificate {
11 return SslCertificate{
17 func (s SslCertificate) Delete() error { argument
26 func (s SslCertificate) Name() string { argument
30 func (s SslCertificate) Type() string { argument
H A Dssl_certificate_test.go18 sslCertificate compute.SslCertificate
34 Expect(client.DeleteSslCertificateCall.Receives.SslCertificate).To(Equal(name))
/dports/devel/upp/upp/uppsrc/Core/SSL/
H A DUtil.cpp65 bool SslCertificate::Load(const String& data, bool asn1) in Load()
81 String SslCertificate::Save(bool asn1) const in Save()
99 String SslCertificate::GetSubjectName() const in GetSubjectName()
105 String SslCertificate::GetIssuerName() const in GetIssuerName()
111 Date SslCertificate::GetNotBefore() const in GetNotBefore()
117 Date SslCertificate::GetNotAfter() const in GetNotAfter()
123 int SslCertificate::GetVersion() const in GetVersion()
129 String SslCertificate::GetSerialNumber() const in GetSerialNumber()
152 SslCertificate cert; in UseCertificate()
/dports/sysutils/synergy/synergy-core-1.14.0.4-stable/src/gui/src/
H A DSslCertificate.cpp41 SslCertificate::SslCertificate(QObject *parent) : in SslCertificate() function in SslCertificate
50 bool SslCertificate::runTool(const QStringList& args) in runTool()
96 void SslCertificate::generateCertificate(const QString& path, const QString& keyLength, bool forceG… in generateCertificate()
160 void SslCertificate::generateFingerprint(const QString& certificateFilename) in generateFingerprint()
189 QString SslCertificate::getCertKeyLength(const QString &path) { in getCertKeyLength()
H A DSslCertificate.h25 class SslCertificate : public QObject
30 explicit SslCertificate(QObject *parent = 0);
/dports/sysutils/barrier/barrier-2.3.3/src/gui/src/
H A DSslCertificate.cpp37 SslCertificate::SslCertificate(QObject *parent) : in SslCertificate() function in SslCertificate
46 bool SslCertificate::runTool(const QStringList& args) in runTool()
91 void SslCertificate::generateCertificate() in generateCertificate()
151 void SslCertificate::generateFingerprint(const QString& certificateFilename) in generateFingerprint()
H A DSslCertificate.h22 class SslCertificate : public QObject
27 explicit SslCertificate(QObject *parent = 0);
/dports/www/chromium-legacy/chromium-88.0.4324.182/android_webview/java/src/org/chromium/android_webview/
H A DSslUtil.java7 import android.net.http.SslCertificate;
26 @NetError int error, SslCertificate cert, String url) { in sslErrorFromNetErrorCode()
43 public static SslCertificate getCertificateFromDerBytes(byte[] derBytes) { in getCertificateFromDerBytes()
51 return new SslCertificate(x509Certificate); in getCertificateFromDerBytes()
/dports/sysutils/kubectl/kubernetes-1.22.2/staging/src/k8s.io/legacy-cloud-providers/gce/
H A Dgce_cert.go34 func (g *Cloud) GetSslCertificate(name string) (*compute.SslCertificate, error) {
44 func (g *Cloud) CreateSslCertificate(sslCerts *compute.SslCertificate) (*compute.SslCertificate, er… argument
66 func (g *Cloud) ListSslCertificates() ([]*compute.SslCertificate, error) {
/dports/www/grafana8/grafana-8.3.6/vendor/cloud.google.com/go/compute/apiv1/
H A Dregion_ssl_certificates_client.go57 …t, *computepb.GetRegionSslCertificateRequest, ...gax.CallOption) (*computepb.SslCertificate, error)
102 …putepb.GetRegionSslCertificateRequest, opts ...gax.CallOption) (*computepb.SslCertificate, error) {
229 …putepb.GetRegionSslCertificateRequest, opts ...gax.CallOption) (*computepb.SslCertificate, error) {
260 rsp := &computepb.SslCertificate{}
325 …it.InternalFetch = func(pageSize int, pageToken string) ([]*computepb.SslCertificate, string, erro…
406 items []*computepb.SslCertificate
421 …InternalFetch func(pageSize int, pageToken string) (results []*computepb.SslCertificate, nextPageT…
431 func (it *SslCertificateIterator) Next() (*computepb.SslCertificate, error) {
432 var item *computepb.SslCertificate
/dports/net/drive/drive-0.4.0/vendor/cloud.google.com/go/compute/apiv1/
H A Dregion_ssl_certificates_client.go57 …t, *computepb.GetRegionSslCertificateRequest, ...gax.CallOption) (*computepb.SslCertificate, error)
102 …putepb.GetRegionSslCertificateRequest, opts ...gax.CallOption) (*computepb.SslCertificate, error) {
229 …putepb.GetRegionSslCertificateRequest, opts ...gax.CallOption) (*computepb.SslCertificate, error) {
260 rsp := &computepb.SslCertificate{}
325 …it.InternalFetch = func(pageSize int, pageToken string) ([]*computepb.SslCertificate, string, erro…
406 items []*computepb.SslCertificate
421 …InternalFetch func(pageSize int, pageToken string) (results []*computepb.SslCertificate, nextPageT…
431 func (it *SslCertificateIterator) Next() (*computepb.SslCertificate, error) {
432 var item *computepb.SslCertificate
/dports/www/gohugo/hugo-0.91.2/vendor/cloud.google.com/go/compute/apiv1/
H A Dregion_ssl_certificates_client.go57 …t, *computepb.GetRegionSslCertificateRequest, ...gax.CallOption) (*computepb.SslCertificate, error)
102 …putepb.GetRegionSslCertificateRequest, opts ...gax.CallOption) (*computepb.SslCertificate, error) {
229 …putepb.GetRegionSslCertificateRequest, opts ...gax.CallOption) (*computepb.SslCertificate, error) {
260 rsp := &computepb.SslCertificate{}
328 …it.InternalFetch = func(pageSize int, pageToken string) ([]*computepb.SslCertificate, string, erro…
409 items []*computepb.SslCertificate
424 …InternalFetch func(pageSize int, pageToken string) (results []*computepb.SslCertificate, nextPageT…
434 func (it *SslCertificateIterator) Next() (*computepb.SslCertificate, error) {
435 var item *computepb.SslCertificate
/dports/www/tusd/tusd-1.8.0/vendor/cloud.google.com/go/compute/apiv1/
H A Dregion_ssl_certificates_client.go57 …t, *computepb.GetRegionSslCertificateRequest, ...gax.CallOption) (*computepb.SslCertificate, error)
102 …putepb.GetRegionSslCertificateRequest, opts ...gax.CallOption) (*computepb.SslCertificate, error) {
229 …putepb.GetRegionSslCertificateRequest, opts ...gax.CallOption) (*computepb.SslCertificate, error) {
260 rsp := &computepb.SslCertificate{}
328 …it.InternalFetch = func(pageSize int, pageToken string) ([]*computepb.SslCertificate, string, erro…
409 items []*computepb.SslCertificate
424 …InternalFetch func(pageSize int, pageToken string) (results []*computepb.SslCertificate, nextPageT…
434 func (it *SslCertificateIterator) Next() (*computepb.SslCertificate, error) {
435 var item *computepb.SslCertificate
/dports/www/tusd/google-cloud-go-storage-v1.18.2/compute/apiv1/
H A Dregion_ssl_certificates_client.go57 …t, *computepb.GetRegionSslCertificateRequest, ...gax.CallOption) (*computepb.SslCertificate, error)
102 …putepb.GetRegionSslCertificateRequest, opts ...gax.CallOption) (*computepb.SslCertificate, error) {
229 …putepb.GetRegionSslCertificateRequest, opts ...gax.CallOption) (*computepb.SslCertificate, error) {
260 rsp := &computepb.SslCertificate{}
328 …it.InternalFetch = func(pageSize int, pageToken string) ([]*computepb.SslCertificate, string, erro…
409 items []*computepb.SslCertificate
424 …InternalFetch func(pageSize int, pageToken string) (results []*computepb.SslCertificate, nextPageT…
434 func (it *SslCertificateIterator) Next() (*computepb.SslCertificate, error) {
435 var item *computepb.SslCertificate
/dports/net/rclone/rclone-1.57.0/vendor/cloud.google.com/go/compute/apiv1/
H A Dregion_ssl_certificates_client.go56 …t, *computepb.GetRegionSslCertificateRequest, ...gax.CallOption) (*computepb.SslCertificate, error)
101 …putepb.GetRegionSslCertificateRequest, opts ...gax.CallOption) (*computepb.SslCertificate, error) {
228 …putepb.GetRegionSslCertificateRequest, opts ...gax.CallOption) (*computepb.SslCertificate, error) {
259 rsp := &computepb.SslCertificate{}
324 …it.InternalFetch = func(pageSize int, pageToken string) ([]*computepb.SslCertificate, string, erro…
405 items []*computepb.SslCertificate
420 …InternalFetch func(pageSize int, pageToken string) (results []*computepb.SslCertificate, nextPageT…
430 func (it *SslCertificateIterator) Next() (*computepb.SslCertificate, error) {
431 var item *computepb.SslCertificate
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/cloud.google.com/go/compute/apiv1/
H A Dregion_ssl_certificates_client.go56 …t, *computepb.GetRegionSslCertificateRequest, ...gax.CallOption) (*computepb.SslCertificate, error)
101 …putepb.GetRegionSslCertificateRequest, opts ...gax.CallOption) (*computepb.SslCertificate, error) {
228 …putepb.GetRegionSslCertificateRequest, opts ...gax.CallOption) (*computepb.SslCertificate, error) {
259 rsp := &computepb.SslCertificate{}
324 …it.InternalFetch = func(pageSize int, pageToken string) ([]*computepb.SslCertificate, string, erro…
405 items []*computepb.SslCertificate
420 …InternalFetch func(pageSize int, pageToken string) (results []*computepb.SslCertificate, nextPageT…
430 func (it *SslCertificateIterator) Next() (*computepb.SslCertificate, error) {
431 var item *computepb.SslCertificate
/dports/www/gitlab-pages/gitlab-pages-f8512edbec4ec83b426c8ca2dda467de424685e4/vendor/cloud.google.com/go/compute/apiv1/
H A Dregion_ssl_certificates_client.go56 …t, *computepb.GetRegionSslCertificateRequest, ...gax.CallOption) (*computepb.SslCertificate, error)
101 …putepb.GetRegionSslCertificateRequest, opts ...gax.CallOption) (*computepb.SslCertificate, error) {
228 …putepb.GetRegionSslCertificateRequest, opts ...gax.CallOption) (*computepb.SslCertificate, error) {
259 rsp := &computepb.SslCertificate{}
324 …it.InternalFetch = func(pageSize int, pageToken string) ([]*computepb.SslCertificate, string, erro…
405 items []*computepb.SslCertificate
420 …InternalFetch func(pageSize int, pageToken string) (results []*computepb.SslCertificate, nextPageT…
430 func (it *SslCertificateIterator) Next() (*computepb.SslCertificate, error) {
431 var item *computepb.SslCertificate
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/surface/compute/ssl_certificates/
H A Dcreate.py81 sslCertificate=client.messages.SslCertificate(
82 type=client.messages.SslCertificate.TypeValueValuesEnum.MANAGED,
95 sslCertificate=client.messages.SslCertificate(
105 sslCertificate=client.messages.SslCertificate(
/dports/polish/kadu/kadu-4.3/kadu-core/ssl/gui/
H A Dssl-certificate-error-dialog.h37 …explicit SslCertificateErrorDialog(SslCertificate certificate, const QList<QSslError> &errors, QWi…
45 SslCertificate m_certificate;

12345678910>>...29