diff options
author | Frederic Peters <fpeters@entrouvert.com> | 2005-11-20 15:38:19 +0000 |
---|---|---|
committer | Frederic Peters <fpeters@entrouvert.com> | 2005-11-20 15:38:19 +0000 |
commit | ebb9f7dffc22196e6c1cb18b218fc411b4d190c2 (patch) | |
tree | fce2aedd2eebee66103da6dc0f811063b8934f12 /lasso/xml/saml-2.0/saml2_encrypted_element.c | |
parent | 56c88d1921c3b05c0213d2a1321502b2290b0b6f (diff) | |
download | lasso-ebb9f7dffc22196e6c1cb18b218fc411b4d190c2.tar.gz lasso-ebb9f7dffc22196e6c1cb18b218fc411b4d190c2.tar.xz lasso-ebb9f7dffc22196e6c1cb18b218fc411b4d190c2.zip |
SAML 2.0 support (only web-sso for the moment)
Diffstat (limited to 'lasso/xml/saml-2.0/saml2_encrypted_element.c')
-rw-r--r-- | lasso/xml/saml-2.0/saml2_encrypted_element.c | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/lasso/xml/saml-2.0/saml2_encrypted_element.c b/lasso/xml/saml-2.0/saml2_encrypted_element.c new file mode 100644 index 00000000..84b69923 --- /dev/null +++ b/lasso/xml/saml-2.0/saml2_encrypted_element.c @@ -0,0 +1,112 @@ +/* $Id$ + * + * Lasso - A free implementation of the Liberty Alliance specifications. + * + * Copyright (C) 2004, 2005 Entr'ouvert + * http://lasso.entrouvert.org + * + * Authors: See AUTHORS file in top-level directory. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#include "saml2_encrypted_element.h" + +/* + * Schema fragment (saml-schema-assertion-2.0.xsd): + * + * <complexType name="EncryptedElementType"> + * <sequence> + * <element ref="xenc:EncryptedData"/> + * <element ref="xenc:EncryptedKey" minOccurs="0" maxOccurs="unbounded"/> + * </sequence> + * </complexType> + */ + +/*****************************************************************************/ +/* private methods */ +/*****************************************************************************/ + + +static struct XmlSnippet schema_snippets[] = { + { "EncryptedData", SNIPPET_NODE, + G_STRUCT_OFFSET(LassoSaml2EncryptedElement, EncryptedData) }, + { "EncryptedKey", SNIPPET_NODE, + G_STRUCT_OFFSET(LassoSaml2EncryptedElement, EncryptedKey) }, + {NULL, 0, 0} +}; + +static LassoNodeClass *parent_class = NULL; + + +/*****************************************************************************/ +/* instance and class init functions */ +/*****************************************************************************/ + +static void +instance_init(LassoSaml2EncryptedElement *node) +{ + node->EncryptedData = NULL; + node->EncryptedKey = NULL; +} + +static void +class_init(LassoSaml2EncryptedElementClass *klass) +{ + LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); + + parent_class = g_type_class_peek_parent(klass); + nclass->node_data = g_new0(LassoNodeClassData, 1); + lasso_node_class_set_nodename(nclass, "EncryptedElement"); + lasso_node_class_set_ns(nclass, LASSO_SAML2_ASSERTION_HREF, LASSO_SAML2_ASSERTION_PREFIX); + lasso_node_class_add_snippets(nclass, schema_snippets); +} + +GType +lasso_saml2_encrypted_element_get_type() +{ + static GType this_type = 0; + + if (!this_type) { + static const GTypeInfo this_info = { + sizeof (LassoSaml2EncryptedElementClass), + NULL, + NULL, + (GClassInitFunc) class_init, + NULL, + NULL, + sizeof(LassoSaml2EncryptedElement), + 0, + (GInstanceInitFunc) instance_init, + }; + + this_type = g_type_register_static(LASSO_TYPE_NODE, + "LassoSaml2EncryptedElement", &this_info, 0); + } + return this_type; +} + +/** + * lasso_saml2_encrypted_element_new: + * + * Creates a new #LassoSaml2EncryptedElement object. + * + * Return value: a newly created #LassoSaml2EncryptedElement object + **/ +LassoNode* +lasso_saml2_encrypted_element_new() +{ + return g_object_new(LASSO_TYPE_SAML2_ENCRYPTED_ELEMENT, NULL); +} |