summaryrefslogtreecommitdiffstats
path: root/include/freerdp/crypto/certificate_store.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/freerdp/crypto/certificate_store.h')
-rw-r--r--include/freerdp/crypto/certificate_store.h72
1 files changed, 72 insertions, 0 deletions
diff --git a/include/freerdp/crypto/certificate_store.h b/include/freerdp/crypto/certificate_store.h
new file mode 100644
index 0000000..e7e43e1
--- /dev/null
+++ b/include/freerdp/crypto/certificate_store.h
@@ -0,0 +1,72 @@
+/**
+ * FreeRDP: A Remote Desktop Protocol Implementation
+ * Certificate Handling
+ *
+ * Copyright 2011-2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
+ * Copyright 2023 Armin Novak <anovak@thincast.com>
+ * Copyright 2023 Thincast Technologies GmbH
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef FREERDP_CRYPTO_CERTIFICATE_STORE_H
+#define FREERDP_CRYPTO_CERTIFICATE_STORE_H
+
+#include <freerdp/api.h>
+#include <freerdp/settings.h>
+#include <freerdp/crypto/certificate_data.h>
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+ typedef struct rdp_certificate_store rdpCertificateStore;
+
+ typedef enum
+ {
+ CERT_STORE_NOT_FOUND = 1,
+ CERT_STORE_MATCH = 0,
+ CERT_STORE_MISMATCH = -1
+ } freerdp_certificate_store_result;
+
+ FREERDP_API void freerdp_certificate_store_free(rdpCertificateStore* store);
+
+ WINPR_ATTR_MALLOC(freerdp_certificate_store_free, 1)
+ FREERDP_API rdpCertificateStore* freerdp_certificate_store_new(const rdpSettings* settings);
+
+ FREERDP_API freerdp_certificate_store_result freerdp_certificate_store_contains_data(
+ rdpCertificateStore* store, const rdpCertificateData* data);
+
+ WINPR_ATTR_MALLOC(freerdp_certificate_data_free, 1)
+ FREERDP_API rdpCertificateData*
+ freerdp_certificate_store_load_data(rdpCertificateStore* store, const char* host, UINT16 port);
+
+ FREERDP_API BOOL freerdp_certificate_store_save_data(rdpCertificateStore* store,
+ const rdpCertificateData* data);
+ FREERDP_API BOOL freerdp_certificate_store_remove_data(rdpCertificateStore* store,
+ const rdpCertificateData* data);
+
+ FREERDP_API const char*
+ freerdp_certificate_store_get_certs_path(const rdpCertificateStore* store);
+ FREERDP_API const char*
+ freerdp_certificate_store_get_hosts_path(const rdpCertificateStore* store);
+
+ FREERDP_API char* freerdp_certificate_store_get_cert_path(const rdpCertificateStore* store,
+ const char* host, UINT16 port);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* FREERDP_CRYPTO_CERTIFICATE_STORE_H */