~ubuntu-branches/ubuntu/hardy/lasso/hardy

« back to all changes in this revision

Viewing changes to lasso/xml/saml-2.0/saml2_assertion.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Bienia
  • Date: 2007-07-31 21:35:26 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070731213526-oc6jw5mprcd5tjyy
Tags: 2.0.0-1ubuntu1
* Merge from debian unstable. Remaining changes:
  + debian/control:
    - Modify Maintainer value to match DebianMaintainerField spec.
* debian/rules:
  + Add CC=gcc-4.2 to the configure call else configure won't find jni.h
    from libgcj8-dev.
* configure{,.ac}:
  + Add missing quotes around the value for PHP[45]_LIBS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: saml2_assertion.h,v 1.2 2005/11/21 18:51:52 fpeters Exp $ 
 
1
/* $Id: saml2_assertion.h,v 1.4 2006/12/20 09:03:40 dlaniel Exp $ 
2
2
 *
3
3
 * Lasso - A free implementation of the Liberty Alliance specifications.
4
4
 *
53
53
#include "saml2_subject.h"
54
54
#include "saml2_name_id.h"
55
55
 
 
56
#include <lasso/xml/xml_enc.h>
 
57
 
56
58
struct _LassoSaml2Assertion {
57
59
        LassoNode parent;
58
60
 
76
78
        LassoSignatureMethod sign_method;
77
79
        char *private_key_file;
78
80
        char *certificate_file;
79
 
 
 
81
        gboolean encryption_activated;
 
82
        char *encryption_public_key_str;
 
83
        LassoEncryptionSymKeyType encryption_sym_key_type;
80
84
};
81
85
 
82
86