summaryrefslogtreecommitdiff
path: root/src/strings.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/strings.c')
-rw-r--r--src/strings.c18
1 files changed, 16 insertions, 2 deletions
diff --git a/src/strings.c b/src/strings.c
index 8a621330..b4324c59 100644
--- a/src/strings.c
+++ b/src/strings.c
@@ -1,13 +1,18 @@
-/**
+/*
* XML Security Library (http://www.aleksey.com/xmlsec).
*
- * All the string constants.
*
* This is free software; see Copyright file in the source
* distribution for preciese wording.
*
* Copyright (C) 2002-2016 Aleksey Sanin <aleksey@aleksey.com>. All Rights Reserved.
*/
+/**
+ * SECTION:strings
+ * @Short_description: The strings constants.
+ * @Stability: Private
+ *
+ */
#include "globals.h"
#include <libxml/tree.h>
@@ -108,6 +113,15 @@ const xmlChar xmlSecHrefAes192Cbc[] = "http://www.w3.org/2001/04/xml
const xmlChar xmlSecNameAes256Cbc[] = "aes256-cbc";
const xmlChar xmlSecHrefAes256Cbc[] = "http://www.w3.org/2001/04/xmlenc#aes256-cbc";
+const xmlChar xmlSecNameAes128Gcm[] = "aes128-gcm";
+const xmlChar xmlSecHrefAes128Gcm[] = "http://www.w3.org/2009/xmlenc11#aes128-gcm";
+
+const xmlChar xmlSecNameAes192Gcm[] = "aes192-gcm";
+const xmlChar xmlSecHrefAes192Gcm[] = "http://www.w3.org/2009/xmlenc11#aes192-gcm";
+
+const xmlChar xmlSecNameAes256Gcm[] = "aes256-gcm";
+const xmlChar xmlSecHrefAes256Gcm[] = "http://www.w3.org/2009/xmlenc11#aes256-gcm";
+
const xmlChar xmlSecNameKWAes128[] = "kw-aes128";
const xmlChar xmlSecHrefKWAes128[] = "http://www.w3.org/2001/04/xmlenc#kw-aes128";