summaryrefslogtreecommitdiff
path: root/deps/ntlmclient/unicode.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/ntlmclient/unicode.h')
-rw-r--r--deps/ntlmclient/unicode.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/deps/ntlmclient/unicode.h b/deps/ntlmclient/unicode.h
new file mode 100644
index 000000000..e3b17bcf7
--- /dev/null
+++ b/deps/ntlmclient/unicode.h
@@ -0,0 +1,36 @@
+/*
+ * Copyright (c) Edward Thomson. All rights reserved.
+ *
+ * This file is part of ntlmclient, distributed under the MIT license.
+ * For full terms and copyright information, and for third-party
+ * copyright information, see the included LICENSE.txt file.
+ */
+
+#ifndef PRIVATE_UNICODE_H__
+#define PRIVATE_UNICODE_H__
+
+#include "compat.h"
+
+#define NTLM_UNICODE_MAX_LEN 2048
+
+typedef struct ntlm_unicode_ctx ntlm_unicode_ctx;
+
+extern ntlm_unicode_ctx *ntlm_unicode_ctx_init(ntlm_client *ntlm);
+
+bool ntlm_unicode_utf8_to_16(
+ char **converted,
+ size_t *converted_len,
+ ntlm_unicode_ctx *ctx,
+ const char *string,
+ size_t string_len);
+
+bool ntlm_unicode_utf16_to_8(
+ char **converted,
+ size_t *converted_len,
+ ntlm_unicode_ctx *ctx,
+ const char *string,
+ size_t string_len);
+
+extern void ntlm_unicode_ctx_free(ntlm_unicode_ctx *ctx);
+
+#endif /* PRIVATE_UNICODE_H__ */