./PaxHeaders/lasso-2.9.00000644000000000000000000000013215046611655012012 xustar0030 mtime=1754993581.137009191 30 atime=1754993581.145009024 30 ctime=1754993581.137009191 lasso-2.9.0/0000775000175000017500000000000015046611655013744 5ustar00bdauvergnebdauvergnelasso-2.9.0/PaxHeaders/README.WIN320000644000000000000000000000013013766621500013406 xustar0029 mtime=1608196928.71889494 29 atime=1754992978.15754473 30 ctime=1754993575.205133426 lasso-2.9.0/README.WIN320000644000175000017500000000121613766621500015420 0ustar00bdauvergnebdauvergne====================== Using Lasso Win32 Port ====================== Compile ======= Execute:: ./autogen.sh --host=i686-pc-mingw32 --with-pkg-config-path=/usr/local/lib/pkgconfig and next ``make``. Know bugs ========= Windows 9x/ME ~~~~~~~~~~~~~ Description ----------- Some problem with link definition. Fix --- After the build error, edit the lasso/*/.libs/*.la files and remove any link calls to user32 and kernel32. Installation ~~~~~~~~~~~~ Description ----------- The ``.dll`` file is not copied to his destination directory. Fix --- Manually copy the ``.dll`` file (``lasso/.libs/liblasso-3.dll``) to its destination directory. lasso-2.9.0/PaxHeaders/.version0000644000000000000000000000013215046611473013416 xustar0030 mtime=1754993467.779381103 30 atime=1754993467.779381103 30 ctime=1754993575.213133259 lasso-2.9.0/.version0000664000175000017500000000000615046611473015424 0ustar00bdauvergnebdauvergne2.9.0 lasso-2.9.0/PaxHeaders/configure.ac0000644000000000000000000000013115046610454014213 xustar0029 mtime=1754992940.27432282 30 atime=1754992940.310322083 30 ctime=1754993575.165134264 lasso-2.9.0/configure.ac0000664000175000017500000007712715046610454016244 0ustar00bdauvergnebdauvergnednl -*- Mode: sh -*- dnl dnl configure.ac - top level autoconf file for Lasso dnl (Process this file with autoconf to produce a configure script.) dnl dnl dnl See COPYING at the top of this package for the full license terms. dnl dnl dnl Declare package and package version. dnl (r-c).a.r dnl - First number is the lowest supported API version number. dnl - Second number is the number of supported API versions where API version > dnl first number. dnl - Third number is the current API version implementation version number. dnl See libtool explanations about current, age and release, later in this file. AC_INIT([lasso], m4_esyscmd([tools/git-version-gen .tarball-version]), lasso-devel@lists.labs.libre-entreprise.org) dnl Check if autoconf ver > 2.53 AC_PREREQ(2.53) AC_CONFIG_MACRO_DIR([m4]) dnl Perform only subset commands and variable relevant to the host type. AC_CANONICAL_HOST AC_CANONICAL_SYSTEM dnl Check existence of a relative pathed source file. AC_CONFIG_SRCDIR(lasso/lasso.c) dnl Copy stamp REVISIO-INFO in the configure script. AC_REVISION($Revision$) dnl Run many macros mostly needed by configure.ac. AM_INIT_AUTOMAKE([foreign tar-pax]) dnl Support automake 1.11 silent mode m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) m4_ifdef([AM_SILENT_RULES],[HAVE_AM_SILENT_RULES=yes]) AM_CONDITIONAL(HAVE_AM_SILENT_RULES, test x$HAVE_AM_SILENT_RULES != x) dnl Create rules to automaticaly regenerate the config header. AM_CONFIG_HEADER([config.h lasso/lasso_config.h]) dnl Add --enable-maintainer-mode option to configure. AM_MAINTAINER_MODE([enable]) dnl ========================================================================== dnl Perform host specific configuration dnl ========================================================================== NULL= ### Sun Java environment needs to be told about platform... SUN_EXTRA_INCLUDE= case "${host}" in *-pc-mingw32) SUN_EXTRA_INCLUDE="win32" ;; *-pc-cygwin) SUN_EXTRA_INCLUDE="win32" ;; *linux*) SUN_EXTRA_INCLUDE="linux" ;; *solaris*) SUN_EXTRA_INCLUDE="solaris" ;; esac ### adapting build environment for different platforms... MINGW=0 DARWIN=0 case "${host}" in *aix*) CFLAGS="${CFLAGS} -D_ALL_SOURCE" ;; *-pc-mingw32) case "${build}" in *-pc-cygwin) CC="gcc -mno-cygwin" CFLAGS="${CFLAGS} -D_MSC_VER -DIN_LASSO -DMINGW -DWIN32 -D_WIN32 -I/usr/local/include" LDFLAGS="${LDFLAGS} -L/usr/local/lib" MINGW=1 ;; esac ;; *darwin*) DARWIN=1 ;; esac # OSX Fink if test -d /sw/bin ; then PATH=$PATH:/sw/bin fi dnl dnl Check for programs dnl CFLAGS="$CFLAGS -Werror=undef -Werror=implicit-function-declaration" AC_PROG_CC AM_CFLAGS="" AC_HEADER_STDC LT_AC_PROG_RC AC_EXEEXT AC_PROG_CC_C_O AM_SANITY_CHECK AC_PROG_AWK AC_PROG_LN_S AC_LIBTOOL_WIN32_DLL AM_PROG_LIBTOOL AC_SUBST(LIBTOOL_DEPS) AS_COMPILER_FLAGS(WARNING_FLAGS, "-Wall -Wextra -Wno-missing-field-initializers -Wno-unused-parameter -Wold-style-definition -Wdeclaration-after-statement -Wmissing-declarations -Wredundant-decls -Wmissing-noreturn -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Winline -Wformat-nonliteral -Wformat-security -Wswitch-enum -Wswitch-default -Winit-self -Wmissing-include-dirs -Wundef -Waggregate-return -Wmissing-format-attribute -Wnested-externs") dnl Find tar command for make dist AC_CHECK_PROGS(TAR, gnutar gtar tar) dnl Check existence of binding programs AC_CHECK_CLASSPATH AC_PROG_JAVAC AC_PROG_JAVA AC_PROG_JAVAH AC_PROG_JAR DPS_XTRA_CLASSPATH(CLASSPATH_JUNIT, junit.framework.Test, junit.jar) old_cp=$CLASSPATH export CLASSPATH=${CLASSPATH}:${CLASSPATH_JUNIT} AC_CHECK_JUNIT if test "x$old_cp" = "x"; then unset CLASSPATH else $CLASSPATH=$old_cp fi unset old_cp dnl AC_CHECK_PROGS(JAVA, gij java) dnl AC_CHECK_PROGS(JAVAC, gcj javac) dnl AC_CHECK_PROGS(JAVAH, gjavah gcjh javah) dnl AC_CHECK_PROGS(JAR, fastjar jar) AC_CHECK_PROGS(PERL, perl) AC_CHECK_PROGS(PHP5, php5 php) AC_CHECK_PROGS(PHP5_CONFIG, php-config5 php-config) AC_CHECK_PROGS(PHP7, php7.4 php7.3 php7.2 php7.1 php7.0 php7 php) AC_CHECK_PROGS(PHP7_CONFIG, php-config7.4 php-config7.3 php-config7.2 php-config7.1 php-config7.0 php-config7 php-config) AC_CHECK_PROGS(PYTHON, python3 python) AC_CHECK_PROGS(SWIG, swig) dnl Make sure we have an ANSI compiler test "z$U" != "z" && AC_MSG_ERROR(Compiler not ANSI compliant) dnl Check for variadic macros AC_CACHE_CHECK([for variadic cpp macros], [ac_cv_cpp_variadic_macros], [AC_TRY_COMPILE( [#include #define a(b,c...) printf(b,##c)], [a("foo");a("%s","bar");a("%s%s","baz","quux");], ac_cv_cpp_variadic_macros=yes, ac_cv_cpp_variadic_macros=no)]) if test "x${ac_cv_cpp_variadic_macros}" != "xno"; then AC_DEFINE(HAVE_VARIADIC_MACROS, 1, Support for variadic macros) fi dnl ========================================================================== dnl Version Super.Size.Me.L dnl ========================================================================== changequote(<<, >>)dnl VERSION_MAJOR=`echo $VERSION | $SED -e 's/^\([^\.]*\)\.\([^\.]*\)\.\(.*\)$/\1/'` VERSION_MINOR=`echo $VERSION | $SED -e 's/^\([^\.]*\)\.\([^\.]*\)\.\(.*\)$/\2/'` VERSION_RELEASE=`echo $VERSION | $SED -e 's/^\([^\.]*\)\.\([^\.]*\)\.\([0-9]*\).*$/\3/'` changequote([, ])dnl VERSION_UNDERSCORED=`echo $VERSION | $SED -e 's/\./_/g'` AC_SUBST(VERSION_UNDERSCORED) dnl Add versionning & package defines to lasso_.h AC_DEFINE_UNQUOTED(LASSO_VERSION_MAJOR, $VERSION_MAJOR, [Major version number]) AC_DEFINE_UNQUOTED(LASSO_VERSION_MINOR, $VERSION_MINOR, [Minor version number]) AC_DEFINE_UNQUOTED(LASSO_VERSION_SUBMINOR, $VERSION_RELEASE, [Release version number]) dnl Create an XMLSEC version number for tests AC_DEFINE(LASSO_XMLSEC_VERSION_NUMBER, [(((XMLSEC_VERSION_MAJOR * 0x010000) + (XMLSEC_VERSION_MINOR * 0x0100) + (XMLSEC_VERSION_SUBMINOR * 0x01)))], [XMLSEC Version number]) AH_BOTTOM([#include ]) dnl Dirty hack in order to have dynamic resource version numbering. WINDOWS_VERSION=`echo $VERSION_MAJOR,$VERSION_MINOR,$VERSION_RELEASE,0` AC_SUBST(WINDOWS_VERSION) dnl CURRENT, REVISION, AGE dnl - library source changed -> increment REVISION dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0 dnl - interfaces added -> increment AGE dnl - interfaces removed -> AGE = 0 # syntax: CURRENT[:REVISION[:AGE]] # So if M=major, m=minor, r=release: # c = M + a = M + m; # m = a # r = r current=`expr $VERSION_MAJOR + $VERSION_MINOR` LASSO_VERSION_INFO="19:0:16" AC_SUBST(LASSO_VERSION_INFO) dnl Compute the minimal supported ABI version for Win32 scripts and resources files. minimal_version=`echo $LASSO_VERSION_INFO | $AWK -F: '{printf("%d\n",$1-$3)};'` UPCASED_DLL_FILENAME="LIBLASSO-$minimal_version.DLL" DLL_FILENAME="liblasso-$minimal_version.dll" AC_SUBST(UPCASED_DLL_FILENAME) AC_SUBST(DLL_FILENAME) dnl Detect available languages binding. languages_available= # ------------ # JAVA binding # ------------ dnl Check if java is explicitly disabled. AC_ARG_ENABLE(java, [ --enable-java enable the Java binding],, enable_java="no") AC_ARG_WITH(java-home, [ --with-java-home=(JAVA_HOME) set the full path to the java home directory.]) SUN=no dnl If the java compiler seems to be a Sun JDK-like compile (Kaffe, Sun JDK...) if test "x$JAVAC" = "xjavac"; then JAVAC_PATH=`which $JAVAC` if test "x$with_java_home" = "x"; then with_java_home=`readlink -f $JAVAC_PATH | sed s#/bin/.*##` fi dnl If we have a java compiler dnl need to change quotes to allow square brackets changequote(<<, >>)dnl JAVA_VERSION=`$JAVA -version 2>&1 | $SED -ne 's/\(openjdk\|java\) \(full\)*version "\([^"]*\)".*/\3/p' 2>/dev/null` changequote([, ])dnl dnl If no java version found, perphas it is a kaffee environment... if test "x$JAVA_VERSION" = x; then JAVA_VERSION=`$JAVA -version 2>&1 | grep "Java Version" | $SED 's/^.*Java Version: //g'` dnl If the java environment is kaffe, specify the JAVA_INCLUDE directory. else dnl We assume it is a SUN environment. SUN=yes fi CLASSPATH_OPT="-classpath" fi if test "x$with_java_home" != x; then JAVA_INCLUDE="$with_java_home/include" fi if ! test -f "$JAVA_INCLUDE/jni.h"; then JAVA_VERSION="" fi dnl GNU java environment if test "x$JAVAH" = "xgcjh" || test "x$JAVAH" = "xgjavah" ; then dnl JNI compatible header files. (not used with SWIG.) JAVAH_FLAGS="-jni" JAVA_INCLUDE="" fi dnl If the java compiler is the GNU Java Compiler. if echo "$JAVAC" | grep -q "gcj"; then changequote(<<, >>)dnl JAVA_VERSION=`$JAVAC --version 2>&1 | $SED -ne 's/gcj[^[:blank:]]* ([^)]*) \([^ ]*\).*/\1/p' 2>/dev/null` MAJOR=`echo $JAVA_VERSION | sed 's/.*[^[:digit:]]\?\([[:digit:]]\+\)\.[[:digit:]]\+\.[[:digit:]]\+/\1/'` MINOR=`echo $JAVA_VERSION | sed 's/.*[^[:digit:]]\?[[:digit:]]\+\.\([[:digit:]]\+\)\.[[:digit:]]\+/\1/'` RELEASE=`echo $JAVA_VERSION | sed 's/.*[^[:digit:]]\?[[:digit:]]\+\.[[:digit:]]\+\.\([[:digit:]]\+\).*/\1/'` changequote([, ])dnl dnl Byte-compiled .class file if test $MAJOR -gt 4 -o \( $MAJOR -eq 4 -a $MINOR -gt 1 \) -o \( $MAJOR -eq 4 -a $MINOR -eq 1 -a $RELEASE -ge 3 \); then JAVAC_FLAGS="-fsource=1.4 -ftarget=1.4" fi unset MAJOR unset MINOR unset RELEASE dnl Checking for jni.h if gcj is the java interpreter. AC_CHECK_HEADERS([jni.h], [], [JAVA_VERSION=""]) CLASSPATH_OPT="--classpath" fi dnl Now transform JAVA_INCLUDE in CFLAG option if applicable. if test "X$JAVA_INCLUDE" != "X"; then dnl If it is a sun environment if test "x$SUN" = "xyes"; then JAVA_INCLUDE="$JAVA_INCLUDE -I$JAVA_INCLUDE/$SUN_EXTRA_INCLUDE" fi JAVA_INCLUDE=-I$JAVA_INCLUDE fi dnl If we found a java version information, we have java compilation environment. if test "X$JAVA_VERSION" != "X" && test "X$JAR" != "X" && test "x$JAVAH" != "x"; then languages_available="$languages_available $JAVA($JAVA_VERSION)" else enable_java=no JAVA_VERSION="" fi dnl Support JNI under MacOsX if test "$DARWIN" = 1; then JNI_EXTRA_LDFLAGS="-shrext .jnilib" fi dnl Conditional java sub dir test. AM_CONDITIONAL([JAVA_ENABLED],[test "x$enable_java" = "xyes"]) AM_CONDITIONAL([JUNIT_ENABLED],[test "x$JUNIT" != "x"]) AC_SUBST(JAVA_VERSION) AC_SUBST(JAVAC_FLAGS) AC_SUBST(JAVAH_FLAGS) AC_SUBST(JAVA_INCLUDE) AC_SUBST(CLASSPATH_OPT) JDK_INCLUDE=$JAVA_INCLUDE AC_SUBST(JDK_INCLUDE) AC_SUBST(JNI_EXTRA_LDFLAGS) # -------------- # Python binding # -------------- dnl Check if python is explicitly disabled. AC_ARG_ENABLE(python, [ --disable-python disable the Python binding],, enable_python="yes") dnl Check if user passed a specific python program. AC_ARG_WITH(python, [ --with-python=(PYTHON) set the full path to the python program to use.]) dnl specific program passed, set PYTHON to it. if test "X$with_python" != "X"; then PYTHON=$with_python fi test "x$PYTHON" != "x" || AC_MSG_ERROR(Python must be installed to compile lasso) dnl need to change quotes to allow square brackets changequote(<<, >>)dnl PYTHON_VERSION=`$PYTHON -c ' try: import sysconfig except ImportError: from distutils import sysconfig print(sysconfig.get_config_var("VERSION"))'` changequote([, ])dnl AC_MSG_CHECKING(for Python development files) dnl Check if we were be able to extract a good version number. if test "X$PYTHON_VERSION" != "X"; then changequote(<<, >>)dnl PYTHON_INC=`$PYTHON -c ' try: import sysconfig print(sysconfig.get_path("include")) except ImportError: from distutils import sysconfig print(sysconfig.get_python_inc()) '` PYTHON_LIB=`$PYTHON -c ' try: import sysconfig if "deb_system" in sysconfig.get_scheme_names(): print(sysconfig.get_path("platlib", scheme="deb_system")) else: print(sysconfig.get_path("platlib")) except ImportError: from distutils import sysconfig print(sysconfig.get_python_lib(True)) '` changequote([, ])dnl PYTHON_H=$PYTHON_INC/Python.h if test -f $PYTHON_H; then PY_CFLAGS="-I$PYTHON_INC" PY_MAKEFILE=`$PYTHON -c ' try: import sysconfig except ImportError: from distutils import sysconfig print(sysconfig.get_makefile_filename()) '` PY_OTHER_LIBS=`$SED -n -e 's/^LIBS=\(.*\)/\1/p' $PY_MAKEFILE` PY_EXTRA_LIBS="$PY_LOCALMODLIBS $PY_BASEMODLIBS $PY_OTHER_LIBS" dnl this extracts the $libdir out of python lib directory, dnl replacing it by our own. PY_SUFFIX_LIB=`echo $PYTHON_LIB | $SED -e 's/.*python/python/'` PY_SITE_PACKAGES="\${libdir}/$PY_SUFFIX_LIB" AC_SUBST(PYTHON) AC_SUBST(PY_LIB_LOC) AC_SUBST(PY_CFLAGS) AC_SUBST(PY_EXTRA_LIBS) AC_SUBST(PY_DYNLOAD) AC_SUBST(PY_LIB_A) AC_SUBST(PY_SITE_PACKAGES) languages_available="$languages_available python($PYTHON_VERSION)" else enable_python=no fi else enable_python=no fi AM_CONDITIONAL([PYTHON_ENABLED],[test "x$enable_python" = "xyes"]) AC_MSG_RESULT($enable_python) AC_SUBST(PYTHON_VERSION) # ----------- # PHP 5 binding # ----------- dnl Check if php is explicitly enabled. AC_ARG_ENABLE(php5, [ --enable-php5 enable the PHP 5 binding],, enable_php5="yes") AC_ARG_WITH(php5-config, [ --with-php5-config=(PHP5_CONFIG) Specify full path to php-config5.]) AC_ARG_ENABLE(php5-force, [ --enable-php5-force always enable of the PHP 5 binding (win32)], [ENABLE_PHP5_FORCE="yes"], [ENABLE_PHP5_FORCE="no"]) dnl Check if user passed a specific php-config program. if test "X$with_php5_config" != "X" ; then PHP5_CONFIG=$with_php5_config fi if test "X$PHP5_CONFIG" != "X" ; then PHP5_INCLUDES=`$PHP5_CONFIG --includes` PHP5_LDFLAGS=`$PHP5_CONFIG --ldflags` PHP5_LIBS=`$PHP5_CONFIG --libs` PHP5_PREFIX=`$PHP5_CONFIG --prefix` PHP5_QUOTED_PREFIX=$(echo $PHP5_PREFIX | $SED 's/\//\\\//g') PHP5_UNPREFIXED_EXTENSION_DIR=$($PHP5_CONFIG --extension-dir | $SED "s/$PHP5_QUOTED_PREFIX//g") else # We assume PHP are in /usr/local directory. if test $MINGW -eq 1; then CFLAGS="$CFLAGS -DZTS -DZEND_WIN32 -DWIN32 -D_MBCS" fi PHP5_INCLUDES="-I/usr/local/include/php5 -I/usr/local/include/php5/main -I/usr/local/include/php5/Zend -I/usr/local/include/php5/TSRM -I/usr/local/include/php5/win32" PHP5_LDFLAGS= PHP5_LIBS="-lphp5ts -lxmlparse -lxmltok" PHP5_UNPREFIXED_EXTENSION_DIR= PHP5_PREFIX= fi AC_ARG_WITH(php5-include-dir, [ --with-php5-include-dir=(PHP5_INCLUDE_DIR) Specify full path to php 5 include dir.], [PHP5_INCLUDE_DIR="$withval"],[PHP5_INCLUDE_DIR=${datadir}/php]) AC_ARG_WITH(php5-config-dir, [ --with-php5-config-dir=(PHP5_CONFIG_DIR) Specify full path to php 5 config dir.], [PHP5_CONFIG_DIR="$withval"],[PHP5_CONFIG_DIR=${sysconfdir}/php5/conf.d/]) AC_SUBST(PHP5_INCLUDES) AC_SUBST(PHP5_LDFLAGS) AC_SUBST(PHP5_LIBS) AC_SUBST(PHP5_UNPREFIXED_EXTENSION_DIR) AC_SUBST(PHP5_EXTENSION_DIR) AC_SUBST(PHP5_PREFIX) AC_SUBST(PHP5_INCLUDE_DIR) AC_SUBST(PHP5_CONFIG_DIR) AC_MSG_CHECKING(for PHP 5 development files) if $PHP5_CONFIG --version | grep -q "^5" || test "x$ENABLE_PHP5_FORCE" = "xyes" then PHP5_VERSION=`$PHP5_CONFIG --version 2> /dev/null` languages_available="$languages_available php5($PHP5_VERSION)" else enable_php5=no fi AC_MSG_RESULT($enable_php5) AM_CONDITIONAL([PHP5_ENABLED], [test "x$enable_php5" = "xyes"]) AC_SUBST(PHP5_VERSION) # ----------- # PHP 7 binding # ----------- dnl Check if php is explicitly enabled. AC_ARG_ENABLE(php7, [ --enable-php7 enable the PHP 7 binding],, enable_php7="yes") AC_ARG_WITH(php7-config, [ --with-php7-config=(PHP7_CONFIG) Specify full path to php-config7.]) AC_ARG_ENABLE(php7-force, [ --enable-php7-force always enable of the PHP 7 binding (win32)], [ENABLE_PHP7_FORCE="yes"], [ENABLE_PHP7_FORCE="no"]) dnl Check if user passed a specific php-config program. if test "X$with_php7_config" != "X" ; then PHP7_CONFIG=$with_php7_config fi if test "X$PHP7_CONFIG" != "X" ; then PHP7_INCLUDES=`$PHP7_CONFIG --includes` PHP7_LDFLAGS=`$PHP7_CONFIG --ldflags` PHP7_LIBS=`$PHP7_CONFIG --libs` PHP7_PREFIX=`$PHP7_CONFIG --prefix` PHP7_QUOTED_PREFIX=$(echo $PHP7_PREFIX | $SED 's/\//\\\//g') PHP7_UNPREFIXED_EXTENSION_DIR=$($PHP7_CONFIG --extension-dir | $SED "s/$PHP7_QUOTED_PREFIX//g") else # We assume PHP are in /usr/local directory. if test $MINGW -eq 1; then CFLAGS="$CFLAGS -DZTS -DZEND_WIN32 -DWIN32 -D_MBCS" fi PHP7_INCLUDES="-I/usr/local/include/php7 -I/usr/local/include/php7/main -I/usr/local/include/php7/Zend -I/usr/local/include/php7/TSRM -I/usr/local/include/php7/win32" PHP7_LDFLAGS= PHP7_LIBS="-lphp7ts -lxmlparse -lxmltok" PHP7_UNPREFIXED_EXTENSION_DIR= PHP7_PREFIX= fi AC_ARG_WITH(php7, [ --with-php7=(PHP) Specify full path to php 7 executable.], [PHP7="$withval"],[PHP7_INCLUDE_DIR=php7]) AC_ARG_WITH(php7-include-dir, [ --with-php7-include-dir=(PHP7_INCLUDE_DIR) Specify full path to php 7 include dir.], [PHP7_INCLUDE_DIR="$withval"],[PHP7_INCLUDE_DIR=${datadir}/php]) AC_ARG_WITH(php7-config-dir, [ --with-php7-config-dir=(PHP7_CONFIG_DIR) Specify full path to php 7 config dir.], [PHP7_CONFIG_DIR="$withval"],[PHP7_CONFIG_DIR=${sysconfdir}/php7/conf.d/]) AC_SUBST(PHP7_INCLUDES) AC_SUBST(PHP7_LDFLAGS) AC_SUBST(PHP7_LIBS) AC_SUBST(PHP7_UNPREFIXED_EXTENSION_DIR) AC_SUBST(PHP7_EXTENSION_DIR) AC_SUBST(PHP7_PREFIX) AC_SUBST(PHP7_INCLUDE_DIR) AC_SUBST(PHP7_CONFIG_DIR) AC_MSG_CHECKING(for PHP 7 development files) if $PHP7_CONFIG --version | grep -q "^7" || test "x$ENABLE_PHP7_FORCE" = "xyes" then PHP7_VERSION=`$PHP7_CONFIG --version 2> /dev/null` languages_available="$languages_available php7($PHP7_VERSION)" else enable_php7=no fi AC_MSG_RESULT($enable_php7) AM_CONDITIONAL([PHP7_ENABLED], [test "x$enable_php7" = "xyes"]) AC_SUBST(PHP7_VERSION) ### # ---------- ### # C# binding (disabled for the moment) ### # ---------- ### ### AC_ARG_ENABLE(csharp, [ --disable-csharp disable the C Sharp binding],, ### enable_csharp="yes") ### ### AC_ARG_WITH(cil-interpreter, [ --with-cil-interpreter=path set location of CIL interpreter for CSharp],[CSHARPBIN="$withval"], [CSHARPBIN=]) ### AC_ARG_WITH(csharp-compiler, [ --with-csharp-compiler=path set location of CSharp compiler],[CSHARPCOMPILERBIN="$withval"], [CSHARPCOMPILERBIN=]) ### ### if test -z "$CSHARPCOMPILERBIN" ; then ### case $host in ### *-*-cygwin* | *-*-mingw*) ### AC_CHECK_PROGS(CSHARPCOMPILER, mcs.bat cscc csc);; ### *)AC_CHECK_PROGS(CSHARPCOMPILER, mcs cscc);; ### esac ### else ### CSHARPCOMPILER="$CSHARPCOMPILERBIN" ### fi ### ### CSHARPPATHSEPARATOR="/" ### CSHARPCYGPATH_W=echo ### if test -z "$CSHARPBIN" ; then ### #languages_available="$languages_available C#($CSHARPCOMPILER)" ### CSHARPCILINTERPRETER="" ### if test "cscc" = "$CSHARPCOMPILER" ; then ### AC_CHECK_PROGS(CSHARPCILINTERPRETER, ilrun) ### else ### if test "mcs" = "$CSHARPCOMPILER"; then ### # Check that mcs is the C# compiler and not the Unix mcs utility by examining the output of 'mcs --version' ### # The Mono compiler should emit: Mono C# compiler version a.b.c.d ### csharp_version_raw=`(mcs --version) 2>/dev/null` ### csharp_version_searched=`(mcs --version | sed -n "/C#\|Mono/p") 2>/dev/null` ### CSHARPCOMPILER=""; ### if test -n "$csharp_version_raw" ; then ### if test "$csharp_version_raw" = "$csharp_version_searched" ; then ### CSHARPCOMPILER="mcs" ### fi ### fi ### ### # mono interpreter (ver 0.26 doesn't seem to work on Windows platforms) ### case $host in ### *-*-cygwin* | *-*-mingw*) ### ;; ### *)AC_CHECK_PROGS(CSHARPCILINTERPRETER, mint);; ### esac ### else ### if test "csc" = "$CSHARPCOMPILER"; then ### CSHARPPATHSEPARATOR="\\\\" ### CSHARPCYGPATH_W='cygpath -w' ### fi ### fi ### fi ### else ### CSHARPCILINTERPRETER="$CSHARPBIN" ### fi # Cygwin requires the Windows standard (Pascal) calling convention as it is a Windows executable and not a Cygwin built executable case $host in *-*-cygwin* | *-*-mingw*) if test "$GCC" = yes; then CSHARPDYNAMICLINKING=" -Wl,--add-stdcall-alias" else CSHARPDYNAMICLINKING="" fi ;; *)CSHARPDYNAMICLINKING="";; esac AC_CHECK_PROGS(GACUTIL, gacutil) AC_SUBST(CSHARPCILINTERPRETER) AC_SUBST(CSHARPCYGPATH_W) AC_SUBST(CSHARPCOMPILER) AC_SUBST(CSHARPDYNAMICLINKING) AC_SUBST(CSHARPLIBRARYPREFIX) # Is this going to be used? AC_SUBST(GACUTIL) if test "X$CSHARPCOMPILER" = X; then enable_csharp=no fi if test "X$GACUTIL" = X; then enable_csharp=no fi AM_CONDITIONAL([CSHARP_ENABLED], [test "x$enable_csharp" = "xyes"]) # ------------ # Perl binding # ------------ AC_ARG_ENABLE(perl, [ --disable-perl disable the Perl binding],, enable_perl="yes") if test "X$PERL" != "X"; then PERLINSTALLSITEARCH=`$PERL -MConfig -e 'print $Config{installsitearch};'` PERLMAN3DIR=`$PERL -MConfig -e 'print $Config{man3dir};'` PERL_CFLAGS=$($PERL -V::ccflags: | tr -d "'") else PERLINSTALLSITEARCH=none PERLMAN3DIR=none PERL_CFLAGS= fi AC_SUBST(PERLINSTALLSITEARCH) AC_SUBST(PERLMAN3DIR) AC_SUBST(PERL_CFLAGS) AC_MSG_CHECKING(for Perl API) if test "X$enable_perl" != "Xno" ; then if test "X$enable_perl" != "Xyes"; then PERL=$enable_perl fi enable_perl=yes fi PERL_VERSION=`$PERL -MConfig -e 'print $Config{version}' 2>/dev/null` if test "X$PERL_VERSION" != "X"; then languages_available="$languages_available perl($PERL_VERSION)" if test $enable_perl = yes; then languages="$languages perl" fi fi AM_CONDITIONAL([PERL_ENABLED],[test "x$enable_perl" = "xyes"]) AC_MSG_RESULT($enable_perl) AC_SUBST(PERL_VERSION) dnl Checks for zlib library (code adapted from libxml2 configure.in) _cppflags="${CPPFLAGS}" _ldflags="${LDFLAGS}" AC_ARG_WITH(zlib, [ --with-zlib[[=DIR]] use libz in DIR],[ if test "$withval" != "no" -a "$withval" != "yes"; then Z_DIR=$withval CPPFLAGS="${CPPFLAGS} -I$withval/include" LDFLAGS="${LDFLAGS} -L$withval/lib" fi ]) saved_LIB=$LIBS LIBS= AC_CHECK_HEADERS(zlib.h, AC_SEARCH_LIBS(gzread, [z zlib1],[ AC_DEFINE([HAVE_LIBZ], [], [Have compression library]) if test "x${Z_DIR}" != "x"; then Z_CFLAGS="-I${Z_DIR}/include" Z_LIBS="-L${Z_DIR}/lib $LIBS" [case ${host} in *-*-solaris*) Z_LIBS="-L${Z_DIR}/lib -R${Z_DIR}/lib $LIBS" ;; esac] else Z_LIBS="$LIBS" fi])) LIBS=$saved_LIB test "z$Z_LIBS" != "z" || AC_MSG_ERROR(missing zlib) AC_SUBST(Z_CFLAGS) AC_SUBST(Z_LIBS) CPPFLAGS=${_cppflags} LDFLAGS=${_ldflags} dnl Final step, add missing programs. AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir) AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir) AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir) AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir) dnl API Reference documentation support # gtkdocize greps for ^GTK_DOC_CHECK and parses it, so you need to have # it on it's own line. m4_ifdef([GTK_DOC_CHECK], [ GTK_DOC_CHECK([1.14],[--flavour no-tmpl]) ],[ AM_CONDITIONAL([ENABLE_GTK_DOC],[false]) ]) if test "z$with_html_dir" != "z" ; then LASSO_DOCDIR=$with_html_dir else LASSO_DOCDIR='$(datadir)/doc/lasso' fi AC_SUBST(LASSO_DOCDIR) AC_ARG_WITH(html-dir, [ --with-html-dir=PATH path to installed docs ]) if test "x$with_html_dir" = "x" ; then HTML_DIR='${datadir}/gtk-doc/html' else HTML_DIR=$with_html_dir fi AC_SUBST(HTML_DIR) dnl pkg-config path AC_ARG_WITH(pkg-config, [ --with-pkg-config=PATH set pkg-config metadata search path.], PKG_CONFIG_PATH="${withval}", PKG_CONFIG_PATH="") if test "z$PKG_CONFIG_PATH" != "z"; then export PKG_CONFIG_PATH fi PKG_CHECK_MODULES(LASSO, glib-2.0 >= 2.17.0 gobject-2.0 >= 2.17.0 libxml-2.0 xmlsec1 >= 1.2.6 xmlsec1-openssl >= 1.2.6 openssl) dnl ========================================================================== dnl Test suite (requires check) dnl ========================================================================== dnl Check if user disabled the tests. AC_ARG_ENABLE(tests, [ --disable-tests disable the test suite],, enable_tests="yes") if test "x$enable_tests" = xyes ; then PKG_CHECK_MODULES(CHECK, check, [], [ AC_CHECK_LIB(check, srunner_set_log, enable_tests="yes", enable_tests="no") CHECK_CFLAGS="" CHECK_LIBS="-lcheck" ]) AC_SUBST(CHECK_CFLAGS) AC_SUBST(CHECK_LIBS) AC_CHECK_LIB(check, srunner_set_xml, [AC_DEFINE(CHECK_IS_XML, [], [Define if check available with XML support])]) fi AM_CONDITIONAL(WITH_TESTS, [test "x$enable_tests" = "xyes"]) AC_CHECK_PROGS(REST2HTML, rest2html rst2html) AM_CONDITIONAL(HAVE_REST2HTML, test -n "$ac_cv_prog_REST2HTML") AC_CHECK_PROGS(XSLTPROC, xsltproc) AM_CONDITIONAL(HAVE_XSLTPROC, test -n "$ac_cv_prog_XSLTPROC") AC_CHECK_PROGS(INKSCAPE, inkscape) AM_CONDITIONAL(HAVE_INKSCAPE, test -n "$ac_cv_prog_INKSCAPE") dnl Debug AC_MSG_CHECKING(for debugging) AC_ARG_ENABLE(debugging, [ --enable-debugging enable debuging optimization flags (no)]) if test "z$enable_debugging" = "zyes" ; then enable_debugging=yes LASSO_DEFINES="$LASSO_DEFINES -DLASSO_DEBUG" CFLAGS="$CFLAGS -O0 -g -Wall -Wextra" else enable_debugging=no fi AM_CONDITIONAL([DEBUGGING],[test "x$enable_debugging" = "xyes"]) AC_MSG_RESULT($enable_debugging) AC_SUBST(DEBUGGING) dnl Profiling AC_MSG_CHECKING(for profiling) AC_ARG_ENABLE(profiling, [ --enable-profiling enable profiling compilation flags (no)]) if test "z$enable_profiling" = "zyes" ; then AM_CFLAGS="$AM_CFLAGS -pg" AC_MSG_RESULT(yes) else AC_MSG_RESULT(no) fi AC_ARG_WITH([default-sign-algo], [AS_HELP_STRING([--with-default-sign-algo=[rsa-sha1|rsa-sha256]], [Default signing algorithm (rsa-sha1)] ) ] ) SIGNING_ALGO=rsa-sha1 if test x"$with_default_sign_algo" != x; then if test ! "$with_default_sign_algo" = "rsa-sha1" -a ! "$with_default_sign_algo" = "rsa-sha256"; then AC_MSG_ERROR("Default signing algorithm must be either rsa-sha1 or rsa-sha256") else SIGNING_ALGO=$with_default_sign_algo fi fi AC_DEFINE_UNQUOTED(DEFAULT_SIGNING_ALGO, "$SIGNING_ALGO", ["The default signing algorithm"]) AC_ARG_WITH([min-hash-algo], [AS_HELP_STRING([--with-min-hash-algo=[sha1|sha256|sha384|sha512]], [Minimal allowed hash algorithm (rsa-sha1)] ) ] ) MIN_HASH_ALGO=sha1 if test x"$with_min_hash_algo" != x; then if test ! "$with_min_hash_algo" = "sha1" -a ! "$with_min_hash_algo" = "sha256" -a ! "$with_min_hash_algo" = "sha384" -a ! "$with_min_hash_algo" = "sha512"; then AC_MSG_ERROR("Minimal allowed hash algorithm must be one of sha1, sha256, sha384 or sha512) else MIN_HASH_ALGO=$with_min_hash_algo fi fi AC_DEFINE_UNQUOTED(MIN_HASH_ALGO, "$MIN_HASH_ALGO", ["The minimal hash algorithm"]) AC_ARG_WITH([default-key-encryption-method], [AS_HELP_STRING([--with-default-key-encryption-method=[rsa-pkcs1|rsa-oaep]], [Default key encryption method (rsa-oaep)] ) ] ) KEY_ENCRYPTION_METHOD=rsa-oaep if test x"$with_default_" != x; then if test ! "$with_default_key_encryption_method" = "rsa-pkcs1" -a ! "$with_default_key_encryption_method" = "rsa-oaep"; then AC_MSG_ERROR("Default key encryption method must be either rsa-pkcs1 or rsa-oaep") else SIGNING_ALGO=$with_default_key_encryption_method fi fi AC_DEFINE_UNQUOTED(DEFAULT_KEY_ENCRYPTION_METHOD, "$KEY_ENCRYPTION_METHOD", ["The default key encryption method"]) dnl ========================================================================== dnl Pedantic compilation dnl ========================================================================== AC_MSG_CHECKING(for pedantic) AC_ARG_ENABLE(pedantic, [ --enable-pedantic enable pedantic compilation flags (no)]) if test "z$enable_pedantic" = "zyes" ; then CFLAGS="$CFLAGS -O -pedantic -Wall -ansi -fno-inline -W -Wunused -Wimplicit -Wreturn-type -Wswitch -Wcomment -Wtrigraphs -Wformat -Wchar-subscripts -Wuninitialized -Wparentheses -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Waggregate-return -Wmissing-prototypes -Wnested-externs -Winline -Wredundant-decls" AC_MSG_RESULT(yes) else AC_MSG_RESULT(no) fi dnl ========================================================================== dnl Static linking dnl ========================================================================== LASSO_STATIC_BINARIES="" AC_MSG_CHECKING(for static linking) AC_ARG_ENABLE(static_linking, [ --enable-static-linking enable static linking (no)]) if test "z$enable_static_linking" = "zyes" ; then LASSO_STATIC_BINARIES="-static" AC_MSG_RESULT(yes) else AC_MSG_RESULT(no) fi AC_SUBST(LASSO_STATIC_BINARIES) dnl ========================================================================== dnl Final steps: lasso config dnl ========================================================================== LASSO_PUB_CFLAGS="$LASSO_DEFINES" LASSO_CORE_CFLAGS="$LASSO_CFLAGS $LASSO_DEFINES $Z_CFLAGS -DLASSO_INTERNALS" if test $MINGW -eq 1; then LASSO_CORE_LIBS="-llasso-0" else LASSO_CORE_LIBS="-llasso " fi AC_SUBST(LASSO_CORE_CFLAGS) AC_SUBST(LASSO_CORE_LIBS) LASSO_CFLAGS="$LASSO_CFLAGS" LASSO_LIBS="-L${libdir} $Z_LIBS $LASSO_LIBS" AC_SUBST(LASSO_CFLAGS) AC_SUBST(LASSO_LIBS) AC_SUBST(LASSO_PUB_CFLAGS) AC_SUBST(LASSO_DEFINES) AC_SUBST(LASSO_APP_DEFINES) AC_SUBST(CFLAGS) AC_SUBST(AM_CFLAGS) AC_SUBST(CPPFLAGS) AC_SUBST(LDFLAGS) AC_SUBST(CLASSPATH_JUNIT) AC_SUBST(SWIG_VERSION) dnl Dirty system often means dirty hacks... AM_CONDITIONAL(MINGW, test $MINGW -eq 1) AM_CONDITIONAL(DARWIN, test $DARWIN -eq 1) dnl bindings dnl ========================================================================== dnl Writing result files dnl ========================================================================== AC_CONFIG_FILES([lasso-src-config], [chmod +x lasso-src-config]) AC_OUTPUT( [Makefile docs/Makefile docs/lasso-book/Makefile docs/lasso-book/figures/Makefile docs/reference/Makefile docs/reference/lasso/version.xml docs/reference/lasso/Makefile lasso/Makefile lasso/id-ff/Makefile lasso/saml-2.0/Makefile lasso/xml/Makefile lasso/xml/ecp/Makefile lasso/xml/saml-2.0/Makefile lasso/xml/soap-1.1/Makefile lasso/xml/dsig/Makefile tests/Makefile tests/data/Makefile lasso.pc bindings/Makefile bindings/java/Makefile bindings/python/Makefile bindings/python/tests/Makefile bindings/php5/Makefile bindings/php5/examples/Makefile bindings/php5/tests/Makefile bindings/php7/Makefile bindings/php7/examples/Makefile bindings/php7/tests/Makefile bindings/perl/Makefile ]) languages_available=`echo $languages_available | sed -e "s/^ //" ` AC_MSG_RESULT( ============= Configuration ============= Main ---- Compiler: ${CC} CFLAGS: ${AM_CFLAGS} ${CFLAGS} Install prefix: ${prefix} Debugging: $enable_debugging Optionals builds ---------------- Available languages: ${languages_available} Java binding: ${enable_java} Perl binding: ${enable_perl} PHP 5 binding: ${enable_php5} PHP 7 binding: ${enable_php7} Python binding: ${enable_python} C API references: ${enable_gtk_doc} Tests suite: ${enable_tests} Crypto settings --------------- Default signature: ${SIGNING_ALGO} Minimal accepted hash: ${MIN_HASH_ALGO} Key encryption method: ${KEY_ENCRYPTION_METHOD} ) lasso-2.9.0/PaxHeaders/tools0000644000000000000000000000013215046330371013006 xustar0030 mtime=1754902777.781407907 30 atime=1754993581.145009024 30 ctime=1754993575.197133594 lasso-2.9.0/tools/0000755000175000017500000000000015046330371015073 5ustar00bdauvergnebdauvergnelasso-2.9.0/tools/PaxHeaders/check-lasso-sections.py0000644000000000000000000000013215046330371017456 xustar0030 mtime=1754902777.781407907 30 atime=1754992978.141545059 30 ctime=1754993575.197133594 lasso-2.9.0/tools/check-lasso-sections.py0000775000175000017500000000254215046330371021476 0ustar00bdauvergnebdauvergne#!/usr/bin/env python import sys import os.path import re if len(sys.argv) < 3: print("Usage: check-lasso-sections.py " "lasso docs/referenrece/lasso/lasso-sections.txt", file=sys.stderr) sys.exit(1) source=sys.argv[1] lasso_sections_txt=sys.argv[2] methods=[] for dirpath, dirnames, filenames in os.walk(source): for filename in filenames: _, ext = os.path.splitext(filename) with open(os.path.join(dirpath, filename)) as f: lines = f.readlines() while lines: line, lines = lines[0], lines[1:] line=line.strip() if line.startswith('LASSO_EXPORT'): while not ';' in line: line=line.strip() line, lines = line + lines[0], lines[1:] line=line.strip() m=re.match(r'LASSO_EXPORT[^(]*[ \t*](\w+)\s*\(', line) if m: methods.append(m.group(1)) lasso_sections_txt=file(lasso_sections_txt).read() print(' = Methods missing from lasso-sections.txt =\n') for method in methods: if not method in lasso_sections_txt: print(method) print(' = Methods in lasso-sections.txt which does not exist anymore = \n') for line in lasso_sections_txt.splitlines(): if line.startswith('lasso_'): if line not in methods: print(line) lasso-2.9.0/tools/PaxHeaders/format-suppressions.py0000644000000000000000000000013215046330371017500 xustar0030 mtime=1754902777.781407907 30 atime=1754992978.141545059 30 ctime=1754993575.197133594 lasso-2.9.0/tools/format-suppressions.py0000664000175000017500000000145415046330371021516 0ustar00bdauvergnebdauvergneimport re valgrind_log = open('log').read() inblock = False l = 0 i = 0 keep = dict() limit_re = r'type' for line in valgrind_log.splitlines(): if line.startswith('{'): inblock = True block = [] continue if line.startswith('}'): inblock = False l = 0 i += 1 ok = False name = "" for x in block[2:]: name = name + x if re.search(limit_re, x): ok = True break if ok: keep[name] = block continue if inblock: block.append(line) i = 43 for x in keep: block = keep[x] print("{") print(" suppression", i) for x in block[1:]: print(x) if re.search(limit_re, x): break print('}') i += 1 lasso-2.9.0/tools/PaxHeaders/check-makefile.sh0000644000000000000000000000013213766621500016253 xustar0030 mtime=1608196928.966896974 30 atime=1754992978.141545059 30 ctime=1754993575.197133594 lasso-2.9.0/tools/check-makefile.sh0000755000175000017500000000035513766621500020271 0ustar00bdauvergnebdauvergne#!/bin/bash echo Check makefiles for missing .c or .h files cd `dirname $0`/.. for i in `git ls-files *.c *.h`; do pushd `dirname $i` >/dev/null f=`basename $i` if ! grep -q $f Makefile.am; then echo $i fi popd >/dev/null done lasso-2.9.0/tools/PaxHeaders/api.py0000644000000000000000000000013215046330371014206 xustar0030 mtime=1754902777.781407907 30 atime=1754992978.141545059 30 ctime=1754993575.197133594 lasso-2.9.0/tools/api.py0000664000175000017500000000226515046330371016225 0ustar00bdauvergnebdauvergneimport sys import os.path sys.path.append(os.path.join(os.path.dirname(__file__),'../bindings')) import bindings def main(args): class opt(): pass options = opt() srcdir = args[1] options.srcdir = srcdir options.language = None options.exception_doc = None bindings.binding = bindings.BindingData(options) bindings.exclude_private = False bindings.parse_headers(srcdir) binding = bindings.binding d = {} for x in binding.constants: d[x[1]] = x for x in binding.enums: d[x] = None for x in binding.functions: d[x.name] = x for x in binding.structs: d[x.name] = x l = sorted(d.keys()) for x in l: if isinstance(d[x], bindings.Function): print(d[x].return_type, " ",) print(x, end='') print('(', ', '.join(map(lambda x: x[0] + ' ' + x[1], d[x].args)), ')') elif isinstance(d[x], bindings.Struct): print('struct', x, '{ ',) print(', '.join(map(lambda x: x[0] + ' ' + x[1], d[x].members)), end='') print(' }') else: print(x) if __name__ == "__main__": main(sys.argv) lasso-2.9.0/tools/PaxHeaders/gitlog-to-changelog0000644000000000000000000000013213766621500016644 xustar0030 mtime=1608196928.966896974 30 atime=1754992978.141545059 30 ctime=1754993575.197133594 lasso-2.9.0/tools/gitlog-to-changelog0000755000175000017500000003220513766621500020661 0ustar00bdauvergnebdauvergneeval '(exit $?0)' && eval 'exec perl -wS "$0" ${1+"$@"}' & eval 'exec perl -wS "$0" $argv:q' if 0; # Convert git log output to ChangeLog format. # Copied from GNULib the GNU Portability Library my $VERSION = '2012-07-29 06:11'; # UTC # The definition above must lie within the first 8 lines in order # for the Emacs time-stamp write hook (at end) to update it. # If you change this file with Emacs, please let the write hook # do its job. Otherwise, update this string manually. # Copyright (C) 2008-2014 Free Software Foundation, Inc. # 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 3 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, see . # Written by Jim Meyering use strict; use warnings; use Getopt::Long; use POSIX qw(strftime); (my $ME = $0) =~ s|.*/||; # use File::Coda; # http://meyering.net/code/Coda/ END { defined fileno STDOUT or return; close STDOUT and return; warn "$ME: failed to close standard output: $!\n"; $? ||= 1; } sub usage ($) { my ($exit_code) = @_; my $STREAM = ($exit_code == 0 ? *STDOUT : *STDERR); if ($exit_code != 0) { print $STREAM "Try '$ME --help' for more information.\n"; } else { print $STREAM < ChangeLog $ME -- -n 5 foo > last-5-commits-to-branch-foo SPECIAL SYNTAX: The following types of strings are interpreted specially when they appear at the beginning of a log message line. They are not copied to the output. Copyright-paperwork-exempt: Yes Append the "(tiny change)" notation to the usual "date name email" ChangeLog header to mark a change that does not require a copyright assignment. Co-authored-by: Joe User List the specified name and email address on a second ChangeLog header, denoting a co-author. Signed-off-by: Joe User These lines are simply elided. In a FILE specified via --amend, comment lines (starting with "#") are ignored. FILE must consist of pairs where SHA is a 40-byte SHA1 (alone on a line) referring to a commit in the current project, and CODE refers to one or more consecutive lines of Perl code. Pairs must be separated by one or more blank line. Here is sample input for use with --amend=FILE, from coreutils: 3a169f4c5d9159283548178668d2fae6fced3030 # fix typo in title: s/all tile types/all file types/ 1379ed974f1fa39b12e2ffab18b3f7a607082202 # Due to a bug in vc-dwim, I mis-attributed a patch by Paul to myself. # Change the author to be Paul. Note the escaped "@": s,Jim .*>,Paul Eggert , EOF } exit $exit_code; } # If the string $S is a well-behaved file name, simply return it. # If it contains white space, quotes, etc., quote it, and return the new string. sub shell_quote($) { my ($s) = @_; if ($s =~ m![^\w+/.,-]!) { # Convert each single quote to '\'' $s =~ s/\'/\'\\\'\'/g; # Then single quote the string. $s = "'$s'"; } return $s; } sub quoted_cmd(@) { return join (' ', map {shell_quote $_} @_); } # Parse file F. # Comment lines (starting with "#") are ignored. # F must consist of pairs where SHA is a 40-byte SHA1 # (alone on a line) referring to a commit in the current project, and # CODE refers to one or more consecutive lines of Perl code. # Pairs must be separated by one or more blank line. sub parse_amend_file($) { my ($f) = @_; open F, '<', $f or die "$ME: $f: failed to open for reading: $!\n"; my $fail; my $h = {}; my $in_code = 0; my $sha; while (defined (my $line = )) { $line =~ /^\#/ and next; chomp $line; $line eq '' and $in_code = 0, next; if (!$in_code) { $line =~ /^([0-9a-fA-F]{40})$/ or (warn "$ME: $f:$.: invalid line; expected an SHA1\n"), $fail = 1, next; $sha = lc $1; $in_code = 1; exists $h->{$sha} and (warn "$ME: $f:$.: duplicate SHA1\n"), $fail = 1, next; } else { $h->{$sha} ||= ''; $h->{$sha} .= "$line\n"; } } close F; $fail and exit 1; return $h; } # git_dir_option $SRCDIR # # From $SRCDIR, the --git-dir option to pass to git (none if $SRCDIR # is undef). Return as a list (0 or 1 element). sub git_dir_option($) { my ($srcdir) = @_; my @res = (); if (defined $srcdir) { my $qdir = shell_quote $srcdir; my $cmd = "cd $qdir && git rev-parse --show-toplevel"; my $qcmd = shell_quote $cmd; my $git_dir = qx($cmd); defined $git_dir or die "$ME: cannot run $qcmd: $!\n"; $? == 0 or die "$ME: $qcmd had unexpected exit code or signal ($?)\n"; chomp $git_dir; push @res, "--git-dir=$git_dir/.git"; } @res; } { my $since_date; my $format_string = '%s%n%b%n'; my $amend_file; my $append_dot = 0; my $cluster = 1; my $strip_tab = 0; my $strip_cherry_pick = 0; my $srcdir; GetOptions ( help => sub { usage 0 }, version => sub { print "$ME version $VERSION\n"; exit }, 'since=s' => \$since_date, 'format=s' => \$format_string, 'amend=s' => \$amend_file, 'append-dot' => \$append_dot, 'cluster!' => \$cluster, 'strip-tab' => \$strip_tab, 'strip-cherry-pick' => \$strip_cherry_pick, 'srcdir=s' => \$srcdir, ) or usage 1; defined $since_date and unshift @ARGV, "--since=$since_date"; # This is a hash that maps an SHA1 to perl code (i.e., s/old/new/) # that makes a correction in the log or attribution of that commit. my $amend_code = defined $amend_file ? parse_amend_file $amend_file : {}; my @cmd = ('git', git_dir_option $srcdir, qw(log --log-size), '--pretty=format:%H:%ct %an <%ae>%n%n'.$format_string, @ARGV); open PIPE, '-|', @cmd or die ("$ME: failed to run '". quoted_cmd (@cmd) ."': $!\n" . "(Is your Git too old? Version 1.5.1 or later is required.)\n"); my $prev_multi_paragraph; my $prev_date_line = ''; my @prev_coauthors = (); while (1) { defined (my $in = ) or last; $in =~ /^log size (\d+)$/ or die "$ME:$.: Invalid line (expected log size):\n$in"; my $log_nbytes = $1; my $log; my $n_read = read PIPE, $log, $log_nbytes; $n_read == $log_nbytes or die "$ME:$.: unexpected EOF\n"; # Extract leading hash. my ($sha, $rest) = split ':', $log, 2; defined $sha or die "$ME:$.: malformed log entry\n"; $sha =~ /^[0-9a-fA-F]{40}$/ or die "$ME:$.: invalid SHA1: $sha\n"; # If this commit's log requires any transformation, do it now. my $code = $amend_code->{$sha}; if (defined $code) { eval 'use Safe'; my $s = new Safe; # Put the unpreprocessed entry into "$_". $_ = $rest; # Let $code operate on it, safely. my $r = $s->reval("$code") or die "$ME:$.:$sha: failed to eval \"$code\":\n$@\n"; # Note that we've used this entry. delete $amend_code->{$sha}; # Update $rest upon success. $rest = $_; } # Remove lines inserted by "git cherry-pick". if ($strip_cherry_pick) { $rest =~ s/^\s*Conflicts:\n.*//sm; $rest =~ s/^\s*\(cherry picked from commit [\da-f]+\)\n//m; } my @line = split "\n", $rest; my $author_line = shift @line; defined $author_line or die "$ME:$.: unexpected EOF\n"; $author_line =~ /^(\d+) (.*>)$/ or die "$ME:$.: Invalid line " . "(expected date/author/email):\n$author_line\n"; # Format 'Copyright-paperwork-exempt: Yes' as a standard ChangeLog # `(tiny change)' annotation. my $tiny = (grep (/^Copyright-paperwork-exempt:\s+[Yy]es$/, @line) ? ' (tiny change)' : ''); my $date_line = sprintf "%s %s$tiny\n", strftime ("%F", localtime ($1)), $2; my @coauthors = grep /^Co-authored-by:.*$/, @line; # Omit meta-data lines we've already interpreted. @line = grep !/^(?:Signed-off-by:[ ].*>$ |Co-authored-by:[ ] |Copyright-paperwork-exempt:[ ] )/x, @line; # Remove leading and trailing blank lines. if (@line) { while ($line[0] =~ /^\s*$/) { shift @line; } while ($line[$#line] =~ /^\s*$/) { pop @line; } } # Record whether there are two or more paragraphs. my $multi_paragraph = grep /^\s*$/, @line; # Format 'Co-authored-by: A U Thor ' lines in # standard multi-author ChangeLog format. for (@coauthors) { s/^Co-authored-by:\s*/\t /; s/\s*/ or warn "$ME: warning: missing email address for " . substr ($_, 5) . "\n"; } # If clustering of commit messages has been disabled, if this header # would be different from the previous date/name/email/coauthors header, # or if this or the previous entry consists of two or more paragraphs, # then print the header. if ( ! $cluster || $date_line ne $prev_date_line || "@coauthors" ne "@prev_coauthors" || $multi_paragraph || $prev_multi_paragraph) { $prev_date_line eq '' or print "\n"; print $date_line; @coauthors and print join ("\n", @coauthors), "\n"; } $prev_date_line = $date_line; @prev_coauthors = @coauthors; $prev_multi_paragraph = $multi_paragraph; # If there were any lines if (@line == 0) { warn "$ME: warning: empty commit message:\n $date_line\n"; } else { if ($append_dot) { # If the first line of the message has enough room, then if (length $line[0] < 72) { # append a dot if there is no other punctuation or blank # at the end. $line[0] =~ /[[:punct:]\s]$/ or $line[0] .= '.'; } } # Remove one additional leading TAB from each line. $strip_tab and map { s/^\t// } @line; # Prefix each non-empty line with a TAB. @line = map { length $_ ? "\t$_" : '' } @line; print "\n", join ("\n", @line), "\n"; } defined ($in = ) or last; $in ne "\n" and die "$ME:$.: unexpected line:\n$in"; } close PIPE or die "$ME: error closing pipe from " . quoted_cmd (@cmd) . "\n"; # FIXME-someday: include $PROCESS_STATUS in the diagnostic # Complain about any unused entry in the --amend=F specified file. my $fail = 0; foreach my $sha (keys %$amend_code) { warn "$ME:$amend_file: unused entry: $sha\n"; $fail = 1; } exit $fail; } # Local Variables: # mode: perl # indent-tabs-mode: nil # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "my $VERSION = '" # time-stamp-format: "%:y-%02m-%02d %02H:%02M" # time-stamp-time-zone: "UTC" # time-stamp-end: "'; # UTC" # End: lasso-2.9.0/tools/PaxHeaders/spatch0000644000000000000000000000013214050545511014266 xustar0030 mtime=1621281609.275307814 30 atime=1754993581.145009024 30 ctime=1754993575.197133594 lasso-2.9.0/tools/spatch/0000755000175000017500000000000014050545511016353 5ustar00bdauvergnebdauvergnelasso-2.9.0/tools/spatch/PaxHeaders/add-second-arg-to-class-init.cocci0000644000000000000000000000013214050545511022601 xustar0030 mtime=1621281609.275307814 30 atime=1754992978.141545059 30 ctime=1754993575.197133594 lasso-2.9.0/tools/spatch/add-second-arg-to-class-init.cocci0000644000175000017500000000014614050545511024612 0ustar00bdauvergnebdauvergne@@ type T; identifier klass; @@ static void class_init( T klass + , void* unused ) { ... } lasso-2.9.0/tools/spatch/PaxHeaders/remove-gstrcmp.spatch0000644000000000000000000000013213766621500020527 xustar0030 mtime=1608196928.966896974 30 atime=1754992978.141545059 30 ctime=1754993575.197133594 lasso-2.9.0/tools/spatch/remove-gstrcmp.spatch0000644000175000017500000000027713766621500022545 0ustar00bdauvergnebdauvergne@@ expression E,D; @@ - g_strcmp0(E,D) == 0 + lasso_strisequal(E,D) @@ expression E,D; @@ - g_strcmp0(E,D) != 0 + lasso_strisnotequal(E,D) @@ @@ - lasso_is_empty_string + lasso_strisempty lasso-2.9.0/tools/PaxHeaders/git-version-gen0000644000000000000000000000013213766621500016027 xustar0030 mtime=1608196928.966896974 30 atime=1754992886.795418349 30 ctime=1754993575.197133594 lasso-2.9.0/tools/git-version-gen0000755000175000017500000001751613766621500020054 0ustar00bdauvergnebdauvergne#!/bin/sh # Print a version string. scriptversion=2012-12-31.23; # UTC # Copyright (C) 2007-2013 Free Software Foundation, Inc. # # 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 3 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, see . # This script is derived from GIT-VERSION-GEN from GIT: http://git.or.cz/. # It may be run two ways: # - from a git repository in which the "git describe" command below # produces useful output (thus requiring at least one signed tag) # - from a non-git-repo directory containing a .tarball-version file, which # presumes this script is invoked like "./git-version-gen .tarball-version". # In order to use intra-version strings in your project, you will need two # separate generated version string files: # # .tarball-version - present only in a distribution tarball, and not in # a checked-out repository. Created with contents that were learned at # the last time autoconf was run, and used by git-version-gen. Must not # be present in either $(srcdir) or $(builddir) for git-version-gen to # give accurate answers during normal development with a checked out tree, # but must be present in a tarball when there is no version control system. # Therefore, it cannot be used in any dependencies. GNUmakefile has # hooks to force a reconfigure at distribution time to get the value # correct, without penalizing normal development with extra reconfigures. # # .version - present in a checked-out repository and in a distribution # tarball. Usable in dependencies, particularly for files that don't # want to depend on config.h but do want to track version changes. # Delete this file prior to any autoconf run where you want to rebuild # files to pick up a version string change; and leave it stale to # minimize rebuild time after unrelated changes to configure sources. # # As with any generated file in a VC'd directory, you should add # /.version to .gitignore, so that you don't accidentally commit it. # .tarball-version is never generated in a VC'd directory, so needn't # be listed there. # # Use the following line in your configure.ac, so that $(VERSION) will # automatically be up-to-date each time configure is run (and note that # since configure.ac no longer includes a version string, Makefile rules # should not depend on configure.ac for version updates). # # AC_INIT([GNU project], # m4_esyscmd([build-aux/git-version-gen .tarball-version]), # [bug-project@example]) # # Then use the following lines in your Makefile.am, so that .version # will be present for dependencies, and so that .version and # .tarball-version will exist in distribution tarballs. # # EXTRA_DIST = $(top_srcdir)/.version # BUILT_SOURCES = $(top_srcdir)/.version # $(top_srcdir)/.version: # echo $(VERSION) > $@-t && mv $@-t $@ # dist-hook: # echo $(VERSION) > $(distdir)/.tarball-version me=$0 version="git-version-gen $scriptversion Copyright 2011 Free Software Foundation, Inc. There is NO warranty. You may redistribute this software under the terms of the GNU General Public License. For more information about these matters, see the files named COPYING." usage="\ Usage: $me [OPTION]... \$srcdir/.tarball-version [TAG-NORMALIZATION-SED-SCRIPT] Print a version string. Options: --prefix prefix of git tags (default 'v') --fallback fallback version to use if \"git --version\" fails --help display this help and exit --version output version information and exit Running without arguments will suffice in most cases." prefix=v fallback= while test $# -gt 0; do case $1 in --help) echo "$usage"; exit 0;; --version) echo "$version"; exit 0;; --prefix) shift; prefix="$1";; --fallback) shift; fallback="$1";; -*) echo "$0: Unknown option '$1'." >&2 echo "$0: Try '--help' for more information." >&2 exit 1;; *) if test "x$tarball_version_file" = x; then tarball_version_file="$1" elif test "x$tag_sed_script" = x; then tag_sed_script="$1" else echo "$0: extra non-option argument '$1'." >&2 exit 1 fi;; esac shift done if test "x$tarball_version_file" = x; then echo "$usage" exit 1 fi tag_sed_script="${tag_sed_script:-s/x/x/}" nl=' ' # Avoid meddling by environment variable of the same name. v= v_from_git= # First see if there is a tarball-only version file. # then try "git describe", then default. if test -f $tarball_version_file then v=`cat $tarball_version_file` || v= case $v in *$nl*) v= ;; # reject multi-line output [0-9]*) ;; *) v= ;; esac test "x$v" = x \ && echo "$0: WARNING: $tarball_version_file is missing or damaged" 1>&2 fi if test "x$v" != x then : # use $v # Otherwise, if there is at least one git commit involving the working # directory, and "git describe" output looks sensible, use that to # derive a version string. elif test "`git log -1 --pretty=format:x . 2>&1`" = x \ && v=`git describe --abbrev=4 --match="$prefix*" HEAD 2>/dev/null \ || git describe --abbrev=4 HEAD 2>/dev/null` \ && v=`printf '%s\n' "$v" | sed "$tag_sed_script"` \ && case $v in $prefix[0-9]*) ;; *) (exit 1) ;; esac then # Is this a new git that lists number of commits since the last # tag or the previous older version that did not? # Newer: v6.10-77-g0f8faeb # Older: v6.10-g0f8faeb case $v in *-*-*) : git describe is okay three part flavor ;; *-*) : git describe is older two part flavor # Recreate the number of commits and rewrite such that the # result is the same as if we were using the newer version # of git describe. vtag=`echo "$v" | sed 's/-.*//'` commit_list=`git rev-list "$vtag"..HEAD 2>/dev/null` \ || { commit_list=failed; echo "$0: WARNING: git rev-list failed" 1>&2; } numcommits=`echo "$commit_list" | wc -l` v=`echo "$v" | sed "s/\(.*\)-\(.*\)/\1-$numcommits-\2/"`; test "$commit_list" = failed && v=UNKNOWN ;; esac # Change the first '-' to a '.', so version-comparing tools work properly. # Remove the "g" in git describe's output string, to save a byte. v=`echo "$v" | sed 's/-/./;s/\(.*\)-g/\1.g/'`; v_from_git=1 elif test "x$fallback" = x || git --version >/dev/null 2>&1; then v=UNKNOWN else v=$fallback fi v=`echo "$v" |sed "s/^$prefix//"` # Test whether to append the "-dirty" suffix only if the version # string we're using came from git. I.e., skip the test if it's "UNKNOWN" # or if it came from .tarball-version. if test "x$v_from_git" != x; then # Don't declare a version "dirty" merely because a time stamp has changed. git update-index --refresh > /dev/null 2>&1 dirty=`exec 2>/dev/null;git diff-index --name-only HEAD` || dirty= case "$dirty" in '') ;; *) # Append the suffix only if there isn't one already. case $v in *-dirty) ;; *) v="$v-dirty" ;; esac ;; esac fi # Omit the trailing newline, so that m4_esyscmd can use the result directly. echo "$v" | tr -d "$nl" # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: lasso-2.9.0/PaxHeaders/HACKING0000644000000000000000000000013013766621500012714 xustar0029 mtime=1608196928.71889494 29 atime=1754992978.15754473 30 ctime=1754993575.209133342 lasso-2.9.0/HACKING0000644000175000017500000000365313766621500014735 0ustar00bdauvergnebdauvergne============ Coding Style ============ - Use explicit ``!= NULL``, ``!= 0``, etc. This makes code easier to read and remove warnings on some platform. Don't forget SPACES before and after the comparison operator. Examples: BAD: ``if (a)`` BAD: ``if (a!=NULL)`` GOOD: ``if (a != NULL)`` GOOD: ``if (a != 0)`` - Put figure brackets ``{}`` even if you have only one operator in ``if``, ``for``, etc. This also makes code easier to read and saves a lot of time when you need to quickly change something. Examples: BAD: .. line-block:: if (a != NULL) message(G_LOG_LEVEL_MESSAGE, "Ko"); GOOD: .. line-block:: if (a != NULL) { message(G_LOG_LEVEL_MESSAGE, "Ok"); } - Put SPACES before the opening round bracket and after the closing round bracket with ``if``, ``for``, ``switch``, ``while``, etc. One more time, it improves the readability of the code. Examples: BAD: .. line-block:: if(a != NULL){ message(G_LOG_LEVEL_MESSAGE, "Ko"); } GOOD: .. line-block:: if (a != NULL) { message(G_LOG_LEVEL_MESSAGE, "Ok"); } - Limit line length to at most 100 characters. - Check for memory leaks. I recommend valgrind (http://valgrind.kde.org) utility with options: --leak-check=yes --show-reachable=yes --num-callers=32 --suppressions=tests/valgrind/openssl.supp GNU Emacs ========= :: (defun lasso-c-mode () "C mode with adjusted defaults for use with Lasso." (interactive) (c-mode) (c-set-style "K&R") (setq tab-width 8) (setq indent-tabs-mode t) (setq c-basic-offset 8)) This will define the M-x lasso-c-mode command. It can be switched on automatically in a given directory:: (setq auto-mode-alist (cons '("/usr/src/lasso.*/.*\\.[ch]$" . lasso-c-mode) auto-mode-alist)) lasso-2.9.0/PaxHeaders/INSTALL0000644000000000000000000000013215046330371012754 xustar0030 mtime=1754902777.769408493 30 atime=1754992978.117545552 30 ctime=1754993575.177134013 lasso-2.9.0/INSTALL0000664000175000017500000002254715046330371015000 0ustar00bdauvergnebdauvergne================ Installing Lasso ================ Lasso uses the GNU automake and autoconf to handle system dependency checking. It is developed and built locally on GNU/Linux (Debian) both on x86 and PowerPC processors, but is also compiled via Debian infrastructure on several other architectures. Installing build dependencies ============================= If you are building from git you need to install the autotools on your distribution. Buid dependencies are: - libxml2 - libxslt - libxmlsec - python development files - php5 development files - jdk In all cases you need to install development packages for dependencies. On Debian 7.0 Wheezy: aptitude install libxml2-dev libxslt1-dev libxmlsec1-dev libxmlsec1-openssl \ libglib2.0-dev python-all-dev fastjar php5-dev php5-cli python-lxml Basic Installation ================== The 'configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a 'Makefile' in each directory of the package. It may also create one or more '.h' files containing system-dependent definitions. Finally, it creates a shell script 'config.status' that you can run in the future to recreate the current configuration, a file 'config.cache' that saves the results of its tests to speed up reconfiguring, and a file 'config.log' containing compiler output (useful mainly for debugging 'configure'). If you need to do unusual things to compile the package, please try to figure out how 'configure' could check whether to do them, and mail diffs or instructions to the address given in the README_ so they can be considered for the next release. If at some point 'config.cache' contains results you don't want to keep, you may remove or edit it. The file 'configure.in' is used to create 'configure' by a program called 'autoconf'. You only need 'configure.in' if you want to change it or regenerate 'configure' using a newer version of 'autoconf'. The simplest way to compile this package is: 1. ``cd`` to the directory containing the package's source code and type ``./configure`` to configure the package for your system. If you're using 'csh' on an old version of System V, you might need to type ``sh ./configure`` instead to prevent 'csh' from trying to execute 'configure' itself. Running 'configure' takes awhile. While running, it prints some messages telling which features it is checking for. 2. Type ``make`` to compile the package. 3. Optionally, type ``make check`` to run any self-tests that come with the package. 4. Type ``make install`` to install the programs and any data files and documentation. 5. You can remove the program binaries and object files from the source code directory by typing ``make clean``. To also remove the files that 'configure' created (so you can compile the package for a different kind of computer), type ``make distclean``. There is also a ``make maintainer-clean`` target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. Creating 'configure' Program ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ If there is no 'configure' program, you can create it by running the 'autogen.sh' script, as long as you have the 'automake' and 'autoconf' tools. This is done by:: ./autogen.sh and you can also pass along arguments intended for 'configure' (see below for what these are):: ./autogen.sh --prefix=/usr/local/somewhere The 'automake' and 'autoconf' tools have many different versions and at present development is being done with automake 1.8, autoconf 2.59 and libtool 1.5.6. These are only needed when compiling from CVS sources. 'autogen.sh' enforces the requirements. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the 'configure' script does not know about. You can give 'configure' initial values for variables by setting them in the environment. Using a Bourne-compatible shell, you can do that on the command line like this:: CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure Or on systems that have the 'env' program, you can do it like this:: env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you must use a version of 'make' that supports the 'VPATH' variable, such as GNU 'make'. 'cd' to the directory where you want the object files and executables to go and run the 'configure' script. 'configure' automatically checks for the source code in the directory that 'configure' is in and in '..'. If you have to use a 'make' that does not supports the 'VPATH' variable, you have to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use 'make distclean' before reconfiguring for another architecture. Installation Names ================== By default, 'make install' will install the package's files in '/usr/local/bin', '/usr/local/man', etc. You can specify an installation prefix other than '/usr/local' by giving 'configure' the option '--prefix=PATH'. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you give 'configure' the option '--exec-prefix=PATH', the package will use PATH as the prefix for installing programs and libraries. Documentation and other data files will still use the regular prefix. In addition, if you use an unusual directory layout you can give options like '--bindir=PATH' to specify different values for particular kinds of files. Run 'configure --help' for a list of the directories you can set and what kinds of files go in them. You can cause programs to be installed with an extra prefix or suffix on their names by giving 'configure' the option '--program-prefix=PREFIX' or '--program-suffix=SUFFIX'. Optional Features ================= These package pays attention to '--enable-FEATURE' or '--disable-FEATURE' options to 'configure', where FEATURE indicates an optional part of the package. It also pays attention to '--with-PACKAGE' options, where PACKAGE is something like 'gnu-ld' or 'pic'. 'configure' recognizes the following FEATUREs: debugging Display debugging messages in 'stderr'. gtk-doc Build Lasso API reference manual using gtk-doc system (enabled by default if gtk-doc is installed). tests Build unit test suite (enabled by default) 'configure' recognizes the following PACKAGEs: .. coldfusion Build Lasso ColdFusion binding (enabled by default, use ``--with-coldfusion=no`` to disable). java Build Lasso Java binding (enabled by default, use ``--with-java=no`` to disable). .. php Build Lasso PHP binding (enabled by default, use ``--with-php=no`` to disable). python Build Lasso Python binding (enabled by default, use ``--with-python=no`` to disable). Specifying the System Type ========================== There may be some features 'configure' can not figure out automatically, but needs to determine by the type of host the package will run on. Usually 'configure' can figure that out, but if it prints a message saying it can not guess the host type, give it the '--host=TYPE' option. TYPE can either be a short name for the system type, such as 'sun4', or a canonical name with three fields: CPU-COMPANY-SYSTEM See the file 'config.sub' for the possible values of each field. If 'config.sub' isn't included in this package, then this package doesn't need to know the host type. If you are building compiler tools for cross-compiling, you can also use the '--target=TYPE' option to select the type of system they will produce code for and the '--build=TYPE' option to select the type of system on which you are compiling the package. Sharing Defaults ================ If you want to set default values for 'configure' scripts to share, you can create a site shell script called 'config.site' that gives default values for variables like 'CC', 'cache_file', and 'prefix'. 'configure' looks for 'PREFIX/share/config.site' if it exists, then 'PREFIX/etc/config.site' if it exists. Or, you can set the 'CONFIG_SITE' environment variable to the location of the site script. A warning: not all 'configure' scripts look for a site script. Operation Controls ================== 'configure' recognizes the following options to control how it operates. --cache-file=FILE Use and save the results of the tests in FILE instead of './config.cache'. Set FILE to '/dev/null' to disable caching, for debugging 'configure'. --help Print a summary of the options to 'configure', and exit. -q, --quiet, --silent Do not print messages saying which checks are being made. To suppress all normal output, redirect it to '/dev/null' (any error messages will still be shown). --srcdir=DIR Look for the package's source code in directory DIR. Usually 'configure' can determine that directory automatically. --version Print the version of Autoconf used to generate the 'configure' script, and exit. 'configure' also accepts some other, not widely useful, options. lasso-2.9.0/PaxHeaders/Makefile.am0000644000000000000000000000013214117162531013756 xustar0030 mtime=1631380825.844637909 30 atime=1754992886.983414504 30 ctime=1754993575.133134934 lasso-2.9.0/Makefile.am0000644000175000017500000000207314117162531015770 0ustar00bdauvergnebdauvergneACLOCAL_AMFLAGS = -I m4 SUBDIRS = lasso \ tests \ bindings \ docs EXTRA_DIST = COPYING lasso.pc.in lasso-src-config.in autogen.sh tools abi \ lasso.doap README.JAVA README.WIN32 HACKING logos $(top_srcdir)/.version BUILT_SOURCES = $(top_srcdir)/.version MAINTAINERCLEANFILES = \ Makefile.in \ config.guess \ config.sub \ configure \ install-sh \ missing pkgconfig_DATA = lasso.pc pkgconfigdir = $(libdir)/pkgconfig clean-local: -rm -f lasso.pc dist-hook: @if test -d "$(srcdir)/.git"; \ then \ echo Creating ChangeLog && \ ( cd "$(top_srcdir)" && \ echo '# Generated by Makefile. Do not edit.'; echo; \ $(top_srcdir)/missing --run git log --stat ) > ChangeLog.tmp \ && mv -f ChangeLog.tmp $(distdir)/ChangeLog \ || ( rm -f ChangeLog.tmp ; \ echo Failed to generate ChangeLog >&2 ); \ else \ echo A git clone is required to generate a ChangeLog >&2; \ fi echo $(VERSION) > $(distdir)/.tarball-version DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc $(top_srcdir)/.version: echo $(VERSION) > $@-t && mv $@-t $@ lasso-2.9.0/PaxHeaders/README0000644000000000000000000000013013766621500012605 xustar0029 mtime=1608196928.71889494 29 atime=1754992978.12154547 30 ctime=1754993575.181133929 lasso-2.9.0/README0000644000175000017500000000561413766621500014625 0ustar00bdauvergnebdauvergne============== Lasso Overview ============== Current homepage: Lasso (Liberty Alliance Single Sign-On) is a free (GNU GPL) implementation of the Liberty Alliance specifications. Those define processes for federated identities, single sign-on and related protocols. Lasso provides both a C library and bindings for different languages. Liberty Alliance Project homepage: The latest version of Lasso can be found on the labs.libre-entreprise.org website, Lasso has several mailing lists: - lasso-devel@lists.labs.libre-entreprise.org The mailing list for Lasso users and developers; discussions about both development and deployment of Lasso have their place on this list. - lasso-cvs-commits@lists.labs.libre-entreprise.org This list just distributes notices about commits to the Lasso CVS tree. It has no discussions, and it is not interesting unless you wish to take part in development. There is also a bug tracking system on the labs.libre-entreprise.org website, Lasso was originally written by Nicolas Clapiès and Valéry Febvre. Please see the file AUTHORS_ for a list of major contributors, and the ChangeLog for a detailed listing of all contributions. :: Copyright (c) 2004-2008 Entr'ouvert Excepted the Lasso logo, copyright (c) 2004, Entr'ouvert & Florent Monnier 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. In addition, as a special exception, Entr'ouvert gives permission to link the code of its release of Lasso with the OpenSSL project's "OpenSSL" library (or with modified versions of it that use the same license as the "OpenSSL" library), and distribute the linked executables. You must obey the GNU General Public License in all respects for all of the code used other than "OpenSSL". If you modify this file, you may extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. lasso-2.9.0/PaxHeaders/lasso.doap0000644000000000000000000000013214117162531013710 xustar0030 mtime=1631380825.848637964 30 atime=1754992978.153544812 30 ctime=1754993575.205133426 lasso-2.9.0/lasso.doap0000644000175000017500000001425514117162531015727 0ustar00bdauvergnebdauvergne Lasso lasso 2003-07-01 Lasso (Liberty Alliance Single Sign On) is a free (GNU GPL) implementation of the Liberty Alliance specifications. Those define protocols for federated identities, single sign-on, etc. Lasso supports ID-FF 1.2, SAML 2.0; it provides both a C library and bindings for several languages (Python, Java, Perl, PHP 4 and PHP 5). Free Software implementation of Liberty Alliance specifications C Python Java PHP Perl Liberty Alliance ID-FF 1.2 OASIS SAML 2.0 Benjamin Dauvergne Frédéric Péters Jérôme Schneider 2011-11-29 2.3.6 2011-01-05 2.3.5 2010-10-13 2.3.4 2010-10-01 2.3.3 2010-09-07 2.3.2 2010-09-07 2.3.1 2010-07-21 2.3.0 2010-01-26 2.2.91 2010-01-18 2.2.90 2009-03-27 2.2.2 2008-07-22 2.2.1 2008-05-28 2.2.0 2007-08-20 2.1.1 2007-08-13 2.1.0 2007-01-16 2.0.0 2006-12-19 1.9.9 2006-10-16 0.6.6 2006-03-21 0.6.5 2006-03-08 0.6.4 2005-09-30 0.6.3 2005-05-26 0.6.2 2005-02-22 0.6.1 2005-01-27 0.6.0 2004-11-09 0.5.0 2004-09-07 0.4.1 2004-09-06 0.4.0 2004-07-27 0.3.0 2004-06-01 0.2.0 lasso-2.9.0/PaxHeaders/lasso.pc.in0000644000000000000000000000013213766621500014001 xustar0030 mtime=1608196928.766895334 30 atime=1754992976.821572197 30 ctime=1754993575.173134096 lasso-2.9.0/lasso.pc.in0000644000175000017500000000051513766621500016012 0ustar00bdauvergnebdauvergneprefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ Name: lasso Version: @VERSION@ Description: A free implementation of the Liberty Alliance specifications Requires.private: libxml-2.0 libxslt xmlsec1 glib-2.0 gobject-2.0 Cflags: -I${includedir} @LASSO_PUB_CFLAGS@ Libs: -L${libdir} @LASSO_CORE_LIBS@ lasso-2.9.0/PaxHeaders/Makefile.in0000644000000000000000000000013215046611457013777 xustar0030 mtime=1754993455.455638665 30 atime=1754993464.823442887 30 ctime=1754993575.165134264 lasso-2.9.0/Makefile.in0000664000175000017500000010177415046611457016023 0ustar00bdauvergnebdauvergne# Makefile.in generated by automake 1.17 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2024 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) am__rm_f = rm -f $(am__rm_f_notfound) am__rm_rf = rm -rf $(am__rm_f_notfound) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_check_class.m4 \ $(top_srcdir)/m4/ac_check_classpath.m4 \ $(top_srcdir)/m4/ac_check_junit.m4 \ $(top_srcdir)/m4/ac_prog_jar.m4 \ $(top_srcdir)/m4/ac_prog_java.m4 \ $(top_srcdir)/m4/ac_prog_java_works.m4 \ $(top_srcdir)/m4/ac_prog_javac.m4 \ $(top_srcdir)/m4/ac_prog_javac_works.m4 \ $(top_srcdir)/m4/ac_prog_javah.m4 \ $(top_srcdir)/m4/ac_try_compile_java.m4 \ $(top_srcdir)/m4/as-compiler-flag.m4 \ $(top_srcdir)/m4/dps_java_check_class.m4 \ $(top_srcdir)/m4/dps_xtra_classpath.m4 \ $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ $(am__configure_deps) $(am__DIST_COMMON) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h $(top_builddir)/lasso/lasso_config.h CONFIG_CLEAN_FILES = lasso-src-config lasso.pc CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && echo $$files | $(am__xargs_n) 40 $(am__rm_f); }; \ } am__installdirs = "$(DESTDIR)$(pkgconfigdir)" DATA = $(pkgconfig_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ cscope distdir distdir-am dist dist-all distcheck am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) \ config.h.in # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(srcdir)/lasso-src-config.in $(srcdir)/lasso.pc.in AUTHORS \ COPYING ChangeLog INSTALL NEWS README compile config.guess \ config.sub install-sh ltmain.sh missing DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -700 -exec chmod u+rwx {} ';' \ ; rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = -9 DIST_TARGETS = dist-gzip # Exists only to be overridden by the user if desired. AM_DISTCHECK_DVI_TARGET = dvi distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = \ find . \( -type f -a \! \ \( -name .nfs* -o -name .smb* -o -name .__afs* \) \) -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CHECK_CFLAGS = @CHECK_CFLAGS@ CHECK_LIBS = @CHECK_LIBS@ CLASSPATH_JUNIT = @CLASSPATH_JUNIT@ CLASSPATH_OPT = @CLASSPATH_OPT@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CSCOPE = @CSCOPE@ CSHARPCILINTERPRETER = @CSHARPCILINTERPRETER@ CSHARPCOMPILER = @CSHARPCOMPILER@ CSHARPCYGPATH_W = @CSHARPCYGPATH_W@ CSHARPDYNAMICLINKING = @CSHARPDYNAMICLINKING@ CSHARPLIBRARYPREFIX = @CSHARPLIBRARYPREFIX@ CTAGS = @CTAGS@ CYGPATH_W = @CYGPATH_W@ DEBUGGING = @DEBUGGING@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DLL_FILENAME = @DLL_FILENAME@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ETAGS = @ETAGS@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FILECMD = @FILECMD@ GACUTIL = @GACUTIL@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@ GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@ GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@ GTKDOC_MKPDF = @GTKDOC_MKPDF@ GTKDOC_REBASE = @GTKDOC_REBASE@ HTML_DIR = @HTML_DIR@ INKSCAPE = @INKSCAPE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JAR = @JAR@ JAVA = @JAVA@ JAVAC = @JAVAC@ JAVAC_FLAGS = @JAVAC_FLAGS@ JAVAH = @JAVAH@ JAVAH_FLAGS = @JAVAH_FLAGS@ JAVA_INCLUDE = @JAVA_INCLUDE@ JAVA_JUNIT = @JAVA_JUNIT@ JAVA_VERSION = @JAVA_VERSION@ JDK_INCLUDE = @JDK_INCLUDE@ JNI_EXTRA_LDFLAGS = @JNI_EXTRA_LDFLAGS@ JUNIT = @JUNIT@ LASSO_APP_DEFINES = @LASSO_APP_DEFINES@ LASSO_CFLAGS = @LASSO_CFLAGS@ LASSO_CORE_CFLAGS = @LASSO_CORE_CFLAGS@ LASSO_CORE_LIBS = @LASSO_CORE_LIBS@ LASSO_DEFINES = @LASSO_DEFINES@ LASSO_DOCDIR = @LASSO_DOCDIR@ LASSO_LIBS = @LASSO_LIBS@ LASSO_PUB_CFLAGS = @LASSO_PUB_CFLAGS@ LASSO_STATIC_BINARIES = @LASSO_STATIC_BINARIES@ LASSO_VERSION_INFO = @LASSO_VERSION_INFO@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBTOOL_DEPS = @LIBTOOL_DEPS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PERL = @PERL@ PERLINSTALLSITEARCH = @PERLINSTALLSITEARCH@ PERLMAN3DIR = @PERLMAN3DIR@ PERL_CFLAGS = @PERL_CFLAGS@ PERL_VERSION = @PERL_VERSION@ PHP5 = @PHP5@ PHP5_CONFIG = @PHP5_CONFIG@ PHP5_CONFIG_DIR = @PHP5_CONFIG_DIR@ PHP5_EXTENSION_DIR = @PHP5_EXTENSION_DIR@ PHP5_INCLUDES = @PHP5_INCLUDES@ PHP5_INCLUDE_DIR = @PHP5_INCLUDE_DIR@ PHP5_LDFLAGS = @PHP5_LDFLAGS@ PHP5_LIBS = @PHP5_LIBS@ PHP5_PREFIX = @PHP5_PREFIX@ PHP5_UNPREFIXED_EXTENSION_DIR = @PHP5_UNPREFIXED_EXTENSION_DIR@ PHP5_VERSION = @PHP5_VERSION@ PHP7 = @PHP7@ PHP7_CONFIG = @PHP7_CONFIG@ PHP7_CONFIG_DIR = @PHP7_CONFIG_DIR@ PHP7_EXTENSION_DIR = @PHP7_EXTENSION_DIR@ PHP7_INCLUDES = @PHP7_INCLUDES@ PHP7_INCLUDE_DIR = @PHP7_INCLUDE_DIR@ PHP7_LDFLAGS = @PHP7_LDFLAGS@ PHP7_LIBS = @PHP7_LIBS@ PHP7_PREFIX = @PHP7_PREFIX@ PHP7_UNPREFIXED_EXTENSION_DIR = @PHP7_UNPREFIXED_EXTENSION_DIR@ PHP7_VERSION = @PHP7_VERSION@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_VERSION = @PYTHON_VERSION@ PY_CFLAGS = @PY_CFLAGS@ PY_DYNLOAD = @PY_DYNLOAD@ PY_EXTRA_LIBS = @PY_EXTRA_LIBS@ PY_LIB_A = @PY_LIB_A@ PY_LIB_LOC = @PY_LIB_LOC@ PY_SITE_PACKAGES = @PY_SITE_PACKAGES@ RANLIB = @RANLIB@ RC = @RC@ REST2HTML = @REST2HTML@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_VERSION = @SWIG_VERSION@ TAR = @TAR@ TESTS_JUNIT = @TESTS_JUNIT@ UPCASED_DLL_FILENAME = @UPCASED_DLL_FILENAME@ VERSION = @VERSION@ VERSION_UNDERSCORED = @VERSION_UNDERSCORED@ WINDOWS_VERSION = @WINDOWS_VERSION@ XSLTPROC = @XSLTPROC@ Z_CFLAGS = @Z_CFLAGS@ Z_LIBS = @Z_LIBS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__rm_f_notfound = @am__rm_f_notfound@ am__tar = @am__tar@ am__untar = @am__untar@ am__xargs_n = @am__xargs_n@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ uudecode = @uudecode@ ACLOCAL_AMFLAGS = -I m4 SUBDIRS = lasso \ tests \ bindings \ docs EXTRA_DIST = COPYING lasso.pc.in lasso-src-config.in autogen.sh tools abi \ lasso.doap README.JAVA README.WIN32 HACKING logos $(top_srcdir)/.version BUILT_SOURCES = $(top_srcdir)/.version MAINTAINERCLEANFILES = \ Makefile.in \ config.guess \ config.sub \ configure \ install-sh \ missing pkgconfig_DATA = lasso.pc pkgconfigdir = $(libdir)/pkgconfig DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc all: $(BUILT_SOURCES) config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: am--refresh: Makefile @: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @test -f $@ || rm -f stamp-h1 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status $(AM_V_at)rm -f stamp-h1 $(AM_V_GEN)cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) $(AM_V_GEN)($(am__cd) $(top_srcdir) && $(AUTOHEADER)) $(AM_V_at)rm -f stamp-h1 $(AM_V_at)touch $@ distclean-hdr: -rm -f config.h stamp-h1 lasso-src-config: $(top_builddir)/config.status $(srcdir)/lasso-src-config.in cd $(top_builddir) && $(SHELL) ./config.status $@ lasso.pc: $(top_builddir)/config.status $(srcdir)/lasso.pc.in cd $(top_builddir) && $(SHELL) ./config.status $@ mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool config.lt install-pkgconfigDATA: $(pkgconfig_DATA) @$(NORMAL_INSTALL) @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \ done uninstall-pkgconfigDATA: @$(NORMAL_UNINSTALL) @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) $(am__remove_distdir) $(AM_V_at)$(MKDIR_P) "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$(top_distdir)" distdir="$(distdir)" \ dist-hook -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-zstd: distdir tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst $(am__post_remove_distdir) dist-tarZ: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ eval GZIP= gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ eval GZIP= gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ *.tar.zst*) \ zstd -dc $(distdir).tar.zst | $(am__untar) ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build/sub \ && ../../configure \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=../.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__post_remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-recursive all-am: Makefile $(DATA) config.h installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(pkgconfigdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) install-recursive install-exec: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -$(am__rm_f) $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -$(am__rm_f) $(BUILT_SOURCES) -$(am__rm_f) $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool clean-local mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr \ distclean-libtool distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-pkgconfigDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-pkgconfigDATA .MAKE: $(am__recursive_targets) all check install install-am \ install-exec install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--refresh check check-am clean clean-cscope clean-generic \ clean-libtool clean-local cscope cscopelist-am ctags ctags-am \ dist dist-all dist-bzip2 dist-gzip dist-hook dist-lzip \ dist-shar dist-tarZ dist-xz dist-zip dist-zstd distcheck \ distclean distclean-generic distclean-hdr distclean-libtool \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-pkgconfigDATA install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am \ uninstall-pkgconfigDATA .PRECIOUS: Makefile clean-local: -rm -f lasso.pc dist-hook: @if test -d "$(srcdir)/.git"; \ then \ echo Creating ChangeLog && \ ( cd "$(top_srcdir)" && \ echo '# Generated by Makefile. Do not edit.'; echo; \ $(top_srcdir)/missing --run git log --stat ) > ChangeLog.tmp \ && mv -f ChangeLog.tmp $(distdir)/ChangeLog \ || ( rm -f ChangeLog.tmp ; \ echo Failed to generate ChangeLog >&2 ); \ else \ echo A git clone is required to generate a ChangeLog >&2; \ fi echo $(VERSION) > $(distdir)/.tarball-version $(top_srcdir)/.version: echo $(VERSION) > $@-t && mv $@-t $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: # Tell GNU make to disable its built-in pattern rules. %:: %,v %:: RCS/%,v %:: RCS/% %:: s.% %:: SCCS/s.% lasso-2.9.0/PaxHeaders/m40000644000000000000000000000013215046611647012176 xustar0030 mtime=1754993575.161134347 30 atime=1754993581.145009024 30 ctime=1754993575.161134347 lasso-2.9.0/m4/0000775000175000017500000000000015046611647014265 5ustar00bdauvergnebdauvergnelasso-2.9.0/m4/PaxHeaders/ac_check_class.m40000644000000000000000000000013114377347354015430 xustar0030 mtime=1677577964.999349691 30 atime=1754992886.999414176 29 ctime=1754993575.13713485 lasso-2.9.0/m4/ac_check_class.m40000644000175000017500000001241314377347354017442 0ustar00bdauvergnebdauvergne##### http://autoconf-archive.cryp.to/ac_check_class.html # # SYNOPSIS # # AC_CHECK_CLASS # # DESCRIPTION # # AC_CHECK_CLASS tests the existence of a given Java class, either in # a jar or in a '.class' file. # # *Warning*: its success or failure can depend on a proper setting of # the CLASSPATH env. variable. # # Note: This is part of the set of autoconf M4 macros for Java # programs. It is VERY IMPORTANT that you download the whole set, # some macros depend on other. Unfortunately, the autoconf archive # does not support the concept of set of macros, so I had to break it # for submission. The general documentation, as well as the sample # configure.in, is included in the AC_PROG_JAVA macro. # # LAST MODIFICATION # # 2000-07-19 # # COPYLEFT # # Copyright (c) 2000 Stephane Bortzmeyer # # 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, see . # # As a special exception, the respective Autoconf Macro's copyright # owner gives unlimited permission to copy, distribute and modify the # configure scripts that are the output of Autoconf when processing # the Macro. You need not follow the terms of the GNU General Public # License when using or distributing such scripts, even though # portions of the text of the Macro appear in them. The GNU General # Public License (GPL) does govern all other use of the material that # constitutes the Autoconf Macro. # # This special exception to the GPL applies to versions of the # Autoconf Macro released by the Autoconf Macro Archive. When you # make and distribute a modified version of the Autoconf Macro, you # may extend this special exception to the GPL to apply to your # modified version as well. AC_DEFUN([AC_CHECK_CLASS],[ AC_REQUIRE([AC_PROG_JAVA]) ac_var_name=`echo $1 | sed 's/\./_/g'` dnl Normaly I'd use a AC_CACHE_CHECK here but since the variable name is dnl dynamic I need an extra level of extraction AC_MSG_CHECKING([for $1 class]) AC_CACHE_VAL(ac_cv_class_$ac_var_name, [ if test x$ac_cv_prog_uudecode_base64 = xyes; then dnl /** dnl * Test.java: used to test dynamicaly if a class exists. dnl */ dnl public class Test dnl { dnl dnl public static void dnl main( String[] argv ) dnl { dnl Class lib; dnl if (argv.length < 1) dnl { dnl System.err.println ("Missing argument"); dnl System.exit (77); dnl } dnl try dnl { dnl lib = Class.forName (argv[0]); dnl } dnl catch (ClassNotFoundException e) dnl { dnl System.exit (1); dnl } dnl lib = null; dnl System.exit (0); dnl } dnl dnl } cat << \EOF > Test.uue begin-base64 644 Test.class yv66vgADAC0AKQcAAgEABFRlc3QHAAQBABBqYXZhL2xhbmcvT2JqZWN0AQAE bWFpbgEAFihbTGphdmEvbGFuZy9TdHJpbmc7KVYBAARDb2RlAQAPTGluZU51 bWJlclRhYmxlDAAKAAsBAANlcnIBABVMamF2YS9pby9QcmludFN0cmVhbTsJ AA0ACQcADgEAEGphdmEvbGFuZy9TeXN0ZW0IABABABBNaXNzaW5nIGFyZ3Vt ZW50DAASABMBAAdwcmludGxuAQAVKExqYXZhL2xhbmcvU3RyaW5nOylWCgAV ABEHABYBABNqYXZhL2lvL1ByaW50U3RyZWFtDAAYABkBAARleGl0AQAEKEkp VgoADQAXDAAcAB0BAAdmb3JOYW1lAQAlKExqYXZhL2xhbmcvU3RyaW5nOylM amF2YS9sYW5nL0NsYXNzOwoAHwAbBwAgAQAPamF2YS9sYW5nL0NsYXNzBwAi AQAgamF2YS9sYW5nL0NsYXNzTm90Rm91bmRFeGNlcHRpb24BAAY8aW5pdD4B AAMoKVYMACMAJAoAAwAlAQAKU291cmNlRmlsZQEACVRlc3QuamF2YQAhAAEA AwAAAAAAAgAJAAUABgABAAcAAABtAAMAAwAAACkqvgSiABCyAAwSD7YAFBBN uAAaKgMyuAAeTKcACE0EuAAaAUwDuAAasQABABMAGgAdACEAAQAIAAAAKgAK AAAACgAAAAsABgANAA4ADgATABAAEwASAB4AFgAiABgAJAAZACgAGgABACMA JAABAAcAAAAhAAEAAQAAAAUqtwAmsQAAAAEACAAAAAoAAgAAAAQABAAEAAEA JwAAAAIAKA== ==== EOF if uudecode$EXEEXT Test.uue; then : else echo "configure: __oline__: uudecode had trouble decoding base 64 file 'Test.uue'" >&AC_FD_CC echo "configure: failed file was:" >&AC_FD_CC cat Test.uue >&AC_FD_CC ac_cv_prog_uudecode_base64=no fi rm -f Test.uue if AC_TRY_COMMAND($JAVA $JAVAFLAGS Test $1) >/dev/null 2>&1; then eval "ac_cv_class_$ac_var_name=yes" else eval "ac_cv_class_$ac_var_name=no" fi rm -f Test.class else AC_TRY_COMPILE_JAVA([$1], , [eval "ac_cv_class_$ac_var_name=yes"], [eval "ac_cv_class_$ac_var_name=no"]) fi eval "ac_var_val=$`eval echo ac_cv_class_$ac_var_name`" eval "HAVE_$ac_var_name=$`echo ac_cv_class_$ac_var_val`" HAVE_LAST_CLASS=$ac_var_val if test x$ac_var_val = xyes; then ifelse([$2], , :, [$2]) else ifelse([$3], , :, [$3]) fi ]) dnl for some reason the above statment didn't fall though here? dnl do scripts have variable scoping? eval "ac_var_val=$`eval echo ac_cv_class_$ac_var_name`" AC_MSG_RESULT($ac_var_val) ]) lasso-2.9.0/m4/PaxHeaders/ltversion.m40000644000000000000000000000013015046611451014531 xustar0029 mtime=1754993449.94375384 29 atime=1754993450.33574565 30 ctime=1754993575.161134347 lasso-2.9.0/m4/ltversion.m40000644000175000017500000000131215046611451016540 0ustar00bdauvergnebdauvergne# ltversion.m4 -- version numbers -*- Autoconf -*- # # Copyright (C) 2004, 2011-2019, 2021-2024 Free Software Foundation, # Inc. # Written by Scott James Remnant, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # @configure_input@ # serial 4441 ltversion.m4 # This file is part of GNU Libtool m4_define([LT_PACKAGE_VERSION], [2.5.4]) m4_define([LT_PACKAGE_REVISION], [2.5.4]) AC_DEFUN([LTVERSION_VERSION], [macro_version='2.5.4' macro_revision='2.5.4' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) lasso-2.9.0/m4/PaxHeaders/dps_java_check_class.m40000644000000000000000000000013114377347355016635 xustar0029 mtime=1677577965.00334971 30 atime=1754992887.031413522 30 ctime=1754993575.153134515 lasso-2.9.0/m4/dps_java_check_class.m40000644000175000017500000000632414377347355020653 0ustar00bdauvergnebdauvergne##### http://autoconf-archive.cryp.to/dps_java_check_class.html # # SYNOPSIS # # DPS_JAVA_CHECK_CLASS(,,) # # DESCRIPTION # # Test if a Java class is available. Based on AC_PROG_JAVAC_WORKS. # This version uses a cache variable which is both compiler, options # and classpath dependent (so if you switch from javac to gcj it # correctly notices and redoes the test). # # The macro tries to compile a minimal program importing . # Some newer compilers moan about the failure to use this but fail or # produce a class file anyway. All moaing is sunk to /dev/null since # I only wanted to know if the class could be imported. This is a # recommended followup to DPS_CHECK_JAVA_PLUGIN with classpath # appropriately adjusted. # # LAST MODIFICATION # # 2008-01-28 # # COPYLEFT # # Copyright (c) 2008 Duncan Simpson # # 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, see . # # As a special exception, the respective Autoconf Macro's copyright # owner gives unlimited permission to copy, distribute and modify the # configure scripts that are the output of Autoconf when processing # the Macro. You need not follow the terms of the GNU General Public # License when using or distributing such scripts, even though # portions of the text of the Macro appear in them. The GNU General # Public License (GPL) does govern all other use of the material that # constitutes the Autoconf Macro. # # This special exception to the GPL applies to versions of the # Autoconf Macro released by the Autoconf Macro Archive. When you # make and distribute a modified version of the Autoconf Macro, you # may extend this special exception to the GPL to apply to your # modified version as well. AC_DEFUN([DPS_JAVA_CHECK_CLASS],[ m4_define([cache_val],[m4_translit(dps_cv_have_java_class_$1, " ." ,"__")]) if test "x$CLASSPATH" != "x"; then xtra=" with classpath ${CLASSPATH}" xopts=`echo ${CLASSPATH} | ${SED} 's/^ *://'` xopts="-classpath $xopts" else xtra=""; xopts=""; fi cache_var="cache_val"AS_TR_SH([_Jc_${JAVAC}_Cp_${CLASSPATH}]) AC_CACHE_CHECK([if the $1 class is available$xtra], [$cache_var], [ JAVA_TEST=Testing.java CLASS_TEST=Testing.class cat << \EOF > $JAVA_TEST /* [#]xline __oline__ "configure" */ import $1; public class Testing { } EOF if AC_TRY_COMMAND($JAVAC $JAVACFLAGS $xopts $JAVA_TEST) >/dev/null 2>&1; then eval "${cache_var}=yes" else eval "${cache_var}=no" echo "configure: failed program was:" >&AC_FD_CC cat $JAVA_TEST >&AC_FD_CC fi rm -f $JAVA_TEST $CLASS_TEST ]) if eval 'test "x$'${cache_var}'" = "xyes"'; then $2 true; else $3 false; fi]) lasso-2.9.0/m4/PaxHeaders/ac_prog_java_works.m40000644000000000000000000000013114377347355016364 xustar0029 mtime=1677577965.00334971 30 atime=1754992887.015413849 30 ctime=1754993575.141134766 lasso-2.9.0/m4/ac_prog_java_works.m40000644000175000017500000001061514377347355020400 0ustar00bdauvergnebdauvergne##### http://autoconf-archive.cryp.to/ac_prog_java_works.html # # SYNOPSIS # # AC_PROG_JAVA_WORKS # # DESCRIPTION # # Internal use ONLY. # # Note: This is part of the set of autoconf M4 macros for Java # programs. It is VERY IMPORTANT that you download the whole set, # some macros depend on other. Unfortunately, the autoconf archive # does not support the concept of set of macros, so I had to break it # for submission. The general documentation, as well as the sample # configure.in, is included in the AC_PROG_JAVA macro. # # LAST MODIFICATION # # 2000-07-19 # # COPYLEFT # # Copyright (c) 2000 Stephane Bortzmeyer # # 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, see . # # As a special exception, the respective Autoconf Macro's copyright # owner gives unlimited permission to copy, distribute and modify the # configure scripts that are the output of Autoconf when processing # the Macro. You need not follow the terms of the GNU General Public # License when using or distributing such scripts, even though # portions of the text of the Macro appear in them. The GNU General # Public License (GPL) does govern all other use of the material that # constitutes the Autoconf Macro. # # This special exception to the GPL applies to versions of the # Autoconf Macro released by the Autoconf Macro Archive. When you # make and distribute a modified version of the Autoconf Macro, you # may extend this special exception to the GPL to apply to your # modified version as well. AC_DEFUN([AC_PROG_JAVA_WORKS], [ AC_CHECK_PROG(uudecode, uudecode$EXEEXT, yes) if test x$uudecode = xyes; then AC_CACHE_CHECK([if uudecode can decode base 64 file], ac_cv_prog_uudecode_base64, [ dnl /** dnl * Test.java: used to test if java compiler works. dnl */ dnl public class Test dnl { dnl dnl public static void dnl main( String[] argv ) dnl { dnl System.exit (0); dnl } dnl dnl } cat << \EOF > Test.uue begin-base64 644 Test.class yv66vgADAC0AFQcAAgEABFRlc3QHAAQBABBqYXZhL2xhbmcvT2JqZWN0AQAE bWFpbgEAFihbTGphdmEvbGFuZy9TdHJpbmc7KVYBAARDb2RlAQAPTGluZU51 bWJlclRhYmxlDAAKAAsBAARleGl0AQAEKEkpVgoADQAJBwAOAQAQamF2YS9s YW5nL1N5c3RlbQEABjxpbml0PgEAAygpVgwADwAQCgADABEBAApTb3VyY2VG aWxlAQAJVGVzdC5qYXZhACEAAQADAAAAAAACAAkABQAGAAEABwAAACEAAQAB AAAABQO4AAyxAAAAAQAIAAAACgACAAAACgAEAAsAAQAPABAAAQAHAAAAIQAB AAEAAAAFKrcAErEAAAABAAgAAAAKAAIAAAAEAAQABAABABMAAAACABQ= ==== EOF if uudecode$EXEEXT Test.uue; then ac_cv_prog_uudecode_base64=yes else echo "configure: __oline__: uudecode had trouble decoding base 64 file 'Test.uue'" >&AC_FD_CC echo "configure: failed file was:" >&AC_FD_CC cat Test.uue >&AC_FD_CC ac_cv_prog_uudecode_base64=no fi rm -f Test.uue]) fi if test x$ac_cv_prog_uudecode_base64 != xyes; then rm -f Test.class AC_MSG_WARN([I have to compile Test.class from scratch]) if test x$ac_cv_prog_javac_works = xno; then true fi if test x$ac_cv_prog_javac_works = x; then AC_PROG_JAVAC fi fi AC_CACHE_CHECK(if $JAVA works, ac_cv_prog_java_works, [ JAVA_TEST=Test.java CLASS_TEST=Test.class TEST=Test changequote(, )dnl cat << \EOF > $JAVA_TEST /* [#]line __oline__ "configure" */ public class Test { public static void main (String args[]) { System.exit (0); } } EOF changequote([, ])dnl if test x$ac_cv_prog_uudecode_base64 != xyes; then if AC_TRY_COMMAND($JAVAC $JAVACFLAGS $JAVA_TEST) && test -s $CLASS_TEST; then : else echo "configure: failed program was:" >&AC_FD_CC cat $JAVA_TEST >&AC_FD_CC true fi fi if AC_TRY_COMMAND($JAVA $JAVAFLAGS $TEST) >/dev/null 2>&1; then ac_cv_prog_java_works=yes else echo "configure: failed program was:" >&AC_FD_CC cat $JAVA_TEST >&AC_FD_CC true fi rm -fr $JAVA_TEST $CLASS_TEST Test.uue ]) AC_PROVIDE([$0])dnl ] ) lasso-2.9.0/m4/PaxHeaders/gtk-doc.m40000644000000000000000000000007414733307632014050 xustar0030 atime=1754992887.031413522 30 ctime=1754993575.153134515 lasso-2.9.0/m4/gtk-doc.m40000644000175000017500000001066014733307632016056 0ustar00bdauvergnebdauvergne# -*- mode: autoconf -*- # # gtk-doc.m4 - configure macro to check for gtk-doc # Copyright (C) 2003 James Henstridge # 2007-2017 Stefan Sauer # # 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 3 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, see . # # As a special exception, the above copyright owner gives unlimited # permission to copy, distribute and modify the configure scripts that # are the output of Autoconf when processing the Macro. You need not # follow the terms of the GNU General Public License when using or # distributing such scripts, even though portions of the text of the # Macro appear in them. The GNU General Public License (GPL) does govern # all other use of the material that constitutes the Autoconf Macro. # serial 2 dnl Usage: dnl GTK_DOC_CHECK([minimum-gtk-doc-version]) AC_DEFUN([GTK_DOC_CHECK], [ AC_REQUIRE([PKG_PROG_PKG_CONFIG]) AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first ifelse([$1],[],[gtk_doc_requires="gtk-doc"],[gtk_doc_requires="gtk-doc >= $1"]) AC_MSG_CHECKING([for gtk-doc]) PKG_CHECK_EXISTS([$gtk_doc_requires],[have_gtk_doc=yes],[have_gtk_doc=no]) AC_MSG_RESULT($have_gtk_doc) if test "$have_gtk_doc" = "no"; then AC_MSG_WARN([ You will not be able to create source packages with 'make dist' because $gtk_doc_requires is not found.]) fi dnl check for tools we added during development dnl Use AC_CHECK_PROG to avoid the check target using an absolute path that dnl may not be writable by the user. Currently, automake requires that the dnl test name must end in '.test'. dnl https://bugzilla.gnome.org/show_bug.cgi?id=701638 AC_CHECK_PROG([GTKDOC_CHECK],[gtkdoc-check],[gtkdoc-check.test]) AC_PATH_PROG([GTKDOC_CHECK_PATH],[gtkdoc-check]) AC_PATH_PROGS([GTKDOC_REBASE],[gtkdoc-rebase],[true]) AC_PATH_PROG([GTKDOC_MKPDF],[gtkdoc-mkpdf]) dnl for overriding the documentation installation directory AC_ARG_WITH([html-dir], AS_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),, [with_html_dir='${datadir}/gtk-doc/html']) HTML_DIR="$with_html_dir" AC_SUBST([HTML_DIR]) dnl enable/disable documentation building AC_ARG_ENABLE([gtk-doc], AS_HELP_STRING([--enable-gtk-doc], [use gtk-doc to build documentation [[default=no]]]),, [enable_gtk_doc=no]) AC_MSG_CHECKING([whether to build gtk-doc documentation]) AC_MSG_RESULT($enable_gtk_doc) if test "x$enable_gtk_doc" = "xyes" && test "$have_gtk_doc" = "no"; then AC_MSG_ERROR([ You must have $gtk_doc_requires installed to build documentation for $PACKAGE_NAME. Please install gtk-doc or disable building the documentation by adding '--disable-gtk-doc' to '[$]0'.]) fi dnl don't check for glib if we build glib if test "x$PACKAGE_NAME" != "xglib"; then dnl don't fail if someone does not have glib PKG_CHECK_MODULES(GTKDOC_DEPS, glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0,,[:]) fi dnl enable/disable output formats AC_ARG_ENABLE([gtk-doc-html], AS_HELP_STRING([--enable-gtk-doc-html], [build documentation in html format [[default=yes]]]),, [enable_gtk_doc_html=yes]) AC_ARG_ENABLE([gtk-doc-pdf], AS_HELP_STRING([--enable-gtk-doc-pdf], [build documentation in pdf format [[default=no]]]),, [enable_gtk_doc_pdf=no]) if test -z "$GTKDOC_MKPDF"; then enable_gtk_doc_pdf=no fi if test -z "$AM_DEFAULT_VERBOSITY"; then AM_DEFAULT_VERBOSITY=1 fi AC_SUBST([AM_DEFAULT_VERBOSITY]) AM_CONDITIONAL([HAVE_GTK_DOC], [test x$have_gtk_doc = xyes]) AM_CONDITIONAL([ENABLE_GTK_DOC], [test x$enable_gtk_doc = xyes]) AM_CONDITIONAL([GTK_DOC_BUILD_HTML], [test x$enable_gtk_doc_html = xyes]) AM_CONDITIONAL([GTK_DOC_BUILD_PDF], [test x$enable_gtk_doc_pdf = xyes]) AM_CONDITIONAL([GTK_DOC_USE_LIBTOOL], [test -n "$LIBTOOL"]) AM_CONDITIONAL([GTK_DOC_USE_REBASE], [test -n "$GTKDOC_REBASE"]) ]) lasso-2.9.0/m4/PaxHeaders/ac_prog_java.m40000644000000000000000000000013114377347355015137 xustar0029 mtime=1677577965.00334971 30 atime=1754992887.011413931 30 ctime=1754993575.141134766 lasso-2.9.0/m4/ac_prog_java.m40000644000175000017500000000774514377347355017165 0ustar00bdauvergnebdauvergne##### http://autoconf-archive.cryp.to/ac_prog_java.html # # SYNOPSIS # # AC_PROG_JAVA # # DESCRIPTION # # Here is a summary of the main macros: # # AC_PROG_JAVAC: finds a Java compiler. # # AC_PROG_JAVA: finds a Java virtual machine. # # AC_CHECK_CLASS: finds if we have the given class (beware of # CLASSPATH!). # # AC_CHECK_RQRD_CLASS: finds if we have the given class and stops # otherwise. # # AC_TRY_COMPILE_JAVA: attempt to compile user given source. # # AC_TRY_RUN_JAVA: attempt to compile and run user given source. # # AC_JAVA_OPTIONS: adds Java configure options. # # AC_PROG_JAVA tests an existing Java virtual machine. It uses the # environment variable JAVA then tests in sequence various common # Java virtual machines. For political reasons, it starts with the # free ones. You *must* call [AC_PROG_JAVAC] before. # # If you want to force a specific VM: # # - at the configure.in level, set JAVA=yourvm before calling # AC_PROG_JAVA # # (but after AC_INIT) # # - at the configure level, setenv JAVA # # You can use the JAVA variable in your Makefile.in, with @JAVA@. # # *Warning*: its success or failure can depend on a proper setting of # the CLASSPATH env. variable. # # TODO: allow to exclude virtual machines (rationale: most Java # programs cannot run with some VM like kaffe). # # Note: This is part of the set of autoconf M4 macros for Java # programs. It is VERY IMPORTANT that you download the whole set, # some macros depend on other. Unfortunately, the autoconf archive # does not support the concept of set of macros, so I had to break it # for submission. # # A Web page, with a link to the latest CVS snapshot is at # . # # This is a sample configure.in Process this file with autoconf to # produce a configure script. # # AC_INIT(UnTag.java) # # dnl Checks for programs. # AC_CHECK_CLASSPATH # AC_PROG_JAVAC # AC_PROG_JAVA # # dnl Checks for classes # AC_CHECK_RQRD_CLASS(org.xml.sax.Parser) # AC_CHECK_RQRD_CLASS(com.jclark.xml.sax.Driver) # # AC_OUTPUT(Makefile) # # LAST MODIFICATION # # 2000-07-19 # # COPYLEFT # # Copyright (c) 2000 Stephane Bortzmeyer # # 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, see . # # As a special exception, the respective Autoconf Macro's copyright # owner gives unlimited permission to copy, distribute and modify the # configure scripts that are the output of Autoconf when processing # the Macro. You need not follow the terms of the GNU General Public # License when using or distributing such scripts, even though # portions of the text of the Macro appear in them. The GNU General # Public License (GPL) does govern all other use of the material that # constitutes the Autoconf Macro. # # This special exception to the GPL applies to versions of the # Autoconf Macro released by the Autoconf Macro Archive. When you # make and distribute a modified version of the Autoconf Macro, you # may extend this special exception to the GPL to apply to your # modified version as well. AC_DEFUN([AC_PROG_JAVA],[ AC_REQUIRE([AC_EXEEXT])dnl if test x$JAVAPREFIX = x; then test x$JAVA = x && AC_CHECK_PROGS(JAVA, kaffe$EXEEXT java$EXEEXT) else test x$JAVA = x && AC_CHECK_PROGS(JAVA, kaffe$EXEEXT java$EXEEXT, $JAVAPREFIX) fi true AC_PROG_JAVA_WORKS AC_PROVIDE([$0])dnl ]) lasso-2.9.0/m4/PaxHeaders/ac_check_junit.m40000644000000000000000000000013114377347354015454 xustar0030 mtime=1677577964.999349691 30 atime=1754992887.007414013 29 ctime=1754993575.13713485 lasso-2.9.0/m4/ac_check_junit.m40000644000175000017500000000364314377347354017473 0ustar00bdauvergnebdauvergne##### http://autoconf-archive.cryp.to/ac_check_junit.html # # SYNOPSIS # # AC_CHECK_JUNIT # # DESCRIPTION # # AC_CHECK_JUNIT tests the availability of the Junit testing # framework, and set some variables for conditional compilation of # the test suite by automake. # # If available, JUNIT is set to a command launching the text based # user interface of Junit, @JAVA_JUNIT@ is set to $JAVA_JUNIT and # @TESTS_JUNIT@ is set to $TESTS_JUNIT, otherwise they are set to # empty values. # # You can use these variables in your Makefile.am file like this : # # # Some of the following classes are built only if junit is available # JAVA_JUNIT = Class1Test.java Class2Test.java AllJunitTests.java # # noinst_JAVA = Example1.java Example2.java @JAVA_JUNIT@ # # EXTRA_JAVA = $(JAVA_JUNIT) # # TESTS_JUNIT = AllJunitTests # # TESTS = StandaloneTest1 StandaloneTest2 @TESTS_JUNIT@ # # EXTRA_TESTS = $(TESTS_JUNIT) # # AllJunitTests : # echo "#! /bin/sh" > $@ # echo "exec @JUNIT@ my.package.name.AllJunitTests" >> $@ # chmod +x $@ # # LAST MODIFICATION # # 2001-03-02 # # COPYLEFT # # Copyright (c) 2001 Luc Maisonobe # # Copying and distribution of this file, with or without # modification, are permitted in any medium without royalty provided # the copyright notice and this notice are preserved. AC_DEFUN([AC_CHECK_JUNIT],[ AC_CACHE_VAL(ac_cv_prog_JUNIT,[ AC_CHECK_CLASS(junit.textui.TestRunner) if test x"`eval 'echo $ac_cv_class_junit_textui_TestRunner'`" != xno ; then ac_cv_prog_JUNIT='$(CLASSPATH_ENV) $(JAVA) $(JAVAFLAGS) junit.textui.TestRunner' fi]) AC_MSG_CHECKING([for junit]) if test x"`eval 'echo $ac_cv_prog_JUNIT'`" != x ; then JUNIT="$ac_cv_prog_JUNIT" JAVA_JUNIT='$(JAVA_JUNIT)' TESTS_JUNIT='$(TESTS_JUNIT)' else JUNIT= JAVA_JUNIT= TESTS_JUNIT= fi AC_MSG_RESULT($JUNIT) AC_SUBST(JUNIT) AC_SUBST(JAVA_JUNIT) AC_SUBST(TESTS_JUNIT)]) lasso-2.9.0/m4/PaxHeaders/as-compiler-flag.m40000644000000000000000000000013114377347355015646 xustar0029 mtime=1677577965.00334971 30 atime=1754992887.027413603 30 ctime=1754993575.149134599 lasso-2.9.0/m4/as-compiler-flag.m40000644000175000017500000000273714377347355017670 0ustar00bdauvergnebdauvergnednl as-compiler-flag.m4 0.1.0 dnl autostars m4 macro for detection of compiler flags dnl David Schleef dnl $Id: as-compiler-flag.m4,v 1.1 2005/12/15 23:35:19 ds Exp $ dnl AS_COMPILER_FLAG(CFLAGS, ACTION-IF-ACCEPTED, [ACTION-IF-NOT-ACCEPTED]) dnl Tries to compile with the given CFLAGS. dnl Runs ACTION-IF-ACCEPTED if the compiler can compile with the flags, dnl and ACTION-IF-NOT-ACCEPTED otherwise. AC_DEFUN([AS_COMPILER_FLAG], [ AC_MSG_CHECKING([to see if compiler understands $1]) save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $1" AC_TRY_COMPILE([ ], [], [flag_ok=yes], [flag_ok=no]) CFLAGS="$save_CFLAGS" if test "X$flag_ok" = Xyes ; then m4_ifvaln([$2],[$2]) true else m4_ifvaln([$3],[$3]) true fi AC_MSG_RESULT([$flag_ok]) ]) dnl AS_COMPILER_FLAGS(VAR, FLAGS) dnl Tries to compile with the given CFLAGS. AC_DEFUN([AS_COMPILER_FLAGS], [ list=$2 flags_supported="" flags_unsupported="" AC_MSG_CHECKING([for supported compiler flags]) for each in $list do save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $each" AC_TRY_COMPILE([ ], [], [flag_ok=yes], [flag_ok=no]) CFLAGS="$save_CFLAGS" if test "X$flag_ok" = Xyes ; then flags_supported="$flags_supported $each" else flags_unsupported="$flags_unsupported $each" fi done AC_MSG_RESULT([$flags_supported]) if test "X$flags_unsupported" != X ; then AC_MSG_WARN([unsupported compiler flags: $flags_unsupported]) fi $1="$$1 $flags_supported" ]) lasso-2.9.0/m4/PaxHeaders/ltoptions.m40000644000000000000000000000013115046611451014540 xustar0030 mtime=1754993449.919754342 29 atime=1754993450.33574565 30 ctime=1754993575.157134431 lasso-2.9.0/m4/ltoptions.m40000644000175000017500000003612115046611451016554 0ustar00bdauvergnebdauvergne# Helper functions for option handling. -*- Autoconf -*- # # Copyright (C) 2004-2005, 2007-2009, 2011-2019, 2021-2024 Free # Software Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 10 ltoptions.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) # ------------------------------------------ m4_define([_LT_MANGLE_OPTION], [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) # --------------------------------------- # Set option OPTION-NAME for macro MACRO-NAME, and if there is a # matching handler defined, dispatch to it. Other OPTION-NAMEs are # saved as a flag. m4_define([_LT_SET_OPTION], [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), _LT_MANGLE_DEFUN([$1], [$2]), [m4_warning([Unknown $1 option '$2'])])[]dnl ]) # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) # ------------------------------------------------------------ # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. m4_define([_LT_IF_OPTION], [m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) # ------------------------------------------------------- # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME # are set. m4_define([_LT_UNLESS_OPTIONS], [m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), [m4_define([$0_found])])])[]dnl m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 ])[]dnl ]) # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) # ---------------------------------------- # OPTION-LIST is a space-separated list of Libtool options associated # with MACRO-NAME. If any OPTION has a matching handler declared with # LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about # the unknown option and exit. m4_defun([_LT_SET_OPTIONS], [# Set options m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [_LT_SET_OPTION([$1], _LT_Option)]) m4_if([$1],[LT_INIT],[ dnl dnl Simply set some default values (i.e off) if boolean options were not dnl specified: _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no ]) _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no ]) dnl dnl If no reference was made to various pairs of opposing options, then dnl we run the default mode handler for the pair. For example, if neither dnl 'shared' nor 'disable-shared' was passed, we enable building of shared dnl archives by default: _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], [_LT_ENABLE_FAST_INSTALL]) _LT_UNLESS_OPTIONS([LT_INIT], [aix-soname=aix aix-soname=both aix-soname=svr4], [_LT_WITH_AIX_SONAME([aix])]) ]) ])# _LT_SET_OPTIONS ## --------------------------------- ## ## Macros to handle LT_INIT options. ## ## --------------------------------- ## # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) # ----------------------------------------- m4_define([_LT_MANGLE_DEFUN], [[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) # LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) # ----------------------------------------------- m4_define([LT_OPTION_DEFINE], [m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl ])# LT_OPTION_DEFINE # dlopen # ------ LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes ]) AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'dlopen' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) # win32-dll # --------- # Declare package support for building win32 dll's. LT_OPTION_DEFINE([LT_INIT], [win32-dll], [enable_win32_dll=yes case $host in *-*-cygwin* | *-*-mingw* | *-*-windows* | *-*-pw32* | *-*-cegcc*) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; esac test -z "$AS" && AS=as _LT_DECL([], [AS], [1], [Assembler program])dnl test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl ])# win32-dll AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'win32-dll' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) # _LT_ENABLE_SHARED([DEFAULT]) # ---------------------------- # implement the --enable-shared flag, and supports the 'shared' and # 'disable-shared' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_SHARED], [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([shared], [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS=$lt_save_ifs ;; esac], [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) _LT_DECL([build_libtool_libs], [enable_shared], [0], [Whether or not to build shared libraries]) ])# _LT_ENABLE_SHARED LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) # Old names: AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) ]) AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared]) ]) AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_SHARED], []) dnl AC_DEFUN([AM_DISABLE_SHARED], []) # _LT_ENABLE_STATIC([DEFAULT]) # ---------------------------- # implement the --enable-static flag, and support the 'static' and # 'disable-static' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_STATIC], [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([static], [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS=$lt_save_ifs ;; esac], [enable_static=]_LT_ENABLE_STATIC_DEFAULT) _LT_DECL([build_old_libs], [enable_static], [0], [Whether or not to build static libraries]) ])# _LT_ENABLE_STATIC LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) # Old names: AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) ]) AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static]) ]) AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_STATIC], []) dnl AC_DEFUN([AM_DISABLE_STATIC], []) # _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- # implement the --enable-fast-install flag, and support the 'fast-install' # and 'disable-fast-install' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_FAST_INSTALL], [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([fast-install], [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS=$lt_save_ifs ;; esac], [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) _LT_DECL([fast_install], [enable_fast_install], [0], [Whether or not to optimize for fast installation])dnl ])# _LT_ENABLE_FAST_INSTALL LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) # Old names: AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'fast-install' option into LT_INIT's first parameter.]) ]) AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'disable-fast-install' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) # _LT_WITH_AIX_SONAME([DEFAULT]) # ---------------------------------- # implement the --enable-aix-soname configure option, and support the # `aix-soname=aix' and `aix-soname=both' and `aix-soname=svr4' LT_INIT options. # DEFAULT is either `aix', `both', or `svr4'. If omitted, it defaults to `aix'. m4_define([_LT_WITH_AIX_SONAME], [m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl shared_archive_member_spec= case $host,$enable_shared in power*-*-aix[[5-9]]*,yes) AC_MSG_CHECKING([which variant of shared library versioning to provide]) AC_ARG_ENABLE([aix-soname], [AS_HELP_STRING([--enable-aix-soname=aix|svr4|both], [shared library versioning (aka "SONAME") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])], [case $enableval in aix|svr4|both) ;; *) AC_MSG_ERROR([Unknown argument to --enable-aix-soname]) ;; esac lt_cv_with_aix_soname=$enable_aix_soname], [_AC_ENABLE_IF([with], [aix-soname], [case $withval in aix|svr4|both) ;; *) AC_MSG_ERROR([Unknown argument to --with-aix-soname]) ;; esac lt_cv_with_aix_soname=$with_aix_soname], [AC_CACHE_VAL([lt_cv_with_aix_soname], [lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT)]) enable_aix_soname=$lt_cv_with_aix_soname]) with_aix_soname=$enable_aix_soname AC_MSG_RESULT([$with_aix_soname]) if test aix != "$with_aix_soname"; then # For the AIX way of multilib, we name the shared archive member # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, # the AIX toolchain works better with OBJECT_MODE set (default 32). if test 64 = "${OBJECT_MODE-32}"; then shared_archive_member_spec=shr_64 else shared_archive_member_spec=shr fi fi ;; *) with_aix_soname=aix ;; esac _LT_DECL([], [shared_archive_member_spec], [0], [Shared archive member basename, for filename based shared library versioning on AIX])dnl ])# _LT_WITH_AIX_SONAME LT_OPTION_DEFINE([LT_INIT], [aix-soname=aix], [_LT_WITH_AIX_SONAME([aix])]) LT_OPTION_DEFINE([LT_INIT], [aix-soname=both], [_LT_WITH_AIX_SONAME([both])]) LT_OPTION_DEFINE([LT_INIT], [aix-soname=svr4], [_LT_WITH_AIX_SONAME([svr4])]) # _LT_WITH_PIC([MODE]) # -------------------- # implement the --enable-pic flag, and support the 'pic-only' and 'no-pic' # LT_INIT options. # MODE is either 'yes' or 'no'. If omitted, it defaults to 'both'. m4_define([_LT_WITH_PIC], [AC_ARG_ENABLE([pic], [AS_HELP_STRING([--enable-pic@<:@=PKGS@:>@], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [lt_p=${PACKAGE-default} case $enableval in yes|no) pic_mode=$enableval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $enableval; do IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS=$lt_save_ifs ;; esac], [dnl Continue to support --with-pic and --without-pic, for backward dnl compatibility. _AC_ENABLE_IF([with], [pic], [lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $withval; do IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS=$lt_save_ifs ;; esac], [pic_mode=m4_default([$1], [default])])] ) _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ])# _LT_WITH_PIC LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) # Old name: AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'pic-only' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) ## ----------------- ## ## LTDL_INIT Options ## ## ----------------- ## m4_define([_LTDL_MODE], []) LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], [m4_define([_LTDL_MODE], [nonrecursive])]) LT_OPTION_DEFINE([LTDL_INIT], [recursive], [m4_define([_LTDL_MODE], [recursive])]) LT_OPTION_DEFINE([LTDL_INIT], [subproject], [m4_define([_LTDL_MODE], [subproject])]) m4_define([_LTDL_TYPE], []) LT_OPTION_DEFINE([LTDL_INIT], [installable], [m4_define([_LTDL_TYPE], [installable])]) LT_OPTION_DEFINE([LTDL_INIT], [convenience], [m4_define([_LTDL_TYPE], [convenience])]) lasso-2.9.0/m4/PaxHeaders/libtool.m40000644000000000000000000000013115046611451014151 xustar0030 mtime=1754993449.907754593 29 atime=1754993450.33574565 30 ctime=1754993575.157134431 lasso-2.9.0/m4/libtool.m40000644000175000017500000114100515046611451016164 0ustar00bdauvergnebdauvergne# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # # Copyright (C) 1996-2001, 2003-2019, 2021-2024 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. m4_define([_LT_COPYING], [dnl # Copyright (C) 2024 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool 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. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program or library that is built # using GNU Libtool, you may include this file under the same # distribution terms that you use for the rest of that program. # # GNU Libtool 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, see . ]) # serial 63 LT_INIT # LT_PREREQ(VERSION) # ------------------ # Complain and exit if this libtool version is less that VERSION. m4_defun([LT_PREREQ], [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, [m4_default([$3], [m4_fatal([Libtool version $1 or higher is required], 63)])], [$2])]) # _LT_CHECK_BUILDDIR # ------------------ # Complain if the absolute build directory name contains unusual characters m4_defun([_LT_CHECK_BUILDDIR], [case `pwd` in *\ * | *\ *) AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; esac ]) # LT_INIT([OPTIONS]) # ------------------ AC_DEFUN([LT_INIT], [AC_PREREQ([2.64])dnl We use AC_PATH_PROGS_FEATURE_CHECK AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl AC_BEFORE([$0], [LTDL_INIT])dnl m4_require([_LT_CHECK_BUILDDIR])dnl dnl Autoconf doesn't catch unexpanded LT_ macros by default: m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 dnl unless we require an AC_DEFUNed macro: AC_REQUIRE([LTOPTIONS_VERSION])dnl AC_REQUIRE([LTSUGAR_VERSION])dnl AC_REQUIRE([LTVERSION_VERSION])dnl AC_REQUIRE([LTOBSOLETE_VERSION])dnl m4_require([_LT_PROG_LTMAIN])dnl _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) dnl Parse OPTIONS _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl _LT_SETUP # Only expand once: m4_define([LT_INIT]) ])# LT_INIT # Old names: AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PROG_LIBTOOL], []) dnl AC_DEFUN([AM_PROG_LIBTOOL], []) # _LT_PREPARE_CC_BASENAME # ----------------------- m4_defun([_LT_PREPARE_CC_BASENAME], [ # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in @S|@*""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } ])# _LT_PREPARE_CC_BASENAME # _LT_CC_BASENAME(CC) # ------------------- # It would be clearer to call AC_REQUIREs from _LT_PREPARE_CC_BASENAME, # but that macro is also expanded into generated libtool script, which # arranges for $SED and $ECHO to be set by different means. m4_defun([_LT_CC_BASENAME], [m4_require([_LT_PREPARE_CC_BASENAME])dnl AC_REQUIRE([_LT_DECL_SED])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl func_cc_basename $1 cc_basename=$func_cc_basename_result ]) # _LT_FILEUTILS_DEFAULTS # ---------------------- # It is okay to use these file commands and assume they have been set # sensibly after 'm4_require([_LT_FILEUTILS_DEFAULTS])'. m4_defun([_LT_FILEUTILS_DEFAULTS], [: ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} ])# _LT_FILEUTILS_DEFAULTS # _LT_SETUP # --------- m4_defun([_LT_SETUP], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl _LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl dnl _LT_DECL([], [host_alias], [0], [The host system])dnl _LT_DECL([], [host], [0])dnl _LT_DECL([], [host_os], [0])dnl dnl _LT_DECL([], [build_alias], [0], [The build system])dnl _LT_DECL([], [build], [0])dnl _LT_DECL([], [build_os], [0])dnl dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl dnl AC_REQUIRE([AC_PROG_LN_S])dnl test -z "$LN_S" && LN_S="ln -s" _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl dnl AC_REQUIRE([LT_CMD_MAX_LEN])dnl _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl m4_require([_LT_CMD_RELOAD])dnl m4_require([_LT_DECL_FILECMD])dnl m4_require([_LT_CHECK_MAGIC_METHOD])dnl m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl m4_require([_LT_CMD_OLD_ARCHIVE])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_WITH_SYSROOT])dnl m4_require([_LT_CMD_TRUNCATE])dnl _LT_CONFIG_LIBTOOL_INIT([ # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi ]) if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi _LT_CHECK_OBJDIR m4_require([_LT_TAG_COMPILER])dnl case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a '.a' archive for static linking (except MSVC and # ICC, which need '.lib'). libext=a with_gnu_ld=$lt_cv_prog_gnu_ld old_CC=$CC old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then _LT_PATH_MAGIC fi ;; esac # Use C for the default configuration in the libtool script LT_SUPPORTED_TAG([CC]) _LT_LANG_C_CONFIG _LT_LANG_DEFAULT_CONFIG _LT_CONFIG_COMMANDS ])# _LT_SETUP # _LT_PREPARE_SED_QUOTE_VARS # -------------------------- # Define a few sed substitution that help us do robust quoting. m4_defun([_LT_PREPARE_SED_QUOTE_VARS], [# Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([["`\\]]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ]) # _LT_PROG_LTMAIN # --------------- # Note that this code is called both from 'configure', and 'config.status' # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, # 'config.status' has no value for ac_aux_dir unless we are using Automake, # so we pass a copy along to make sure it has a sensible value anyway. m4_defun([_LT_PROG_LTMAIN], [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) ltmain=$ac_aux_dir/ltmain.sh ])# _LT_PROG_LTMAIN ## ------------------------------------- ## ## Accumulate code for creating libtool. ## ## ------------------------------------- ## # So that we can recreate a full libtool script including additional # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS # in macros and then make a single call at the end using the 'libtool' # label. # _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) # ---------------------------------------- # Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL_INIT], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_INIT], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_INIT]) # _LT_CONFIG_LIBTOOL([COMMANDS]) # ------------------------------ # Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) # _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) # ----------------------------------------------------- m4_defun([_LT_CONFIG_SAVE_COMMANDS], [_LT_CONFIG_LIBTOOL([$1]) _LT_CONFIG_LIBTOOL_INIT([$2]) ]) # _LT_FORMAT_COMMENT([COMMENT]) # ----------------------------- # Add leading comment marks to the start of each line, and a trailing # full-stop to the whole comment if one is not present already. m4_define([_LT_FORMAT_COMMENT], [m4_ifval([$1], [ m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) )]) ## ------------------------ ## ## FIXME: Eliminate VARNAME ## ## ------------------------ ## # _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) # ------------------------------------------------------------------- # CONFIGNAME is the name given to the value in the libtool script. # VARNAME is the (base) name used in the configure script. # VALUE may be 0, 1 or 2 for a computed quote escaped value based on # VARNAME. Any other value will be used directly. m4_define([_LT_DECL], [lt_if_append_uniq([lt_decl_varnames], [$2], [, ], [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], [m4_ifval([$1], [$1], [$2])]) lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) m4_ifval([$4], [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) lt_dict_add_subkey([lt_decl_dict], [$2], [tagged?], [m4_ifval([$5], [yes], [no])])]) ]) # _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) # -------------------------------------------------------- m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) # lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_tag_varnames], [_lt_decl_filter([tagged?], [yes], $@)]) # _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) # --------------------------------------------------------- m4_define([_lt_decl_filter], [m4_case([$#], [0], [m4_fatal([$0: too few arguments: $#])], [1], [m4_fatal([$0: too few arguments: $#: $1])], [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], [lt_dict_filter([lt_decl_dict], $@)])[]dnl ]) # lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) # -------------------------------------------------- m4_define([lt_decl_quote_varnames], [_lt_decl_filter([value], [1], $@)]) # lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_dquote_varnames], [_lt_decl_filter([value], [2], $@)]) # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_varnames_tagged], [m4_assert([$# <= 2])dnl _$0(m4_quote(m4_default([$1], [[, ]])), m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) m4_define([_lt_decl_varnames_tagged], [m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) # lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_all_varnames], [_$0(m4_quote(m4_default([$1], [[, ]])), m4_if([$2], [], m4_quote(lt_decl_varnames), m4_quote(m4_shift($@))))[]dnl ]) m4_define([_lt_decl_all_varnames], [lt_join($@, lt_decl_varnames_tagged([$1], lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl ]) # _LT_CONFIG_STATUS_DECLARE([VARNAME]) # ------------------------------------ # Quote a variable value, and forward it to 'config.status' so that its # declaration there will have the same value as in 'configure'. VARNAME # must have a single quote delimited value for this to work. m4_define([_LT_CONFIG_STATUS_DECLARE], [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) # _LT_CONFIG_STATUS_DECLARATIONS # ------------------------------ # We delimit libtool config variables with single quotes, so when # we write them to config.status, we have to be sure to quote all # embedded single quotes properly. In configure, this macro expands # each variable declared with _LT_DECL (and _LT_TAGDECL) into: # # ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAGS # ---------------- # Output comment and list of tags supported by the script m4_defun([_LT_LIBTOOL_TAGS], [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl available_tags='_LT_TAGS'dnl ]) # _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) # ----------------------------------- # Extract the dictionary values for VARNAME (optionally with TAG) and # expand to a commented shell variable setting: # # # Some comment about what VAR is for. # visible_name=$lt_internal_name m4_define([_LT_LIBTOOL_DECLARE], [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [description])))[]dnl m4_pushdef([_libtool_name], m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), [0], [_libtool_name=[$]$1], [1], [_libtool_name=$lt_[]$1], [2], [_libtool_name=$lt_[]$1], [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl ]) # _LT_LIBTOOL_CONFIG_VARS # ----------------------- # Produce commented declarations of non-tagged libtool config variables # suitable for insertion in the LIBTOOL CONFIG section of the 'libtool' # script. Tagged libtool config variables (even for the LIBTOOL CONFIG # section) are produced by _LT_LIBTOOL_TAG_VARS. m4_defun([_LT_LIBTOOL_CONFIG_VARS], [m4_foreach([_lt_var], m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAG_VARS(TAG) # ------------------------- m4_define([_LT_LIBTOOL_TAG_VARS], [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) # _LT_TAGVAR(VARNAME, [TAGNAME]) # ------------------------------ m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) # _LT_CONFIG_COMMANDS # ------------------- # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of # variables for single and double quote escaping we saved from calls # to _LT_DECL, we can put quote escaped variables declarations # into 'config.status', and then the shell code to quote escape them in # for loops in 'config.status'. Finally, any additional code accumulated # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. m4_defun([_LT_CONFIG_COMMANDS], [AC_PROVIDE_IFELSE([LT_OUTPUT], dnl If the libtool generation code has been placed in $CONFIG_LT, dnl instead of duplicating it all over again into config.status, dnl then we will have config.status run $CONFIG_LT later, so it dnl needs to know what name is stored there: [AC_CONFIG_COMMANDS([libtool], [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], dnl If the libtool generation code is destined for config.status, dnl expand the accumulated commands and init code now: [AC_CONFIG_COMMANDS([libtool], [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) ])#_LT_CONFIG_COMMANDS # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], [ # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' _LT_CONFIG_STATUS_DECLARATIONS LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$[]1 _LTECHO_EOF' } # Quote evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_quote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done _LT_OUTPUT_LIBTOOL_INIT ]) # _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) # ------------------------------------ # Generate a child script FILE with all initialization necessary to # reuse the environment learned by the parent script, and make the # file executable. If COMMENT is supplied, it is inserted after the # '#!' sequence but before initialization text begins. After this # macro, additional text can be appended to FILE to form the body of # the child script. The macro ends with non-zero status if the # file could not be fully written (such as if the disk is full). m4_ifdef([AS_INIT_GENERATED], [m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], [m4_defun([_LT_GENERATED_FILE_INIT], [m4_require([AS_PREPARE])]dnl [m4_pushdef([AS_MESSAGE_LOG_FD])]dnl [lt_write_fail=0 cat >$1 <<_ASEOF || lt_write_fail=1 #! $SHELL # Generated by $as_me. $2 SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$1 <<\_ASEOF || lt_write_fail=1 AS_SHELL_SANITIZE _AS_PREPARE exec AS_MESSAGE_FD>&1 _ASEOF test 0 = "$lt_write_fail" && chmod +x $1[]dnl m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT # LT_OUTPUT # --------- # This macro allows early generation of the libtool script (before # AC_OUTPUT is called), in case it is used in configure for compilation # tests. AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt} AC_MSG_NOTICE([creating $CONFIG_LT]) _LT_GENERATED_FILE_INIT(["$CONFIG_LT"], [# Run this file to recreate a libtool stub with the current configuration.]) cat >>"$CONFIG_LT" <<\_LTEOF lt_cl_silent=false exec AS_MESSAGE_LOG_FD>>config.log { echo AS_BOX([Running $as_me.]) } >&AS_MESSAGE_LOG_FD lt_cl_help="\ '$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. Usage: $[0] [[OPTIONS]] -h, --help print this help, then exit -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files Report bugs to ." lt_cl_version="\ m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) configured by $[0], generated by m4_PACKAGE_STRING. Copyright (C) 2024 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." while test 0 != $[#] do case $[1] in --version | --v* | -V ) echo "$lt_cl_version"; exit 0 ;; --help | --h* | -h ) echo "$lt_cl_help"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --quiet | --q* | --silent | --s* | -q ) lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] Try '$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] Try '$[0] --help' for more information.]) ;; esac shift done if $lt_cl_silent; then exec AS_MESSAGE_FD>/dev/null fi _LTEOF cat >>"$CONFIG_LT" <<_LTEOF _LT_OUTPUT_LIBTOOL_COMMANDS_INIT _LTEOF cat >>"$CONFIG_LT" <<\_LTEOF AC_MSG_NOTICE([creating $ofile]) _LT_OUTPUT_LIBTOOL_COMMANDS AS_EXIT(0) _LTEOF chmod +x "$CONFIG_LT" # configure is writing to config.log, but config.lt does its own redirection, # appending to config.log, which fails on DOS, as config.log is still kept # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: test yes = "$silent" && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false exec AS_MESSAGE_LOG_FD>>config.log $lt_cl_success || AS_EXIT(1) ])# LT_OUTPUT # _LT_CONFIG(TAG) # --------------- # If TAG is the built-in tag, create an initial libtool script with a # default configuration from the untagged config vars. Otherwise add code # to config.status for appending the configuration named by TAG from the # matching tagged config vars. m4_defun([_LT_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # Generated automatically by $as_me ($PACKAGE) $VERSION # NOTE: Changes made to this file will be lost: look at ltmain.sh. # Provide generalized library-building support services. # Written by Gordon Matzigkeit, 1996 _LT_COPYING _LT_LIBTOOL_TAGS # Configured defaults for sys_lib_dlsearch_path munging. : \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS # ### END LIBTOOL CONFIG _LT_EOF cat <<'_LT_EOF' >> "$cfgfile" # ### BEGIN FUNCTIONS SHARED WITH CONFIGURE _LT_PREPARE_MUNGE_PATH_LIST _LT_PREPARE_CC_BASENAME # ### END FUNCTIONS SHARED WITH CONFIGURE _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac _LT_PROG_LTMAIN # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? $SED '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ], [cat <<_LT_EOF >> "$ofile" dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded dnl in a comment (ie after a #). # ### BEGIN LIBTOOL TAG CONFIG: $1 _LT_LIBTOOL_TAG_VARS(_LT_TAG) # ### END LIBTOOL TAG CONFIG: $1 _LT_EOF ])dnl /m4_if ], [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS ])# _LT_CONFIG # LT_SUPPORTED_TAG(TAG) # --------------------- # Trace this macro to discover what tags are supported by the libtool # --tag option, using: # autoconf --trace 'LT_SUPPORTED_TAG:$1' AC_DEFUN([LT_SUPPORTED_TAG], []) # C support is built-in for now m4_define([_LT_LANG_C_enabled], []) m4_define([_LT_TAGS], []) # LT_LANG(LANG) # ------------- # Enable libtool support for the given language if not already enabled. AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl m4_case([$1], [C], [_LT_LANG(C)], [C++], [_LT_LANG(CXX)], [Go], [_LT_LANG(GO)], [Java], [_LT_LANG(GCJ)], [Fortran 77], [_LT_LANG(F77)], [Fortran], [_LT_LANG(FC)], [Windows Resource], [_LT_LANG(RC)], [m4_ifdef([_LT_LANG_]$1[_CONFIG], [_LT_LANG($1)], [m4_fatal([$0: unsupported language: "$1"])])])dnl ])# LT_LANG # _LT_LANG(LANGNAME) # ------------------ m4_defun([_LT_LANG], [m4_ifdef([_LT_LANG_]$1[_enabled], [], [LT_SUPPORTED_TAG([$1])dnl m4_append([_LT_TAGS], [$1 ])dnl m4_define([_LT_LANG_]$1[_enabled], [])dnl _LT_LANG_$1_CONFIG($1)])dnl ])# _LT_LANG m4_ifndef([AC_PROG_GO], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_GO. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_GO], [AC_LANG_PUSH(Go)dnl AC_ARG_VAR([GOC], [Go compiler command])dnl AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl _AC_ARG_VAR_LDFLAGS()dnl AC_CHECK_TOOL(GOC, gccgo) if test -z "$GOC"; then if test -n "$ac_tool_prefix"; then AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) fi fi if test -z "$GOC"; then AC_CHECK_PROG(GOC, gccgo, gccgo, false) fi ])#m4_defun ])#m4_ifndef # _LT_LANG_DEFAULT_CONFIG # ----------------------- m4_defun([_LT_LANG_DEFAULT_CONFIG], [AC_PROVIDE_IFELSE([AC_PROG_CXX], [LT_LANG(CXX)], [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) AC_PROVIDE_IFELSE([AC_PROG_F77], [LT_LANG(F77)], [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) AC_PROVIDE_IFELSE([AC_PROG_FC], [LT_LANG(FC)], [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal dnl pulling things in needlessly. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([LT_PROG_GCJ], [LT_LANG(GCJ)], [m4_ifdef([AC_PROG_GCJ], [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([A][M_PROG_GCJ], [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([LT_PROG_GCJ], [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) AC_PROVIDE_IFELSE([AC_PROG_GO], [LT_LANG(GO)], [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) AC_PROVIDE_IFELSE([LT_PROG_RC], [LT_LANG(RC)], [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) ])# _LT_LANG_DEFAULT_CONFIG # Obsolete macros: AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_CXX], []) dnl AC_DEFUN([AC_LIBTOOL_F77], []) dnl AC_DEFUN([AC_LIBTOOL_FC], []) dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) dnl AC_DEFUN([AC_LIBTOOL_RC], []) # _LT_TAG_COMPILER # ---------------- m4_defun([_LT_TAG_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_TAG_COMPILER # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. m4_defun([_LT_COMPILER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. m4_defun([_LT_LINKER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ])# _LT_LINKER_BOILERPLATE # _LT_REQUIRED_DARWIN_CHECKS # ------------------------- m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ case $host_os in rhapsody* | darwin*) AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) AC_CHECK_TOOL([LIPO], [lipo], [:]) AC_CHECK_TOOL([OTOOL], [otool], [:]) AC_CHECK_TOOL([OTOOL64], [otool64], [:]) _LT_DECL([], [DSYMUTIL], [1], [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) _LT_DECL([], [NMEDIT], [1], [Tool to change global to local symbols on Mac OS X]) _LT_DECL([], [LIPO], [1], [Tool to manipulate fat objects and archives on Mac OS X]) _LT_DECL([], [OTOOL], [1], [ldd/readelf like tool for Mach-O binaries on Mac OS X]) _LT_DECL([], [OTOOL64], [1], [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no if test -z "$LT_MULTI_MODULE"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -rf libconftest.dylib* rm -f conftest.* fi]) # Feature test to disable chained fixups since it is not # compatible with '-undefined dynamic_lookup' AC_CACHE_CHECK([for -no_fixup_chains linker flag], [lt_cv_support_no_fixup_chains], [ save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -Wl,-no_fixup_chains" AC_LINK_IFELSE( [AC_LANG_PROGRAM([],[])], lt_cv_support_no_fixup_chains=yes, lt_cv_support_no_fixup_chains=no ) LDFLAGS=$save_LDFLAGS ] ) AC_CACHE_CHECK([for -exported_symbols_list linker flag], [lt_cv_ld_exported_symbols_list], [lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) LDFLAGS=$save_LDFLAGS ]) AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], [lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD echo "$AR $AR_FLAGS libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD $AR $AR_FLAGS libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD cat > conftest.c << _LT_EOF int main(void) { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM ]) case $host_os in rhapsody* | darwin1.[[012]]) _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) case $MACOSX_DEPLOYMENT_TARGET,$host in 10.[[012]],*|,*powerpc*-darwin[[5-8]]*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; *) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' if test yes = "$lt_cv_support_no_fixup_chains"; then AS_VAR_APPEND([_lt_dar_allow_undefined], [' $wl-no_fixup_chains']) fi ;; esac ;; esac if test yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi _lt_dar_needs_single_mod=no case $host_os in rhapsody* | darwin1.*) _lt_dar_needs_single_mod=yes ;; darwin*) # When targeting Mac OS X 10.4 (darwin 8) or later, # -single_module is the default and -multi_module is unsupported. # The toolchain on macOS 10.14 (darwin 18) and later cannot # target any OS version that needs -single_module. case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*-darwin[[567]].*|10.[[0-3]],*-darwin[[5-9]].*|10.[[0-3]],*-darwin1[[0-7]].*) _lt_dar_needs_single_mod=yes ;; esac ;; esac if test yes = "$lt_cv_ld_exported_symbols_list"; then _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac ]) # _LT_DARWIN_LINKER_FEATURES([TAG]) # --------------------------------- # Checks for linker and compiler features on darwin m4_defun([_LT_DARWIN_LINKER_FEATURES], [ m4_require([_LT_REQUIRED_DARWIN_CHECKS]) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported if test yes = "$lt_cv_ld_force_load"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=$_lt_dar_allow_undefined case $cc_basename in ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" _LT_TAGVAR(archive_expsym_cmds, $1)="$SED 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" _LT_TAGVAR(module_expsym_cmds, $1)="$SED -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" m4_if([$1], [CXX], [ if test yes = "$_lt_dar_needs_single_mod" -a yes != "$lt_cv_apple_cc_single_mod"; then _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" _LT_TAGVAR(archive_expsym_cmds, $1)="$SED 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" fi ],[]) else _LT_TAGVAR(ld_shlibs, $1)=no fi ]) # _LT_SYS_MODULE_PATH_AIX([TAGNAME]) # ---------------------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. # Store the results from the different compilers for each TAGNAME. # Allow to override them for all tags through lt_cv_aix_libpath. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ lt_aix_libpath_sed='[ /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }]' _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=/usr/lib:/lib fi ]) aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) fi ])# _LT_SYS_MODULE_PATH_AIX # _LT_SHELL_INIT(ARG) # ------------------- m4_define([_LT_SHELL_INIT], [m4_divert_text([M4SH-INIT], [$1 ])])# _LT_SHELL_INIT # _LT_PROG_ECHO_BACKSLASH # ----------------------- # Find how we can fake an echo command that does not interpret backslash. # In particular, with Autoconf 2.60 or later we add some code to the start # of the generated configure script that will find a shell with a builtin # printf (that we can use as an echo command). m4_defun([_LT_PROG_ECHO_BACKSLASH], [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO AC_MSG_CHECKING([how to print strings]) # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $[]1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } case $ECHO in printf*) AC_MSG_RESULT([printf]) ;; print*) AC_MSG_RESULT([print -r]) ;; *) AC_MSG_RESULT([cat]) ;; esac m4_ifdef([_AS_DETECT_SUGGESTED], [_AS_DETECT_SUGGESTED([ test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test "X`printf %s $ECHO`" = "X$ECHO" \ || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) ])# _LT_PROG_ECHO_BACKSLASH # _LT_WITH_SYSROOT # ---------------- AC_DEFUN([_LT_WITH_SYSROOT], [m4_require([_LT_DECL_SED])dnl AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], [AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@], [Search for dependent libraries within DIR (or the compiler's sysroot if not specified).])], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= case $with_sysroot in #( yes) if test yes = "$GCC"; then # Trim trailing / since we'll always append absolute paths and we want # to avoid //, if only for less confusing output for the user. lt_sysroot=`$CC --print-sysroot 2>/dev/null | $SED 's:/\+$::'` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | $SED -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) AC_MSG_RESULT([$with_sysroot]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl [dependent libraries, and where our libraries should be installed.])]) # _LT_ENABLE_LOCK # --------------- m4_defun([_LT_ENABLE_LOCK], [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out what ABI is being produced by ac_compile, and set mode # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `$FILECMD conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE=32 ;; *ELF-64*) HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test yes = "$lt_cv_prog_gnu_ld"; then case `$FILECMD conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `$FILECMD conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; mips64*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then emul=elf case `$FILECMD conftest.$ac_objext` in *32-bit*) emul="${emul}32" ;; *64-bit*) emul="${emul}64" ;; esac case `$FILECMD conftest.$ac_objext` in *MSB*) emul="${emul}btsmip" ;; *LSB*) emul="${emul}ltsmip" ;; esac case `$FILECMD conftest.$ac_objext` in *N32*) emul="${emul}n32" ;; esac LD="${LD-ld} -m $emul" fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*|x86_64-gnu*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. Note that the listed cases only cover the # situations where additional linker options are needed (such as when # doing 32-bit compilation for a host where ld defaults to 64-bit, or # vice versa); the common cases where no linker options are needed do # not appear in the list. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `$FILECMD conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*|x86_64-gnu*) case `$FILECMD conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; powerpc64le-*linux*) LD="${LD-ld} -m elf32lppclinux" ;; powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*|x86_64-gnu*) LD="${LD-ld} -m elf_x86_64" ;; powerpcle-*linux*) LD="${LD-ld} -m elf64lppc" ;; powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `$FILECMD conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD=${LD-ld}_sol2 fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks=$enable_libtool_lock ])# _LT_ENABLE_LOCK # _LT_PROG_AR # ----------- m4_defun([_LT_PROG_AR], [AC_CHECK_TOOLS(AR, [ar], false) : ${AR=ar} _LT_DECL([], [AR], [1], [The archiver]) # Use ARFLAGS variable as AR's operation code to sync the variable naming with # Automake. If both AR_FLAGS and ARFLAGS are specified, AR_FLAGS should have # higher priority because that's what people were doing historically (setting # ARFLAGS for automake and AR_FLAGS for libtool). FIXME: Make the AR_FLAGS # variable obsoleted/removed. test ${AR_FLAGS+y} || AR_FLAGS=${ARFLAGS-cr} lt_ar_flags=$AR_FLAGS _LT_DECL([], [lt_ar_flags], [0], [Flags to create an archive (by configure)]) # Make AR_FLAGS overridable by 'make ARFLAGS='. Don't try to run-time override # by AR_FLAGS because that was never working and AR_FLAGS is about to die. _LT_DECL([], [AR_FLAGS], [\@S|@{ARFLAGS-"\@S|@lt_ar_flags"}], [Flags to create an archive]) AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], [lt_cv_ar_at_file=no AC_COMPILE_IFELSE([AC_LANG_PROGRAM], [echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([lt_ar_try]) if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a ]) ]) if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi _LT_DECL([], [archiver_list_spec], [1], [How to feed a file listing to the archiver]) ])# _LT_PROG_AR # _LT_CMD_OLD_ARCHIVE # ------------------- m4_defun([_LT_CMD_OLD_ARCHIVE], [_LT_PROG_AR AC_CHECK_TOOL(STRIP, strip, :) test -z "$STRIP" && STRIP=: _LT_DECL([], [STRIP], [1], [A symbol stripping program]) AC_REQUIRE([AC_PROG_RANLIB]) test -z "$RANLIB" && RANLIB=: _LT_DECL([], [RANLIB], [1], [Commands used to install an old-style archive]) # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac _LT_DECL([], [old_postinstall_cmds], [2]) _LT_DECL([], [old_postuninstall_cmds], [2]) _LT_TAGDECL([], [old_archive_cmds], [2], [Commands used to build an old-style archive]) _LT_DECL([], [lock_old_archive_extraction], [0], [Whether to use a lock for old archive extraction]) ])# _LT_CMD_OLD_ARCHIVE # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $RM conftest* ]) if test yes = "[$]$2"; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) fi ])# _LT_COMPILER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------- # Check whether the given linker option works AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS ]) if test yes = "[$]$2"; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) fi ])# _LT_LINKER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) # LT_CMD_MAX_LEN #--------------- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl # find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring=ABCD case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu* | ironclad*) # Under GNU Hurd and Ironclad, this test is not required because there # is no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | windows* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; darwin* | dragonfly* | freebsd* | midnightbsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | $SED 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac ]) if test -n "$lt_cv_sys_max_cmd_len"; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi max_cmd_len=$lt_cv_sys_max_cmd_len _LT_DECL([], [max_cmd_len], [0], [What is the maximum length of a command?]) ])# LT_CMD_MAX_LEN # Old name: AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) # _LT_HEADER_DLFCN # ---------------- m4_defun([_LT_HEADER_DLFCN], [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl ])# _LT_HEADER_DLFCN # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test yes = "$cross_compiling"; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF [#line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord (void) __attribute__((visibility("default"))); #endif int fnord (void) { return 42; } int main (void) { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; }] _LT_EOF if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_TRY_DLOPEN_SELF # LT_SYS_DLOPEN_SELF # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | windows* | pw32* | cegcc*) lt_cv_dlopen=LoadLibrary lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen=dlopen lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[ lt_cv_dlopen=dyld lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; tpf*) # Don't try to run any link tests for TPF. We know it's impossible # because TPF is a cross-compiler, and we know how we open DSOs. lt_cv_dlopen=dlopen lt_cv_dlopen_libs= lt_cv_dlopen_self=no ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen=shl_load], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen=dlopen], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld]) ]) ]) ]) ]) ]) ;; esac if test no = "$lt_cv_dlopen"; then enable_dlopen=no else enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS=$CPPFLAGS test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test yes = "$lt_cv_dlopen_self"; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS=$save_CPPFLAGS LDFLAGS=$save_LDFLAGS LIBS=$save_LIBS ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi _LT_DECL([dlopen_support], [enable_dlopen], [0], [Whether dlopen is supported]) _LT_DECL([dlopen_self], [enable_dlopen_self], [0], [Whether dlopen of programs is supported]) _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], [Whether dlopen of statically linked programs is supported]) ])# LT_SYS_DLOPEN_SELF # Old name: AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) # _LT_COMPILER_C_O([TAGNAME]) # --------------------------- # Check to see if options -c and -o are simultaneously supported by compiler. # This macro does not hard code the compiler like AC_PROG_CC_C_O. m4_defun([_LT_COMPILER_C_O], [m4_require([_LT_DECL_SED])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* ]) _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], [Does compiler simultaneously support -c and -o options?]) ])# _LT_COMPILER_C_O # _LT_COMPILER_FILE_LOCKS([TAGNAME]) # ---------------------------------- # Check to see if we can do hard links to lock some files if needed m4_defun([_LT_COMPILER_FILE_LOCKS], [m4_require([_LT_ENABLE_LOCK])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) hard_links=nottested if test no = "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test no = "$hard_links"; then AC_MSG_WARN(['$CC' does not support '-c -o', so 'make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) ])# _LT_COMPILER_FILE_LOCKS # _LT_CHECK_OBJDIR # ---------------- m4_defun([_LT_CHECK_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl AC_DEFINE_UNQUOTED([LT_OBJDIR], "$lt_cv_objdir/", [Define to the sub-directory where libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) # -------------------------------------- # Check hardcoding attributes. m4_defun([_LT_LINKER_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || test yes = "$_LT_TAGVAR(hardcode_automatic, $1)"; then # We can hardcode non-existent directories. if test no != "$_LT_TAGVAR(hardcode_direct, $1)" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" && test no != "$_LT_TAGVAR(hardcode_minus_L, $1)"; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) if test relink = "$_LT_TAGVAR(hardcode_action, $1)" || test yes = "$_LT_TAGVAR(inherit_rpath, $1)"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi _LT_TAGDECL([], [hardcode_action], [0], [How to hardcode a shared library path into an executable]) ])# _LT_LINKER_HARDCODE_LIBPATH # _LT_CMD_STRIPLIB # ---------------- m4_defun([_LT_CMD_STRIPLIB], [m4_require([_LT_DECL_EGREP]) striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -z "$STRIP"; then AC_MSG_RESULT([no]) else if $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then old_striplib="$STRIP --strip-debug" striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else case $host_os in darwin*) # FIXME - insert some real tests, host_os isn't really good enough striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) ;; freebsd*) if $STRIP -V 2>&1 | $GREP "elftoolchain" >/dev/null; then old_striplib="$STRIP --strip-debug" striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi fi _LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) _LT_DECL([], [striplib], [1]) ])# _LT_CMD_STRIPLIB # _LT_PREPARE_MUNGE_PATH_LIST # --------------------------- # Make sure func_munge_path_list() is defined correctly. m4_defun([_LT_PREPARE_MUNGE_PATH_LIST], [[# func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x@S|@2 in x) ;; *:) eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'` \@S|@@S|@1\" ;; x:*) eval @S|@1=\"\@S|@@S|@1 `$ECHO @S|@2 | $SED 's/:/ /g'`\" ;; *::*) eval @S|@1=\"\@S|@@S|@1\ `$ECHO @S|@2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval @S|@1=\"`$ECHO @S|@2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \@S|@@S|@1\" ;; *) eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'`\" ;; esac } ]])# _LT_PREPARE_PATH_LIST # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics m4_defun([_LT_SYS_DYNAMIC_LINKER], [AC_REQUIRE([AC_CANONICAL_HOST])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PREPARE_MUNGE_PATH_LIST])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ if test yes = "$GCC"; then case $host_os in darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in mingw* | windows* | cegcc*) lt_sed_strip_eq='s|=\([[A-Za-z]]:\)|\1|g' ;; *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` # ...but if some path component already ends with the multilib dir we assume # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). case "$lt_multi_os_dir; $lt_search_path_spec " in "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) lt_multi_os_dir= ;; esac for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS = " "; FS = "/|\n";} { lt_foo = ""; lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[[lt_foo]]++; } if (lt_freq[[lt_foo]] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | windows* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's|/\([[A-Za-z]]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown AC_ARG_VAR([LT_SYS_LIBRARY_PATH], [User-defined run-time library search path.]) case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='$libname$release$shared_ext$major' ;; aix[[4-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line '#! .'. This would cause the generated library to # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --enable-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a[(]lib.so.V[)]' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)]" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)], lib.a[(]lib.so.V[)]" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a[(]lib.so.V[)], lib.so.V[(]$shared_archive_member_spec.o[)]" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | windows* | pw32* | cegcc*) version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds # If user builds GCC with multilib enabled, # it should just install on $(libdir) # not on $(libdir)/../bin or 32 bits dlls would override 64 bit ones. if test xyes = x"$multilib"; then postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ $install_prog $dir/$dlname $destdir/$dlname~ chmod a+x $destdir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib $destdir/$dlname'\'' || exit \$?; fi' else postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' fi postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo $libname | $SED -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) ;; mingw* | windows* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo $libname | $SED -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl* | *,icl*) # Native MSVC or ICC libname_spec='$name' soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' library_names_spec='$libname.dll.lib' case $build_os in mingw* | windows*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC and ICC wrapper library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly* | midnightbsd*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[[23]].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac case $host_cpu in powerpc64) # On FreeBSD bi-arch platforms, a different variable is used for 32-bit # binaries. See . AC_COMPILE_IFELSE( [AC_LANG_SOURCE( [[int test_pointer_size[sizeof (void *) - 5]; ]])], [shlibpath_var=LD_LIBRARY_PATH], [shlibpath_var=LD_32_LIBRARY_PATH]) ;; *) shlibpath_var=LD_LIBRARY_PATH ;; esac case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec='/boot/system/non-packaged/develop/lib /boot/system/develop/lib' sys_lib_dlsearch_path_spec='/boot/home/config/non-packaged/lib /boot/home/config/lib /boot/system/non-packaged/lib /boot/system/lib' hardcode_into_libs=no ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[[3-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext $libname$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes dynamic_linker='Android linker' # -rpath works at least for libraries that are not overridden by # libraries installed in system locations. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], [lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], [lt_cv_shlibpath_overrides_runpath=yes])]) LDFLAGS=$save_LDFLAGS libdir=$save_libdir ]) shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Ideally, we could use ldconfig to report *all* directories which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, # even though it is searched at run-time. Try to do the best guess by # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; *-mlibc) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='mlibc ld.so' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) dynamic_linker=no ;; serenity*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no dynamic_linker='SerenityOS LibELF' ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=sco need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; emscripten*) version_type=none need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= dynamic_linker="Emscripten linker" _LT_COMPILER_PIC($1)='-fPIC' _LT_TAGVAR(archive_cmds, $1)='$CC -sSIDE_MODULE=2 -shared $libobjs $deplibs $compiler_flags -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$SED "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -sSIDE_MODULE=2 -shared $libobjs $deplibs $compiler_flags -o $lib -s EXPORTED_FUNCTIONS=@$output_objdir/$soname.expsym' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(no_undefined_flag, $1)= ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi # remember unaugmented sys_lib_dlsearch_path content for libtool script decls... configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec # ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" # to be used as default LT_SYS_LIBRARY_PATH value in generated libtool configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) _LT_DECL([], [need_lib_prefix], [0], [Do we need the "lib" prefix for modules?]) _LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) _LT_DECL([], [version_type], [0], [Library versioning type]) _LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) _LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) _LT_DECL([], [shlibpath_overrides_runpath], [0], [Is shlibpath searched before the hard-coded library search path?]) _LT_DECL([], [libname_spec], [1], [Format of library name prefix]) _LT_DECL([], [library_names_spec], [1], [[List of archive names. First name is the real one, the rest are links. The last name is the one that the linker finds with -lNAME]]) _LT_DECL([], [soname_spec], [1], [[The coded name of the library, if different from the real name]]) _LT_DECL([], [install_override_mode], [1], [Permission mode override for installation of shared libraries]) _LT_DECL([], [postinstall_cmds], [2], [Command to use after installation of a shared archive]) _LT_DECL([], [postuninstall_cmds], [2], [Command to use after uninstallation of a shared archive]) _LT_DECL([], [finish_cmds], [2], [Commands used to finish a libtool library installation in a directory]) _LT_DECL([], [finish_eval], [1], [[As "finish_cmds", except a single script fragment to be evaled but not shown]]) _LT_DECL([], [hardcode_into_libs], [0], [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) _LT_DECL([sys_lib_dlsearch_path_spec], [configure_time_dlsearch_path], [2], [Detected run-time system search path for libraries]) _LT_DECL([], [configure_time_lt_sys_library_path], [2], [Explicit LT_SYS_LIBRARY_PATH set during ./configure time]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- # find a file program that can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD=$MAGIC_CMD lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$1"; then lt_cv_path_MAGIC_CMD=$ac_dir/"$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS=$lt_save_ifs MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac]) MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi _LT_DECL([], [MAGIC_CMD], [0], [Used to examine libraries when file_magic_cmd begins with "file"])dnl ])# _LT_PATH_TOOL_PREFIX # Old name: AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) # _LT_PATH_MAGIC # -------------- # find a file program that can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# _LT_PATH_MAGIC # LT_PATH_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PROG_ECHO_BACKSLASH])dnl AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test no = "$withval" || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw* | *-*-windows*) # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test yes = "$with_gnu_ld"; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 conftest.i cat conftest.i conftest.i >conftest2.i : ${lt_DD:=$DD} AC_PATH_PROGS_FEATURE_CHECK([lt_DD], [dd], [if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: fi]) rm -f conftest.i conftest2.i conftest.out]) ])# _LT_PATH_DD # _LT_CMD_TRUNCATE # ---------------- # find command to truncate a binary pipe m4_defun([_LT_CMD_TRUNCATE], [m4_require([_LT_PATH_DD]) AC_CACHE_CHECK([how to truncate binary pipes], [lt_cv_truncate_bin], [printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i lt_cv_truncate_bin= if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" fi rm -f conftest.i conftest2.i conftest.out test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q"]) _LT_DECL([lt_truncate_bin], [lt_cv_truncate_bin], [1], [Command to truncate a binary pipe]) ])# _LT_CMD_TRUNCATE # _LT_CHECK_MAGIC_METHOD # ---------------------- # how to check for library dependencies # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_MAGIC_METHOD], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) AC_CACHE_CHECK([how to recognize dependent libraries], lt_cv_deplibs_check_method, [lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # 'unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'file_magic [[regex]]' -- check by looking for files in library path # that responds to the $file_magic_cmd with a given extended regex. # If you have 'file' or equivalent on your system and you're not sure # whether 'pass_all' will *always* work, you probably want this one. case $host_os in aix[[4-9]]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[[45]]*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='$FILECMD -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | windows* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64|pe-aarch64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly* | midnightbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=$FILECMD lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=$FILECMD case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[[3-9]]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; *-mlibc) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=$FILECMD lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; serenity*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; os2*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | windows* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown _LT_DECL([], [deplibs_check_method], [1], [Method to check whether dependent libraries are shared objects]) _LT_DECL([], [file_magic_cmd], [1], [Command to use when deplibs_check_method = "file_magic"]) _LT_DECL([], [file_magic_glob], [1], [How to find potential files when deplibs_check_method = "file_magic"]) _LT_DECL([], [want_nocaseglob], [1], [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) ])# _LT_CHECK_MAGIC_METHOD # LT_PATH_NM # ---------- # find the pathname to a BSD- or MS-compatible name lister AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM=$NM else lt_nm_to_check=${ac_tool_prefix}nm if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. tmp_nm=$ac_dir/$lt_tmp_nm if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then # Check to see if the nm accepts a BSD-compat flag. # Adding the 'sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty case $build_os in mingw* | windows*) lt_bad_file=conftest.nm/nofile ;; *) lt_bad_file=/dev/null ;; esac case `"$tmp_nm" -B $lt_bad_file 2>&1 | $SED '1q'` in *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | $SED '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi]) if test no != "$lt_cv_path_NM"; then NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) case `$DUMPBIN -symbols -headers /dev/null 2>&1 | $SED '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: ;; esac fi AC_SUBST([DUMPBIN]) if test : != "$DUMPBIN"; then NM=$DUMPBIN fi fi test -z "$NM" && NM=nm AC_SUBST([NM]) _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], [lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) cat conftest.out >&AS_MESSAGE_LOG_FD if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest*]) ])# LT_PATH_NM # Old names: AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_PROG_NM], []) dnl AC_DEFUN([AC_PROG_NM], []) # _LT_CHECK_SHAREDLIB_FROM_LINKLIB # -------------------------------- # how to determine the name of the shared library # associated with a specific link library. # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) m4_require([_LT_DECL_DLLTOOL]) AC_CACHE_CHECK([how to associate runtime and link libraries], lt_cv_sharedlib_from_linklib_cmd, [lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | windows* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh; # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac ]) sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO _LT_DECL([], [sharedlib_from_linklib_cmd], [1], [Command to associate shared and link libraries]) ])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB # _LT_PATH_MANIFEST_TOOL # ---------------------- # locate the manifest tool m4_defun([_LT_PATH_MANIFEST_TOOL], [AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_manifest_tool], [lt_cv_path_manifest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&AS_MESSAGE_LOG_FD if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_manifest_tool=yes fi rm -f conftest*]) if test yes != "$lt_cv_path_manifest_tool"; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL # _LT_DLL_DEF_P([FILE]) # --------------------- # True iff FILE is a Windows DLL '.def' file. # Keep in sync with func_dll_def_p in the libtool script AC_DEFUN([_LT_DLL_DEF_P], [dnl test DEF = "`$SED -n dnl -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl -e q dnl Only consider the first "real" line $1`" dnl ])# _LT_DLL_DEF_P # LT_LIB_M # -------- # check for math library AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-mingw* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw) AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM=-lm) ;; esac AC_SUBST([LIBM]) ])# LT_LIB_M # Old name: AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_CHECK_LIBM], []) # _LT_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------- m4_defun([_LT_COMPILER_NO_RTTI], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test yes = "$GCC"; then case $cc_basename in nvcc*) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; *) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; esac _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], [Compiler flag to turn off builtin functions]) ])# _LT_COMPILER_NO_RTTI # _LT_CMD_GLOBAL_SYMBOLS # ---------------------- m4_defun([_LT_CMD_GLOBAL_SYMBOLS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([LT_PATH_NM])dnl AC_REQUIRE([LT_PATH_LD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_TAG_COMPILER])dnl # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | windows* | pw32* | cegcc*) symcode='[[ABCDGISTW]]' ;; hpux*) if test ia64 = "$host_cpu"; then symcode='[[ABCDEGRST]]' fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BCDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Gets list of data symbols to import. lt_cv_sys_global_symbol_to_import="$SED -n -e 's/^I .* \(.*\)$/\1/p'" # Adjust the below global symbol transforms to fixup imported variables. lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" lt_c_name_lib_hook="\ -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" else # Disable hooks by default. lt_cv_sys_global_symbol_to_import= lt_cdecl_hook= lt_c_name_hook= lt_c_name_lib_hook= fi # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="$SED -n"\ $lt_cdecl_hook\ " -e 's/^T .* \(.*\)$/extern int \1();/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="$SED -n"\ $lt_c_name_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" # Transform an extracted symbol line into symbol name with lib prefix and # symbol address. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="$SED -n"\ $lt_c_name_lib_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw* | windows*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function, # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++ or ICC, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ " /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ " /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ " {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ " s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="$SED -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | $SED '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(void){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if AC_TRY_EVAL(ac_compile); then # Now try to grab the symbols. nlist=conftest.nm $ECHO "$as_me:$LINENO: $NM conftest.$ac_objext | $lt_cv_sys_global_symbol_pipe > $nlist" >&AS_MESSAGE_LOG_FD if eval "$NM" conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist 2>&AS_MESSAGE_LOG_FD && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else # define LT@&t@_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT@&t@_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[[]] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then nm_file_list_spec='@' fi _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) _LT_DECL([global_symbol_to_import], [lt_cv_sys_global_symbol_to_import], [1], [Transform the output of nm into a list of symbols to manually relocate]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) _LT_DECL([nm_interface], [lt_cv_nm_interface], [1], [The name lister interface]) _LT_DECL([], [nm_file_list_spec], [1], [Specify filename containing input files for $NM]) ]) # _LT_CMD_GLOBAL_SYMBOLS # _LT_COMPILER_PIC([TAGNAME]) # --------------------------- m4_defun([_LT_COMPILER_PIC], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_wl, $1)= _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)= m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | windows* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix[[4-9]]*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; mingw* | windows* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; dgux*) case $cc_basename in ec++*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | dragonfly* | midnightbsd*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' if test ia64 != "$host_cpu"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64, which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL 8.0, 9.0 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | $SED 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd* | netbsdelf*-gnu) ;; *-mlibc) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; serenity*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test yes = "$GCC"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | windows* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' case $cc_basename in nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; mingw* | windows* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; hpux9* | hpux10* | hpux11*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64, which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; *flang* | ftn | f18* | f95*) # Flang compiler. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # flang / f18. f95 an alias for gfortran or flang on Debian flang* | f18* | f95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # Lahey Fortran 8.1. lf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' ;; nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; tcc*) # Fabrice Bellard et al's Tiny C Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | $SED 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='' ;; *Sun\ F* | *Sun*Fortran*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; *Intel*\ [[CF]]*Compiler*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; *Portland\ Group*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; esac ;; newsos6) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *-mlibc) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; rdos*) _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; serenity*) ;; solaris*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) case $host_os in # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" ;; esac AC_CACHE_CHECK([for $compiler option to produce PIC], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) _LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], [Additional compiler flags for building library objects]) _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], [How to pass a linker flag through the compiler]) # # Check to make sure the static flag actually works. # wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], [Compiler flag to prevent dynamic linking]) ])# _LT_COMPILER_PIC # _LT_LINKER_SHLIBS([TAGNAME]) # ---------------------------- # See if the linker supports building shared libraries. m4_defun([_LT_LINKER_SHLIBS], [AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) m4_if([$1], [CXX], [ _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_TAGVAR(export_symbols_cmds, $1)=$ltdll_cmds ;; cygwin* | mingw* | windows* | cegcc*) case $cc_basename in cl* | icl*) _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] ;; esac ;; linux* | k*bsd*-gnu | gnu*) _LT_TAGVAR(link_all_deplibs, $1)=no ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ], [ runpath_var= _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_cmds, $1)= _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(old_archive_from_new_cmds, $1)= _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_TAGVAR(thread_safe_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ' (' and ')$', so one must not match beginning or # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', # as well as any symbol that contains 'd'. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. dnl Note also adjust exclude_expsyms for C++ above. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | windows* | pw32* | cegcc*) # FIXME: the MSVC++ and ICC port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++ or Intel C++ Compiler. if test yes != "$GCC"; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++ or ICC) with_gnu_ld=yes ;; linux* | k*bsd*-gnu | gnu*) _LT_TAGVAR(link_all_deplibs, $1)=no ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v | $SED -e 's/([[^)]]\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken if test ia64 != "$host_cpu"; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | windows* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] _LT_TAGVAR(file_list_spec, $1)='@' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=no ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$SED "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; nagfor*) # NAGFOR 5.3 tmp_sharedflag='-Wl,-shared' ;; xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes ;; esac case `$CC -V 2>&1 | $SED 5q` in *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in tcc*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='-rdynamic' ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; *-mlibc) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test no = "$_LT_TAGVAR(ld_shlibs, $1)"; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_TAGVAR(hardcode_minus_L, $1)=yes if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix[[4-9]]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # traditional, no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no ;; esac if test yes = "$GCC"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag="$shared_flag "'$wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; bsdi[[45]]*) _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | windows* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++ or Intel C++ Compiler. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl* | icl*) # Native MSVC or ICC _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -Fe$output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -Fe$tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC and ICC wrapper _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly* | midnightbsd*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; hpux10*) if test yes,no = "$GCC,$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) m4_if($1, [], [ # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) _LT_LINKER_OPTION([if $CC understands -b], _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) ;; esac fi if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], [lt_cv_irix_exported_symbol], [save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" AC_LINK_IFELSE( [AC_LANG_SOURCE( [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], [C++], [[int foo (void) { return 0; }]], [Fortran 77], [[ subroutine foo end]], [Fortran], [[ subroutine foo end]])])], [lt_cv_irix_exported_symbol=yes], [lt_cv_irix_exported_symbol=no]) LDFLAGS=$save_LDFLAGS]) if test yes = "$lt_cv_irix_exported_symbol"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi _LT_TAGVAR(link_all_deplibs, $1)=no else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; linux*) case $cc_basename in tcc*) # Fabrice Bellard et al's Tiny C Compiler _LT_TAGVAR(ld_shlibs, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' ;; esac ;; *-mlibc) ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' fi else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' ;; osf3*) if test yes = "$GCC"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test yes = "$GCC"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; serenity*) ;; solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' if test yes = "$GCC"; then wlarc='$wl' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' _LT_TAGVAR(archive_cmds, $1)='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='$wl' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test yes = "$GCC"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(ld_shlibs, $1)=no ;; esac if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl _LT_DECL([], [extract_expsyms_cmds], [2], [The commands to extract the exported symbol list from a shared archive]) # # Do we need to explicitly link libc? # case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes if test yes,yes = "$GCC,$enable_shared"; then case $_LT_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_CACHE_CHECK([whether -lc should be explicitly linked in], [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), [$RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) _LT_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) then lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no else lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* ]) _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) ;; esac fi ;; esac _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], [Whether or not to add -lc for building shared libraries]) _LT_TAGDECL([allow_libtool_libs_with_static_runtimes], [enable_shared_with_static_runtimes], [0], [Whether or not to disallow shared libs when runtime libs are static]) _LT_TAGDECL([], [export_dynamic_flag_spec], [1], [Compiler flag to allow reflexive dlopens]) _LT_TAGDECL([], [whole_archive_flag_spec], [1], [Compiler flag to generate shared objects directly from archives]) _LT_TAGDECL([], [compiler_needs_object], [1], [Whether the compiler copes with passing no objects directly]) _LT_TAGDECL([], [old_archive_from_new_cmds], [2], [Create an old-style archive from a shared archive]) _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], [Create a temporary old-style archive to link instead of a shared archive]) _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) _LT_TAGDECL([], [archive_expsym_cmds], [2]) _LT_TAGDECL([], [module_cmds], [2], [Commands used to build a loadable module if different from building a shared archive.]) _LT_TAGDECL([], [module_expsym_cmds], [2]) _LT_TAGDECL([], [with_gnu_ld], [1], [Whether we are building with GNU ld or not]) _LT_TAGDECL([], [allow_undefined_flag], [1], [Flag that allows shared libraries with undefined symbols to be built]) _LT_TAGDECL([], [no_undefined_flag], [1], [Flag that enforces no undefined symbols]) _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], [Flag to hardcode $libdir into a binary during linking. This must work even if $libdir does not exist]) _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary and the resulting library dependency is "absolute", i.e. impossible to change by setting $shlibpath_var if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_shlibpath_var], [0], [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_automatic], [0], [Set to "yes" if building a shared library automatically hardcodes DIR into the library and all subsequent libraries and executables linked against it]) _LT_TAGDECL([], [inherit_rpath], [0], [Set to yes if linker adds runtime paths of dependent libraries to runtime path list]) _LT_TAGDECL([], [link_all_deplibs], [0], [Whether libtool must link a program against all its dependency libraries]) _LT_TAGDECL([], [always_export_symbols], [0], [Set to "yes" if exported symbols are required]) _LT_TAGDECL([], [export_symbols_cmds], [2], [The commands to list exported symbols]) _LT_TAGDECL([], [exclude_expsyms], [1], [Symbols that should not be listed in the preloaded symbols]) _LT_TAGDECL([], [include_expsyms], [1], [Symbols that must always be exported]) _LT_TAGDECL([], [prelink_cmds], [2], [Commands necessary for linking programs (against libraries) with templates]) _LT_TAGDECL([], [postlink_cmds], [2], [Commands necessary for finishing linking programs]) _LT_TAGDECL([], [file_list_spec], [1], [Specify filename containing input files]) dnl FIXME: Not yet implemented dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], dnl [Compiler flag to generate thread safe objects]) ])# _LT_LINKER_SHLIBS # _LT_LANG_C_CONFIG([TAG]) # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to 'libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl lt_save_CC=$CC AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(void){return(0);}' _LT_TAG_COMPILER # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) LT_SYS_DLOPEN_SELF _LT_CMD_STRIPLIB # Report what library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP CC=$lt_save_CC ])# _LT_LANG_C_CONFIG # _LT_LANG_CXX_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to 'libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl if test -n "$CXX" && ( test no != "$CXX" && ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || (test g++ != "$CXX"))); then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes fi AC_LANG_PUSH(C++) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_caught_CXX_error"; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} CFLAGS=$CXXFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test yes = "$GXX"; then # Set up default GNU C++ configuration LT_PATH_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test yes = "$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='$wl' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " [[-]]L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no ;; esac if test yes = "$GXX"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag=$shared_flag' $wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. # The "-G" linker flag allows undefined symbols. _LT_TAGVAR(no_undefined_flag, $1)='-bernotok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | windows* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl* | ,icl* | no,icl*) # Native MSVC or ICC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ func_to_tool_file "$lt_outputfile"~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF _LT_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | dragonfly* | midnightbsd*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_TAGVAR(ld_shlibs, $1)=yes ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=no ;; hpux9*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "[[-]]L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP " [[-]]L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$SED "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl--rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' ;; cxx*) # Compaq C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | $SED 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; *-mlibc) _LT_TAGVAR(ld_shlibs, $1)=yes ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) _LT_TAGVAR(ld_shlibs, $1)=yes ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; cxx*) case $host in osf3*) _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ $RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes,no = "$GXX,$with_gnu_ld"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' case $host in osf3*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " [[-]]L"' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; serenity*) ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test yes,no = "$GXX,$with_gnu_ld"; then _LT_TAGVAR(no_undefined_flag, $1)=' $wl-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " [[-]]L"' else # g++ 2.7 appears to require '-G' NOT '-shared' on this # platform. _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " [[-]]L"' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ '"$_LT_TAGVAR(old_archive_cmds, $1)" _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ '"$_LT_TAGVAR(reload_cmds, $1)" ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no _LT_TAGVAR(GCC, $1)=$GXX _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test yes != "$_lt_caught_CXX_error" AC_LANG_POP ])# _LT_LANG_CXX_CONFIG # _LT_FUNC_STRIPNAME_CNF # ---------------------- # func_stripname_cnf prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # # This function is identical to the (non-XSI) version of func_stripname, # except this one can be used by m4 code that may be executed by configure, # rather than the libtool script. m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl AC_REQUIRE([_LT_DECL_SED]) AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) func_stripname_cnf () { case @S|@2 in .*) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%\\\\@S|@2\$%%"`;; *) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%@S|@2\$%%"`;; esac } # func_stripname_cnf ])# _LT_FUNC_STRIPNAME_CNF # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) # --------------------------------- # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. m4_defun([_LT_SYS_HIDDEN_LIBDEPS], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl # Dependencies to place before and after the object being linked: _LT_TAGVAR(predep_objects, $1)= _LT_TAGVAR(postdep_objects, $1)= _LT_TAGVAR(predeps, $1)= _LT_TAGVAR(postdeps, $1)= _LT_TAGVAR(compiler_lib_search_path, $1)= dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF int a; void foo (void) { a = 0; } _LT_EOF ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer*4 a a=0 return end _LT_EOF ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer a a=0 return end _LT_EOF ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF public class foo { private int a; public void bar (void) { a = 0; } }; _LT_EOF ], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF package foo func foo() { } _LT_EOF ]) _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac dnl Parse the compiler output and extract the necessary dnl objects, libraries and library flags. if AC_TRY_EVAL(ac_compile); then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do case $prev$p in -L* | -R* | -l*) # Some compilers place space between "-{L,R,l}" and the path. # Remove the space. if test x-L = x"$p" || test x-R = x"$p" || test x-l = x"$p"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac if test no = "$pre_test_object_deps_done"; then case $prev in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then _LT_TAGVAR(compiler_lib_search_path, $1)=$prev$p else _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} $prev$p" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$_LT_TAGVAR(postdeps, $1)"; then _LT_TAGVAR(postdeps, $1)=$prev$p else _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} $prev$p" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test no = "$pre_test_object_deps_done"; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then _LT_TAGVAR(predep_objects, $1)=$p else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then _LT_TAGVAR(postdep_objects, $1)=$p else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling $1 test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken m4_if([$1], [CXX], [case $host_os in interix[[3-9]]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. _LT_TAGVAR(predep_objects,$1)= _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; esac ]) case " $_LT_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | $SED -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) _LT_TAGDECL([], [predep_objects], [1], [Dependencies to place before and after the objects being linked to create a shared library]) _LT_TAGDECL([], [postdep_objects], [1]) _LT_TAGDECL([], [predeps], [1]) _LT_TAGDECL([], [postdeps], [1]) _LT_TAGDECL([], [compiler_lib_search_path], [1], [The library search path used internally by the compiler when linking a shared library]) ])# _LT_SYS_HIDDEN_LIBDEPS # _LT_LANG_F77_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_LANG_PUSH(Fortran 77) if test -z "$F77" || test no = "$F77"; then _lt_disable_F77=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_disable_F77"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} CFLAGS=$FFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) GCC=$G77 if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)=$G77 _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test yes != "$_lt_disable_F77" AC_LANG_POP ])# _LT_LANG_F77_CONFIG # _LT_LANG_FC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_LANG_PUSH(Fortran) if test -z "$FC" || test no = "$FC"; then _lt_disable_FC=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for fc test sources. ac_ext=${ac_fc_srcext-f} # Object file extension for compiled fc test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_disable_FC"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${FC-"f95"} CFLAGS=$FCFLAGS compiler=$CC GCC=$ac_cv_fc_compiler_gnu _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)=$ac_cv_fc_compiler_gnu _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test yes != "$_lt_disable_FC" AC_LANG_POP ])# _LT_LANG_FC_CONFIG # _LT_LANG_GCJ_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GCJ-"gcj"} CFLAGS=$GCJFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GCJ_CONFIG # _LT_LANG_GO_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Go compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GO_CONFIG], [AC_REQUIRE([LT_PROG_GO])dnl AC_LANG_SAVE # Source file extension for Go test sources. ac_ext=go # Object file extension for compiled Go test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="package main; func main() { }" # Code to be used in simple link tests lt_simple_link_test_code='package main; func main() { }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GOC-"gccgo"} CFLAGS=$GOFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # Go did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GO_CONFIG # _LT_LANG_RC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for the Windows resource compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_RC_CONFIG], [AC_REQUIRE([LT_PROG_RC])dnl AC_LANG_SAVE # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests lt_simple_link_test_code=$lt_simple_compile_test_code # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC= CC=${RC-"windres"} CFLAGS= compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes if test -n "$compiler"; then : _LT_CONFIG($1) fi GCC=$lt_save_GCC AC_LANG_RESTORE CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_RC_CONFIG # LT_PROG_GCJ # ----------- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) # Old name: AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_GCJ], []) # LT_PROG_GO # ---------- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,) ]) # LT_PROG_RC # ---------- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,) ]) # Old name: AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_RC], []) # _LT_DECL_EGREP # -------------- # If we don't have a new enough Autoconf to choose the best grep # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_EGREP], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_REQUIRE([AC_PROG_FGREP])dnl test -z "$GREP" && GREP=grep _LT_DECL([], [GREP], [1], [A grep program that handles long lines]) _LT_DECL([], [EGREP], [1], [An ERE matcher]) _LT_DECL([], [FGREP], [1], [A literal string matcher]) dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too AC_SUBST([GREP]) ]) # _LT_DECL_OBJDUMP # -------------- # If we don't have a new enough Autoconf to choose the best objdump # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_OBJDUMP], [AC_CHECK_TOOL(OBJDUMP, objdump, false) test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) AC_SUBST([OBJDUMP]) ]) # _LT_DECL_DLLTOOL # ---------------- # Ensure DLLTOOL variable is set. m4_defun([_LT_DECL_DLLTOOL], [AC_CHECK_TOOL(DLLTOOL, dlltool, false) test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program]) AC_SUBST([DLLTOOL]) ]) # _LT_DECL_FILECMD # ---------------- # Check for a file(cmd) program that can be used to detect file type and magic m4_defun([_LT_DECL_FILECMD], [AC_CHECK_PROG([FILECMD], [file], [file], [:]) _LT_DECL([], [FILECMD], [1], [A file(cmd) program that detects file types]) ])# _LD_DECL_FILECMD # _LT_DECL_SED # ------------ # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. m4_defun([_LT_DECL_SED], [AC_PROG_SED test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" _LT_DECL([], [SED], [1], [A sed program that does not truncate output]) _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], [Sed that helps us avoid accidentally triggering echo(1) options like -n]) ])# _LT_DECL_SED dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_SED], []) # _LT_CHECK_SHELL_FEATURES # ------------------------ # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], [if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl ])# _LT_CHECK_SHELL_FEATURES # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- # Determine what file name conversion functions should be used by # func_to_host_file (and, implicitly, by func_to_host_path). These are needed # for certain cross-compile configurations and native mingw. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_MSG_CHECKING([how to convert $build file names to $host format]) AC_CACHE_VAL(lt_cv_to_host_file_cmd, [case $host in *-*-mingw* ) case $build in *-*-mingw* | *-*-windows* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* | *-*-windows* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac ]) to_host_file_cmd=$lt_cv_to_host_file_cmd AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) _LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], [0], [convert $build file names to $host format])dnl AC_MSG_CHECKING([how to convert $build file names to toolchain format]) AC_CACHE_VAL(lt_cv_to_tool_file_cmd, [#assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* | *-*-windows* ) case $build in *-*-mingw* | *-*-windows* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac ]) to_tool_file_cmd=$lt_cv_to_tool_file_cmd AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) _LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], [0], [convert $build files to toolchain format])dnl ])# _LT_PATH_CONVERSION_FUNCTIONS lasso-2.9.0/m4/PaxHeaders/ac_try_compile_java.m40000644000000000000000000000013114377347355016516 xustar0029 mtime=1677577965.00334971 30 atime=1754992887.027413603 30 ctime=1754993575.149134599 lasso-2.9.0/m4/ac_try_compile_java.m40000644000175000017500000000272414377347355020534 0ustar00bdauvergnebdauvergne##### http://autoconf-archive.cryp.to/ac_try_compile_java.html # # SYNOPSIS # # AC_TRY_COMPILE_JAVA # # DESCRIPTION # # AC_TRY_COMPILE_JAVA attempt to compile user given source. # # *Warning*: its success or failure can depend on a proper setting of # the CLASSPATH env. variable. # # Note: This is part of the set of autoconf M4 macros for Java # programs. It is VERY IMPORTANT that you download the whole set, # some macros depend on other. Unfortunately, the autoconf archive # does not support the concept of set of macros, so I had to break it # for submission. The general documentation, as well as the sample # configure.in, is included in the AC_PROG_JAVA macro. # # LAST MODIFICATION # # 2000-07-19 # # COPYLEFT # # Copyright (c) 2000 Devin Weaver # # Copying and distribution of this file, with or without # modification, are permitted in any medium without royalty provided # the copyright notice and this notice are preserved. AC_DEFUN([AC_TRY_COMPILE_JAVA],[ AC_REQUIRE([AC_PROG_JAVAC])dnl cat << \EOF > Test.java /* [#]line __oline__ "configure" */ ifelse([$1], , , [import $1;]) public class Test { [$2] } EOF if AC_TRY_COMMAND($JAVAC $JAVACFLAGS Test.java) && test -s Test.class then dnl Don't remove the temporary files here, so they can be examined. ifelse([$3], , :, [$3]) else echo "configure: failed program was:" >&AC_FD_CC cat Test.java >&AC_FD_CC ifelse([$4], , , [ rm -fr Test* $4 ])dnl fi rm -fr Test*]) lasso-2.9.0/m4/PaxHeaders/lt~obsolete.m40000644000000000000000000000013115046611451015057 xustar0030 mtime=1754993449.951753673 29 atime=1754993450.33574565 30 ctime=1754993575.161134347 lasso-2.9.0/m4/lt~obsolete.m40000644000175000017500000001400715046611451017072 0ustar00bdauvergnebdauvergne# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # # Copyright (C) 2004-2005, 2007, 2009, 2011-2019, 2021-2024 Free # Software Foundation, Inc. # Written by Scott James Remnant, 2004. # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 5 lt~obsolete.m4 # These exist entirely to fool aclocal when bootstrapping libtool. # # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN), # which have later been changed to m4_define as they aren't part of the # exported API, or moved to Autoconf or Automake where they belong. # # The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN # in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us # using a macro with the same name in our local m4/libtool.m4 it'll # pull the old libtool.m4 in (it doesn't see our shiny new m4_define # and doesn't know about Autoconf macros at all.) # # So we provide this file, which has a silly filename so it's always # included after everything else. This provides aclocal with the # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything # because those macros already exist, or will be overwritten later. # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. # # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. # Yes, that means every name once taken will need to remain here until # we give up compatibility with versions before 1.7, at which point # we need to keep only those names which we still refer to. # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) lasso-2.9.0/m4/PaxHeaders/ltsugar.m40000644000000000000000000000013115046611451014166 xustar0030 mtime=1754993449.927754174 29 atime=1754993450.33574565 30 ctime=1754993575.161134347 lasso-2.9.0/m4/ltsugar.m40000644000175000017500000001045315046611451016202 0ustar00bdauvergnebdauvergne# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # # Copyright (C) 2004-2005, 2007-2008, 2011-2019, 2021-2024 Free Software # Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 6 ltsugar.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) # lt_join(SEP, ARG1, [ARG2...]) # ----------------------------- # Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their # associated separator. # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier # versions in m4sugar had bugs. m4_define([lt_join], [m4_if([$#], [1], [], [$#], [2], [[$2]], [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) m4_define([_lt_join], [m4_if([$#$2], [2], [], [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) # lt_car(LIST) # lt_cdr(LIST) # ------------ # Manipulate m4 lists. # These macros are necessary as long as will still need to support # Autoconf-2.59, which quotes differently. m4_define([lt_car], [[$1]]) m4_define([lt_cdr], [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], [$#], 1, [], [m4_dquote(m4_shift($@))])]) m4_define([lt_unquote], $1) # lt_append(MACRO-NAME, STRING, [SEPARATOR]) # ------------------------------------------ # Redefine MACRO-NAME to hold its former content plus 'SEPARATOR''STRING'. # Note that neither SEPARATOR nor STRING are expanded; they are appended # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). # No SEPARATOR is output if MACRO-NAME was previously undefined (different # than defined and empty). # # This macro is needed until we can rely on Autoconf 2.62, since earlier # versions of m4sugar mistakenly expanded SEPARATOR but not STRING. m4_define([lt_append], [m4_define([$1], m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) # lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) # ---------------------------------------------------------- # Produce a SEP delimited list of all paired combinations of elements of # PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list # has the form PREFIXmINFIXSUFFIXn. # Needed until we can rely on m4_combine added in Autoconf 2.62. m4_define([lt_combine], [m4_if(m4_eval([$# > 3]), [1], [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl [[m4_foreach([_Lt_prefix], [$2], [m4_foreach([_Lt_suffix], ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) # lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) # ----------------------------------------------------------------------- # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited # by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. m4_define([lt_if_append_uniq], [m4_ifdef([$1], [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], [lt_append([$1], [$2], [$3])$4], [$5])], [lt_append([$1], [$2], [$3])$4])]) # lt_dict_add(DICT, KEY, VALUE) # ----------------------------- m4_define([lt_dict_add], [m4_define([$1($2)], [$3])]) # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) # -------------------------------------------- m4_define([lt_dict_add_subkey], [m4_define([$1($2:$3)], [$4])]) # lt_dict_fetch(DICT, KEY, [SUBKEY]) # ---------------------------------- m4_define([lt_dict_fetch], [m4_ifval([$3], m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) # ----------------------------------------------------------------- m4_define([lt_if_dict_fetch], [m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], [$5], [$6])]) # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) # -------------------------------------------------------------- m4_define([lt_dict_filter], [m4_if([$5], [], [], [lt_join(m4_quote(m4_default([$4], [[, ]])), lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl ]) lasso-2.9.0/m4/PaxHeaders/ac_check_classpath.m40000644000000000000000000000013114377347354016305 xustar0030 mtime=1677577964.999349691 30 atime=1754992887.003414094 29 ctime=1754993575.13713485 lasso-2.9.0/m4/ac_check_classpath.m40000644000175000017500000000455214377347354020324 0ustar00bdauvergnebdauvergne##### http://autoconf-archive.cryp.to/ac_check_classpath.html # # SYNOPSIS # # AC_CHECK_CLASSPATH # # DESCRIPTION # # AC_CHECK_CLASSPATH just displays the CLASSPATH, for the edification # of the user. # # Note: This is part of the set of autoconf M4 macros for Java # programs. It is VERY IMPORTANT that you download the whole set, # some macros depend on other. Unfortunately, the autoconf archive # does not support the concept of set of macros, so I had to break it # for submission. The general documentation, as well as the sample # configure.in, is included in the AC_PROG_JAVA macro. # # LAST MODIFICATION # # 2000-07-19 # # COPYLEFT # # Copyright (c) 2000 Stephane Bortzmeyer # # 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, see . # # As a special exception, the respective Autoconf Macro's copyright # owner gives unlimited permission to copy, distribute and modify the # configure scripts that are the output of Autoconf when processing # the Macro. You need not follow the terms of the GNU General Public # License when using or distributing such scripts, even though # portions of the text of the Macro appear in them. The GNU General # Public License (GPL) does govern all other use of the material that # constitutes the Autoconf Macro. # # This special exception to the GPL applies to versions of the # Autoconf Macro released by the Autoconf Macro Archive. When you # make and distribute a modified version of the Autoconf Macro, you # may extend this special exception to the GPL to apply to your # modified version as well. AC_DEFUN([AC_CHECK_CLASSPATH],[ if test "x$CLASSPATH" = x; then echo "You have no CLASSPATH, I hope it is good" else echo "You have CLASSPATH $CLASSPATH, hope it is correct" fi ]) lasso-2.9.0/m4/PaxHeaders/dps_xtra_classpath.m40000644000000000000000000000013214377347355016413 xustar0030 mtime=1677577965.007349729 30 atime=1754992887.031413522 30 ctime=1754993575.153134515 lasso-2.9.0/m4/dps_xtra_classpath.m40000644000175000017500000000513514377347355020427 0ustar00bdauvergnebdauvergne##### http://autoconf-archive.cryp.to/dps_xtra_classpath.html # # SYNOPSIS # # DPS_XTRA_CLASSPATH(,,,,) # # DESCRIPTION # # Set $1 to extra classpath components required for class $2 found in # a jar file in $3. If the class is found do $4 and otherwise do $5. # Uses DPS_JAVA_CHECK_CLASS for testing whether a class is avialable # # LAST MODIFICATION # # 2008-01-28 # # COPYLEFT # # Copyright (c) 2008 Duncan Simpson # # 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, see . # # As a special exception, the respective Autoconf Macro's copyright # owner gives unlimited permission to copy, distribute and modify the # configure scripts that are the output of Autoconf when processing # the Macro. You need not follow the terms of the GNU General Public # License when using or distributing such scripts, even though # portions of the text of the Macro appear in them. The GNU General # Public License (GPL) does govern all other use of the material that # constitutes the Autoconf Macro. # # This special exception to the GPL applies to versions of the # Autoconf Macro released by the Autoconf Macro Archive. When you # make and distribute a modified version of the Autoconf Macro, you # may extend this special exception to the GPL to apply to your # modified version as well. AC_DEFUN([DPS_XTRA_CLASSPATH],[ AC_CHECK_PROG(SED, sed) DPS_JAVA_CHECK_CLASS([$2],[got="yes"],[got="no"]) cpxtra=""; saved_cp="${CLASSPATH}"; for jhome in `ls -dr /usr/share/java /usr/java/* /usr/local/java/* 2> /dev/null`; do for jdir in lib jre/lib . ; do for jfile in $3; do if test "x$got" != "xyes" && test -f "$jhome/$jdir/$jfile"; then CLASSPATH="${saved_cp}:$jhome/$jdir/$jfile" DPS_JAVA_CHECK_CLASS([$2],[got="yes"; cpxtra="$jhome/$jdir/$jfile:"],[got="no"]) fi; done; done; done if test "x${saved_cp}" != "x"; then CLASSPATH="${saved_cp}" else unset CLASSPATH; fi if test "x$got" = "xyes"; then $1="$cpxtra" $4 true; else $5 false; fi ]) lasso-2.9.0/m4/PaxHeaders/ac_prog_javac_works.m40000644000000000000000000000013114377347355016527 xustar0029 mtime=1677577965.00334971 30 atime=1754992887.019413767 30 ctime=1754993575.145134683 lasso-2.9.0/m4/ac_prog_javac_works.m40000644000175000017500000000507314377347355020545 0ustar00bdauvergnebdauvergne##### http://autoconf-archive.cryp.to/ac_prog_javac_works.html # # SYNOPSIS # # AC_PROG_JAVAC_WORKS # # DESCRIPTION # # Internal use ONLY. # # Note: This is part of the set of autoconf M4 macros for Java # programs. It is VERY IMPORTANT that you download the whole set, # some macros depend on other. Unfortunately, the autoconf archive # does not support the concept of set of macros, so I had to break it # for submission. The general documentation, as well as the sample # configure.in, is included in the AC_PROG_JAVA macro. # # LAST MODIFICATION # # 2000-07-19 # # COPYLEFT # # Copyright (c) 2000 Stephane Bortzmeyer # # 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, see . # # As a special exception, the respective Autoconf Macro's copyright # owner gives unlimited permission to copy, distribute and modify the # configure scripts that are the output of Autoconf when processing # the Macro. You need not follow the terms of the GNU General Public # License when using or distributing such scripts, even though # portions of the text of the Macro appear in them. The GNU General # Public License (GPL) does govern all other use of the material that # constitutes the Autoconf Macro. # # This special exception to the GPL applies to versions of the # Autoconf Macro released by the Autoconf Macro Archive. When you # make and distribute a modified version of the Autoconf Macro, you # may extend this special exception to the GPL to apply to your # modified version as well. AC_DEFUN([AC_PROG_JAVAC_WORKS],[ AC_CACHE_CHECK([if $JAVAC works], ac_cv_prog_javac_works, [ JAVA_TEST=Test.java CLASS_TEST=Test.class cat << \EOF > $JAVA_TEST /* [#]line __oline__ "configure" */ public class Test { } EOF if AC_TRY_COMMAND($JAVAC $JAVACFLAGS $JAVA_TEST) >/dev/null 2>&1; then ac_cv_prog_javac_works=yes else true echo "configure: failed program was:" >&AC_FD_CC cat $JAVA_TEST >&AC_FD_CC fi rm -f $JAVA_TEST $CLASS_TEST ]) AC_PROVIDE([$0])dnl ]) lasso-2.9.0/m4/PaxHeaders/ac_prog_javac.m40000644000000000000000000000013114377347355015302 xustar0029 mtime=1677577965.00334971 30 atime=1754992887.015413849 30 ctime=1754993575.145134683 lasso-2.9.0/m4/ac_prog_javac.m40000644000175000017500000000616014377347355017316 0ustar00bdauvergnebdauvergne##### http://autoconf-archive.cryp.to/ac_prog_javac.html # # SYNOPSIS # # AC_PROG_JAVAC # # DESCRIPTION # # AC_PROG_JAVAC tests an existing Java compiler. It uses the # environment variable JAVAC then tests in sequence various common # Java compilers. For political reasons, it starts with the free # ones. # # If you want to force a specific compiler: # # - at the configure.in level, set JAVAC=yourcompiler before calling # AC_PROG_JAVAC # # - at the configure level, setenv JAVAC # # You can use the JAVAC variable in your Makefile.in, with @JAVAC@. # # *Warning*: its success or failure can depend on a proper setting of # the CLASSPATH env. variable. # # TODO: allow to exclude compilers (rationale: most Java programs # cannot compile with some compilers like guavac). # # Note: This is part of the set of autoconf M4 macros for Java # programs. It is VERY IMPORTANT that you download the whole set, # some macros depend on other. Unfortunately, the autoconf archive # does not support the concept of set of macros, so I had to break it # for submission. The general documentation, as well as the sample # configure.in, is included in the AC_PROG_JAVA macro. # # LAST MODIFICATION # # 2000-07-19 # # COPYLEFT # # Copyright (c) 2000 Stephane Bortzmeyer # # 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, see . # # As a special exception, the respective Autoconf Macro's copyright # owner gives unlimited permission to copy, distribute and modify the # configure scripts that are the output of Autoconf when processing # the Macro. You need not follow the terms of the GNU General Public # License when using or distributing such scripts, even though # portions of the text of the Macro appear in them. The GNU General # Public License (GPL) does govern all other use of the material that # constitutes the Autoconf Macro. # # This special exception to the GPL applies to versions of the # Autoconf Macro released by the Autoconf Macro Archive. When you # make and distribute a modified version of the Autoconf Macro, you # may extend this special exception to the GPL to apply to your # modified version as well. AC_DEFUN([AC_PROG_JAVAC],[ AC_REQUIRE([AC_EXEEXT])dnl if test "x$JAVAPREFIX" = x; then test "x$JAVAC" = x && AC_CHECK_PROGS(JAVAC, "gcj$EXEEXT -C" jikes$EXEEXT guavac$EXEEXT javac$EXEEXT) else test "x$JAVAC" = x && AC_CHECK_PROGS(JAVAC, "gcj$EXEEXT -C" jikes$EXEEXT guavac$EXEEXT javac$EXEEXT, $JAVAPREFIX) fi true AC_PROG_JAVAC_WORKS AC_PROVIDE([$0])dnl ]) lasso-2.9.0/m4/PaxHeaders/ac_prog_jar.m40000644000000000000000000000013114377347355014772 xustar0029 mtime=1677577965.00334971 30 atime=1754992887.007414013 30 ctime=1754993575.141134766 lasso-2.9.0/m4/ac_prog_jar.m40000644000175000017500000000271214377347355017005 0ustar00bdauvergnebdauvergne##### http://autoconf-archive.cryp.to/ac_prog_jar.html # # SYNOPSIS # # AC_PROG_JAR # # DESCRIPTION # # AC_PROG_JAR tests for an existing jar program. It uses the # environment variable JAR then tests in sequence various common jar # programs. # # If you want to force a specific compiler: # # - at the configure.in level, set JAR=yourcompiler before calling # AC_PROG_JAR # # - at the configure level, setenv JAR # # You can use the JAR variable in your Makefile.in, with @JAR@. # # Note: This macro depends on the autoconf M4 macros for Java # programs. It is VERY IMPORTANT that you download that whole set, # some macros depend on other. Unfortunately, the autoconf archive # does not support the concept of set of macros, so I had to break it # for submission. # # The general documentation of those macros, as well as the sample # configure.in, is included in the AC_PROG_JAVA macro. # # LAST MODIFICATION # # 2000-07-19 # # COPYLEFT # # Copyright (c) 2000 Egon Willighagen # # Copying and distribution of this file, with or without # modification, are permitted in any medium without royalty provided # the copyright notice and this notice are preserved. AC_DEFUN([AC_PROG_JAR],[ AC_REQUIRE([AC_EXEEXT])dnl if test "x$JAVAPREFIX" = x; then test "x$JAR" = x && AC_CHECK_PROGS(JAR, jar$EXEEXT) else test "x$JAR" = x && AC_CHECK_PROGS(JAR, jar, $JAVAPREFIX) fi true AC_PROVIDE([$0])dnl ]) lasso-2.9.0/m4/PaxHeaders/ac_prog_javah.m40000644000000000000000000000013114377347355015307 xustar0029 mtime=1677577965.00334971 30 atime=1754992887.023413686 30 ctime=1754993575.149134599 lasso-2.9.0/m4/ac_prog_javah.m40000644000175000017500000000244314377347355017323 0ustar00bdauvergnebdauvergne##### http://autoconf-archive.cryp.to/ac_prog_javah.html # # SYNOPSIS # # AC_PROG_JAVAH # # DESCRIPTION # # AC_PROG_JAVAH tests the availability of the javah header generator # and looks for the jni.h header file. If available, JAVAH is set to # the full path of javah and CPPFLAGS is updated accordingly. # # LAST MODIFICATION # # 2002-03-25 # # COPYLEFT # # Copyright (c) 2002 Luc Maisonobe # # Copying and distribution of this file, with or without # modification, are permitted in any medium without royalty provided # the copyright notice and this notice are preserved. AC_DEFUN([AC_PROG_JAVAH],[ AC_REQUIRE([AC_CANONICAL_SYSTEM])dnl AC_REQUIRE([AC_PROG_CPP])dnl test "x$JAVAH" = x && AC_CHECK_PROGS(JAVAH,gjavah gcjh javah) if test "x$JAVAH" != x ; then AC_TRY_CPP([#include ],,[ ac_save_CPPFLAGS="$CPPFLAGS" changequote(, )dnl ac_dir=`echo $ac_cv_path_JAVAH | sed 's,\(.*\)/[^/]*/[^/]*$,\1/include,'` ac_machdep=`echo $build_os | sed 's,[-0-9].*,,' | sed 's,cygwin,win32,'` changequote([, ])dnl CPPFLAGS="$ac_save_CPPFLAGS -I$ac_dir -I$ac_dir/$ac_machdep" AC_TRY_CPP([#include ], ac_save_CPPFLAGS="$CPPFLAGS", AC_MSG_WARN([unable to include ])) CPPFLAGS="$ac_save_CPPFLAGS"]) else true fi]) lasso-2.9.0/PaxHeaders/README.JAVA0000644000000000000000000000013113766621500013326 xustar0029 mtime=1608196928.71889494 30 atime=1754992978.153544812 30 ctime=1754993575.205133426 lasso-2.9.0/README.JAVA0000644000175000017500000000044613766621500015343 0ustar00bdauvergnebdauvergneIn order to use gcj to compile the java binding, you must also have development files of libgcj. On Debian systems that translates to: - gcj 3.3 -> libgcj4-dev - gcj 3.4 -> libgcj5-dev - gcj 4.0 -> libgcj6-dev - gcj 4.1 -> libgcj7-dev - gcj 4.2 -> libgcj8-dev - gcj 4.3 -> libgcj9-dev lasso-2.9.0/PaxHeaders/NEWS0000644000000000000000000000013115046610454012424 xustar0029 mtime=1754992940.27432282 30 atime=1754992940.306322165 30 ctime=1754993575.181133929 lasso-2.9.0/NEWS0000664000175000017500000012224715046610454014447 0ustar00bdauvergnebdauvergneNEWS ==== 2.9.0 - August 12th 2025 ------------------------ 78 commits, 225 files changed, 3476 insertions(+), 6776 deletions(-) - Fix symbol deprecation of XMLSEC_CRYPTO macro in libxmlsec 1.3.0 (Patch provided by Simo Sorce of RedHat) (#78280) - Fix implicit function declaration errors, patch provided by Rob Crittenden from RedHat (#85340) - Fix proper selection of SHA512 in lasso_xmlnode_add_saml2_signature_template (#93018) - Perl: fix leak of char* in return of functions (#55510) - Perl: fix leak of xmlBuffer in xmlnode_to_tpv (#55510) - xml: do not ignore unexpected text content (#105693) - tests: check assignement of any_attribute is prevented (#105693) - xml: do not terminate on an unknown XML node type (#105693) - misc: check xmlSecGetNodeNsHref for possible NULL result (#105693) - xml: prevent assignment of attribute value inside any attribute - misc: never return CDATA nodes, include them in text value (#105693) - tests: test that inserted comment do not change node value and still validate signature (#105693) - autogen.sh: add support for automake up to 1.18 (#107955) - autotools: use sysconfig module when distutils not available (#105650) - tests: fix python bindings tests for Python 3.14 (#105622) - xml: fix SAML 1.1 AttributeValue snippet flag (#102374) - registry: fix lasso_registry_destroy private declaration (#101250) - bindings: fix lasso_provider_get_key_encryption_method export (#101250) - Improve differentiation of Redirect from POST messages (#97575) - Annotate lasso_*_signature_method functions with LASSO_EXPORT (#86076) - Adjust to structured error callback argument change in libxml2 2.12, patch provided by Florian Wiemer of RedHat (#86080) - all private_data public fields have been depreciated (but not removed to keep ABI compatibilityy) and new GLib API for private data is used (#42073) - python-six is no more used in the python bindings (#94580) - new public function lasso_provider_verify_saml_signature (#92412) 2.8.2 - March 14th 2023 ----------------------- - Compatibility with EVP API of openssl 1.x, thanks to Maxime Besson from Worteks. 2.8.1 - February 28th 2023 -------------------------- - Major overhaul of OpenSSL API usage by using only the EVP API as the low level API (RSA*, HMAC*) is deprecated. - Fix wrong parsing of Count attribute on saml:ProxyRestriction, thanks to Maxime Besson from Worteks. - Perl: pass LDFLAGS to Makefile.PL - Replace use of deprecated xmlSecBase64Decode by xmlSecBase64Decode_ex - Fix overwrite of profile.signature_status in lasso_saml20_login_process_response_status_and_assertion - Fix lot of GCC warnings 2.8.0 - March 15th 2022 ----------------------- 22 commits, 585 files changed, 2448 insertions, 69478 deletions * Removal of all win32 and ID-WSF related source code obsoleted a long time ago * Improve choice of signature method and of allowed signature method (by Jakub * Hrozek ), it's now possible to completely forbid SHA1 for example * Change default RSA encryption padding to OAEP * Fix: HMAC signature other than SHA1 (jhrozek@redhat.com) * Fix: prevent multiple OneTimeUse elements 2.7.0 - June 1st 2021 ---------------------- 36 commits, 45 files changed, 1945 insertions, 177 deletions * CVE-2021-28091: Fix signature checking on unsigned response with multiple assertions https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-28091 When AuthnResponse messages are not signed (which is permitted by the specifiation), all assertion's signatures should be checked, but currently after the first signed assertion is checked all following assertions are accepted without checking their signature, and the last one is considered the main assertion. This patch : * check signatures from all assertions if the message is not signed, * refuse messages with assertion from different issuers than the one on the message, to prevent assertion bundling event if they are signed. * Python: improve display of warnings in the binding generator * replace deprecated index() by strchr() (#51385) * Fix: new provider reference count is incremented one time too many (#51420) * docs: update gtk-doc-tools integration (#50441) * bindings: disable java tests when java is disabled * Fix: python3 bindings (#51249) * configure.ac: disable java bindings * build: update to use origin/main * debian: add packaging for debian-buster * jenkins.sh: build against all available python versions (#44287) * python: do not leak out_pyvalue if method call protocol is not respected (#44287) * python: do not raise in valid_seq() (#44287) * python: return NULL if get_list_of_strings() fails (#44287) * python: return NULL if get_list_of_pygobject fails (#44287) * python: return NULL if get_list_of_xml_nodes fails (#44287) * python: return NULL if set_list_of_pygobject fails (#44287) * python: return NULL if set_list_of_xml_nodes fails (#44287) * python: return NULL if set_list_of_strings fails (#44287) * python: return NULL if set_hashtable_of_strings fails (#44287) * python: return NULL if set_hashtable_of_pygobject fails (#44287) * python: free internal string buffer if needed in set_list_of_strings (#44287) * python: check if hashtable is NULL before deallocatio (#44287)n * python: add a failure label to method wrappers (#44287) * python: add macro for early return (#44287) * python: remove newline before method call (#44287) * python: simplify get_logger_object (#44287) * python: fix warning about discarded const modifier (#44287) * python: replace exception by warning on logging path (#44287) * python: use simpler call format to prevent warning about PY_SSIZE_T_CLEAN (#44287) * python: remove deprecated PyErr_Warn (#44287) * python: remove unused PyString_Size (#44287) * python: Exception.message was removed in python3 (#45995) * tools: reimplement xmlURIEscapeStr to respect RFC3986 (#45581) * configure.ac: support php7 interpreter on CentOS 8 (#42299) 2.6.1 - April 22th 2020 ---------------------- 42 commits, 425 files changed, 3894 insertions, 795 deletions - Keep order of SessionIndexes - Clear SessionIndex when private SessionIndexes is empty (#41950) - misc: clear warnings about class_init signature using coccinelle - tests: fix compilation with check>0.12 (#39101) - Sort input file lists to make build deterministic (#40454) - debian: disable php7 (#28608) - Modify .gitignore for PHP 7 binding (#28608) - Add PHP 7 binding (#28608) - Fix tests broken by new DEBUG logs (#12829) - Improve error logging during node parsing (#12829) - Improve configure compatibility (#32425) - Improve compatibility with Solaris (#32425) - Fix reference count in lasso_server_add_provider2 (fixes #35061) - Fix python multi-version builds on jessie and stretch - docs: do not use Internet to fetch DTDs, entities or documents (#35590) - fix missing include for index() (fixes #33791) - PAOS: Do not populate "Destination" attribute (Dmitrii Shcherbakov) - export symbol lasso_log (#33784) - Do not ignore WantAuthnRequestSigned value with hint MAYBE (#33354) - Use io.open(encoding=utf8) in extract_symbols/sections.py (#33360) - xml: adapt schema in saml2:AuthnContext (#29340) - Fix ECP signature not found error when only assertion is signed (#26828) - autoconf: search python interpreters by versions (John Dennis) - python: make tools compatible with Py3 (John Dennis) - python: run tests and tools with same interpreter as binding target (John Dennis) - improve resiliency of lasso_inflate (#24853) - fix segfault in lasso_get_saml_message (#24830) - python: add classmethod Profile.getIssuer (#24831) - website: add news about 2.6.0 release - debian: sync with debian package (#24595) - faq: fix references to lasso.profileGetIssuer (#24832) - python: add a classmethod for lasso.profileGetIssuer (#24831) - tools: fix segfault in lasso_get_saml_message (fixes #24830) - jenkins.sh: add a make clean to prevent previous build to break new ones - tools: set output buffer size in lasso_inflate to 20 times the input size (fixes #24853) - Use python interpreter specified configure script - Make Python scripts compatible with both Py2 and Py3 - fix duplicate definition of LogoutTestCase and logoutSuite - Downcase UTF-8 file encoding name - Make more Python scripts compatible with both Py2 and Py3 - Configure should search for versioned Python interpreter. - Clean python cache when building python3 binding - Move AC_SUBST declaration for AM_CFLAGS with alike (#24771) - Remove -Werror from --enable-debugging (fixes #24771) - xml: fix parsing of saml:AuthnContext (fixes #25640) 2.6.0 - June 1st 2018 --------------------- 32 commits, 73 files changed, 1920 insertions, 696 deletions - add inline implementation of lasso_log - Choose the Reference transform based on the chosen Signature transform (fixes #10155) - add support for C14N 1.1 methods and C14N withComments methods (fixes #4863) - remove DGME specific commented out code - add docstring on SHA-2 signature method enum - tests: silence unused variable warning - check node names in lasso_node_impl_init_from_xml() (fixes #47) - fix segfault when parsed node has no namespace (#47) - do not call xmlSecKeyDuplicate is source key is NULL - enable user supplied CFLAGS - Fix ecp test validate_idp_list() (fixes #11421) - tests: convert log level as string - fix definitions of error, critical and warning macros (fixes #12830) - jenkins.sh: add V=1 - add defined for the XML namespace - ignore unknown attributes from the xsi: namespace - saml-2.0: improve support for free content inside samlp2:Extensions (fixes #18581) - debian: initialize stretch packaging with a copy of upstream debian (#21772) - replace use of which is deprecated (fixes #18771) - fix get_issuer and get_in_response_to - route logs from libxml2 and libxmlsec through GLib logging - tests: prevent crash in glib caused by abort on recursive logging - java: stop setting a bytecode version target - add xmlsec_soap.h to Makefile - python: route logs for libxml2 and libxmlsec2 to their own logger - perl: force use of the in-tree lasso when running tests (fixes #23276) - perl: set DESTDIR and PREFIX at Makefile's creation - Replace xmlSecSoap functions with lasso implementations - add a pem-public-key runtime flag - deprecate loading PEM formatted public keys in lasso_xmlsec_load_key_info - perl/tests: build Makefile.perl before running the tests 2.5.1 - February 19th 2016 --------------------------- 17 commits, 16 files changed, 1096 insertions, 42 deletions - Add missing urn constants used in PAOS HTTP header - Set NotBefore in SAML 2.0 login assertions - tests: fix leak in test test16_test_get_issuer - id-ff: fix leak of profile->private_data->message_id - saml-2.0: fix leak of message_id in lasso_profile_saml20_build_paos_request_msg - tests: fix leaks in test_ecp - xml: fix wrong termination of comment - xml: fix leak in lasso_soap_envelope_new_full - profile: fix leak of private idp_list field - saml-2.0: fix leaks of url - tests: fix leak - tests: update valgrind suppressions - perl: remove quotes from $PERL -V::ccflags: output (#9572) - Fix wrong snippet type (fixes #9616). Thanks to Brett Gardner for the patch. - tools.c: use correct NID and digest length when building RSA signature using SHA-2 digest (fixes #10019) Thanks to Brett Gardner for the patch. - bindings/php5: fix enum getters and setters (fixes #10032). Thanks to Brett Gardner for the bug report. - fix warning about INCLUDES directive 2.5.0 - September 2nd 2015 -------------------------- 151 commits, 180 files changed, 8391 insertions, 1339 deletions - lots of bugfixes (reported by static analysis tools like clang, coverity and manual inspection) thanks to Simo Sorce and John Dennis from RedHat - xsd:choices are now parsed correctly by implementing a real finite automata for parsing XML documents. New flag for jumping forward and backward in schema snippets have been added. It fixes parsing of message from third party not following the ordre from the schema (they are entitled to do it but most SAML implementations do not) - added C CGI examples for SP and IdP side - removed the _POSIX_SOURCE declaration - added support for the SHA-2 family of hash functions - fixed protocol profile selection when parsing AuthnRequest - added support for Python 3, thanks to Houzéfa Abbasbhay from XCG Consulting - fixed default value of WantAuthnRequestSigned in metadata parsing - SAML 2.0 ECP is now functionnal, thanks to John Dennis from RedHat - added two new API function to LassoProfile to extract the Issuer and InResponseTo attribute of messages, allowing pre-treatment before parsing the message, to load the metadata of the remote provider, or find the request which the response matches. - fixed segfault when parsing HTTP-Redirect marlformed base64 content - added support for automake 1.15 (jdennis) 2.4.1 - August 28th 2014 --------------------------- 56 commits, 35 files changed, 12590 insertions(+), 31117 deletions(-) - fix bug #4455 runtime bug in perl binding on debian wheezy 32bits # - fix warning on g_type_init() on GLib > 2.36 - lot of null pointer, boundary checks, and dead code removal after validation using Coverity and Clang static analyzer (Simo Sorce) - always set NotOnOrAfter on the Condition element - fix pkg-config typo (Simon Josefsson) - Python binding now conserve the order of session indexes values - fix memory leaks - Python bindings now automatically convert unicode values to UTF-8 2.4.0 - January 7th 2014 ------------------------ 281 commits, 933 files changed, 45384 insertions, 6313 deletions Minor version number increase since ABI was extended (new methods). - Key rollover support: Lasso is now able to accept messages signed by any key declared as a signing key in a metadata and not just the last one. You can also decrypt encrypted nodes using any of a list of private keys, allowing roll-over of encryption certificates. Signing key roll-over is automatic, your provider just have to provide the new signing key in their metadata. For multiple-encryption key you can load another private key than the one loaded in the LassoServer constuctor with code like that: >>> import lasso >>> server = lasso.Server(our_metadata, first_private_key_path) >>> server.setEncryptionPrivateKey(second_private_key_path) See the FAQ file for the workflow of a proper key roll-over. - Partial logout response now produces a specific error code when parsed by lasso_logout_process_response_msg() - Bugs in lasso_assertion_query_build_request_msg() were fixed - Processing of assertions is not stopped when checking that first level status code is not success, so that later code can check the second level status code. - A new generic error for denied request was added, LASSO_PROFILE_ERROR_REQUEST_DENIED - A new API lasso_server_load_metadata() was added to load federation files (XML files containing metadata from multiple providers) and to check signatures on them. - Better warning and errors are reported in logs when failing to load a metadata file. - Bugs around missing namespace declaration for dump file were fixed, it prevented reloading dumped object (like LassoLogin). - lasso_node_get_xml_node_for_any_type() must be able to copy the content of an XML node to another (namespace, attribute and children). It did not, now it is fixed. It can be used for example to add specific attribute like « xsi:type="string" » to a Saml2AttributeValue. Here is a python snippet to do that: >>> import lasso >>> a = lasso.Saml2AttributeValue() >>> a.setOriginalXmlnode('Value') >>> print a.debug(0) Value - support for symetric keys signatures: for a long time XMLDsig standard has supported HMAC signature, or signature based on a shared secret key an hash algorithm. Lasso now supports to share a key with another Lasso using service or identity provider and to verify and sign SAML exchange using this key. Performance can be 100 times more than with assymetric cryptography, i.e. RSA. - nodes able to hold any XML attribyte (like saml:AttributeValue) contains a hashtable to for holding those attributes, those hashtable have a new syntax for attributes of another namespace than the current node namespace, inspired by the Python ElementTree library: {the_namespace}the_attribute_name ex: {http://www.w3.org/2001/XMLSchema-instance}type for the classic xsi:type attribute. - xmldsig:X509Data node now possess a binding as a Lasso object. You can use it combined with the new class LassoSaml2KeyInformationDataType to use the holder-of-key subject confirmation method. - The perfs benchmarking tools now allows to select a different metadata set (for example to test with different public key sizes). - Perl minimal version for the binding was downgraded to 5 - pseudo-XSchema validation: the new XML deserializer does more to enforce constraints of the schema defining SAML messages. It means Lasso is less forgiving with non-conform implementation of SAML. - thin-sessions mode: A new flag was added named thin-session, you can set it using lasso_set_flag("thin-sessions") or by setting the LASSO_FLAG environement variable to the string "thin-sessions". The effect of this flag is to remove complete storage of assertions in the LassoSession object, which was made mainly to support logout and the artifact binding for ID-FF 1.2. A new thinner structure is used for supporting logout, and ID-FF 1.2 can now use the same storage mechanism as the SAML 2 implementation for the artifact binding (i.e. using lasso_profile_get_artifact_message after artifact generation and lasso_profile_set_artifact_message before artifact retrieval). - better initialization and access to SessionIndex in logout requests: LassoSession now store all generated SessionIndex for a session using a small structure, using it the LassoLogout profile can now initialize LassoLogout message with all of them. It's not necessary to implement this functionnalitý in your service or identity provider anymore. - new LassoKey object: this new class was introduced to simplify management of keys when using shared key signature. But you can also use it to load assymetric keys. In the future it should gain API to do XML signature and encryptiong independently of any SAML 2.0 or ID-FF 1.2 exchange. Providing the first simple binding of libxmlsec to Python. - Improvements to autoconf and automake files to compile under Darwin (Mac Os X) and Fedora. - a FAQ file was started. - added API: LASSO_LOGOUT_ERROR_PARTIAL_LOGOUT LASSO_PROFILE_ERROR_ENDPOINT_INDEX_NOT_FOUND LASSO_PROFILE_ERROR_REQUEST_DENIED LASSO_PROVIDER_ROLE_ALL LASSO_SERVER_ERROR_NO_PROVIDER_LOADED LASSO_SERVER_LOAD_METADATA_FLAG_CHECK_ENTITIES_DESCRIPTOR_SIGNATURE LASSO_SERVER_LOAD_METADATA_FLAG_CHECK_ENTITY_DESCRIPTOR_SIGNATURE LASSO_SERVER_LOAD_METADATA_FLAG_DEFAULT LASSO_SERVER_LOAD_METADATA_FLAG_INHERIT_SIGNATURE LASSO_SIGNATURE_METHOD_HMAC_SHA1 LASSO_SIGNATURE_METHOD_NONE LASSO_XMLENC_ERROR_INVALID_ENCRYPTED_DATA LASSO_XMLENC_HREF LASSO_XMLENC_PREFIX struct LassoDsX509Data { LassoDsX509DataPrivate* private_data } struct LassoKey { LassoKeyPrivate* private_data } struct LassoSaml2KeyInfoConfirmationDataType { LassoSaml2KeyInfoConfirmationDataTypePrivate* private_data } LassoServerLoadMetadataFlag LassoDsX509Data* lasso_ds_key_value_get_x509_data ( LassoDsKeyValue* key_value ) None lasso_ds_key_value_set_x509_data ( LassoDsKeyValue* key_value, LassoDsX509Data* x509_data ) const char* lasso_ds_x509_data_get_certificate ( LassoDsX509Data* x509_data ) const char* lasso_ds_x509_data_get_crl ( LassoDsX509Data* x509_data ) const char* lasso_ds_x509_data_get_subject_name ( LassoDsX509Data* x509_data ) GType lasso_ds_x509_data_get_type ( ) LassoDsX509Data* lasso_ds_x509_data_new ( ) None lasso_ds_x509_data_set_certificate ( LassoDsX509Data* x509_data, const char* certificate ) None lasso_ds_x509_data_set_crl ( LassoDsX509Data* x509_data, const char* crl ) None lasso_ds_x509_data_set_subject_name ( LassoDsX509Data* x509_data, const char* subject_name ) GType lasso_key_get_type ( ) LassoKey* lasso_key_new_for_signature_from_base64_string ( char* base64_string, char* password, LassoSignatureMethod signature_method, char* certificate ) LassoKey* lasso_key_new_for_signature_from_file ( char* filename_or_buffer, char* password, LassoSignatureMethod signature_method, char* certificate ) char* lasso_key_query_sign ( LassoKey* key, const char* query ) lasso_error_t lasso_key_query_verify ( LassoKey* key, const char* query ) xmlNode* lasso_key_saml2_xml_sign ( LassoKey* key, const char* id, xmlNode* document ) lasso_error_t lasso_key_saml2_xml_verify ( LassoKey* key, char* id, xmlNode* document ) GList* lasso_lib_logout_request_get_session_indexes ( LassoLibLogoutRequest* lib_logout_request ) None lasso_lib_logout_request_set_session_indexes ( LassoLibLogoutRequest* lib_logout_request, GList* session_indexes ) lasso_error_t lasso_provider_add_key ( LassoProvider* provider, LassoKey* key, gboolean after ) lasso_error_t lasso_provider_set_server_signing_key ( LassoProvider* provider, LassoKey* key ) int lasso_provider_verify_signature ( LassoProvider* provider, const char* message, const char* id_attr_name, LassoMessageFormat format ) GList* lasso_saml2_key_info_confirmation_data_type_get_key_info ( LassoSaml2KeyInfoConfirmationDataType* kicdt ) GType lasso_saml2_key_info_confirmation_data_type_get_type ( ) LassoNode* lasso_saml2_key_info_confirmation_data_type_new ( ) None lasso_saml2_key_info_confirmation_data_type_set_key_info ( LassoSaml2KeyInfoConfirmationDataType* kicdt, GList* key_infos ) gboolean lasso_saml_name_identifier_equals ( LassoSamlNameIdentifier* a, LassoSamlNameIdentifier* b ) lasso_error_t lasso_server_add_provider2 ( LassoServer* server, LassoProvider* provider ) lasso_error_t lasso_server_load_metadata ( LassoServer* server, LassoProviderRole role, const gchar* federation_file, const gchar* trusted_roots, GList* blacklisted_entity_ids, GList** loaded_entity_ids, LassoServerLoadMetadataFlag flags ) GList* lasso_session_get_assertion_ids ( LassoSession* session, const gchar* providerID ) GList* lasso_session_get_name_ids ( LassoSession* session, const gchar* providerID ) GList* lasso_session_get_session_indexes ( LassoSession* session, const gchar* providerID, LassoNode* name_id ) 2.3.6 - November 29th 2011 -------------------------- 2 commits, 2 files changed, 28 insertions, 2 deletions * fix a bug when receiving a signature using the InclusiveNamespaces PrefixList by copying namespace declaration from upper level at the level of the signed node. * fix compilation warning on recent version of GCC 2.3.5 - January 11th 2010 ------------------------- 36 commits, 31 files changed, 240 insertions, 92 deletions Generic: * add more backward compatible replacement for GHashTable methods (to compile under centos5) * a generic way to attach encryption parameters to LassoNode has been added, a future major release should see the removal of specific field for storing those parameters in node supporting encryption. * The way we format encrypted node is now more compatible with Shibboleth and I hope with other implementations: the KeyInfo is kept inside the EncryptedData element, and not repeated inside a child of the EncryptedElement. * Fixed: LASSO_SIGNATURE_VERIFY_HINT_FORCE did not force checking signature on messages * Fixed: lasso_provider_get_first_http_method broke when an unknown binding was found in an endpoint declaration SAMLv2: * Fixed: segfault when checking signature on logout responses (introduced in 2.3.4) * SPNameQualifier is more set on subject NameID of assertions, as it should be reserved for Affiliation members (and it broke shibboleth which only expect this to be used for affiliation, wrongly I think). * Conditions->notBefore/notOnOrAfter is motre setted by lasso_login_build_assertion, only notOnOrAfter on SubjectConfirmationData, which is more inline with the specification. * the logout profile now use the session to initialize the NameID in requests, not the identity. It allow to have a transient federation in the session but a persistent one in the identity * fixed support for the POST binding * Fixed: it seems that strtol does not reset errno under Centos 5, we do it by hand. Python binding: * constructors now raise a lasso.Error instead of a simple Exception when failing PHP5 binding: * removed dependency upon an internal function of liblasso3 2.3.4 - Otober 8th 2010 ----------------------- 21 commits, 18 files changed, 312 insertions, 58 deletions Generic * fix warning for compiling on Pardus and EL5 * the release tarball now contains the figures for the documentation * lasso_login_process_authn_request documentation gained details on returned errors SAMLv2: * report unknown provider instead of an error on parameter value when resolving and artifact in an assertionConsumer endpoint and the provider is not registered into the server object. * lasso_provider_get_assertion_consumer_url now use specific SAMLv2 methods * fixed a bug in the ordering of indexed endpoints which produced error when looking up the default assertion consumer. It also improved ordering in presence of the attribute isDefault="false". A non-regression test was added for this functionality. ID-FFv1.2: * respect the signature verify hint when handling authn requests 2.3.3 - October 1st 2010 ------------------------ 44 commits, 264 files changed, 858 insertions, 401 deletions Generic: * Fixed a lot of memleaks thanks to valgrind, the greatest tool on earth (with coccinelle). * Add missing annotation creating memleaks in python binding (on lasso_*_dump king of methods). * Fix bad inclusion of an ID-WSF include file when ID-WSF support is not enabled * Benchmarking program was updated to measure each part of a WebSSO independently (AuthnRequest generation/processing, AuthnResponse generation/processing). * Add new macro lasso_strisequal and lasso_strisnotequal to avoid errors with strcmp. (Thanks to coccinelle semantic patches). SAMLv2: * Add uniform support for LassoProfileVerifySignatureHint for other profiles than WebSSO. * Report signature errors in response to NameIDNanagement requests * Fix wrong use of macro lasso_foreach breaking the mecanism for finding a default assertion consumer. * Behaviour of lasso_login_build_assertion was modified: - when the NameIDPolicy lacks a Format attribute or the Format attribute is the unspecified format (see the spec for the corresponding URN). Now it results in a transient nameid being generated. If you want it to be persistent you must change it before calling this method. - the setting of the SubjectConfirmationData->NotOnOrAfter attribute was restored as it is mandated by the WebSSO profile. It's the same value as Conditions->NotOnOrAfter. * Fix missing initialization of Destination attribute on Samlp2StatusResponse object for synchronous bindings (Redirect & Post) 2.3.2 - September 7th 2010 -------------------------- * Fix bug in increment of the libtool version info, increasing the SONAME uselessly. 2.3.1 - September 7th 2010 -------------------------- 31 commits, 23 files changed, 523 insertions, 356 deletions * An ABI breakage was introduced in 2.3.0 with change of value for enumeration values LASSO_PROVIDER_ROLE_SP and LASSO_PROVIDER_ROLE_IDP, it breaked code compiled with previous version and dumps of server objects. This release fix it. * SAMLv2 handling of the artifact binding for the WebSSO profile is now simpler, no more dumping of the response nodes and signing at the artifact building time, the final response is signed when the artifact is generated and when unserialized later it is only manipulated as XML for not breaking the signature. It fixes usage of ciphered private keys with the HTTP-Artifact binding. * SAMLv2 internal storage of endpoints was modified to better keep the ordering between endpoints, which is espacially important for AssertionConsumerService endpoints and difficult to implement well. 2.3.0 - July 21th 2010 ---------------------- 391 commits, 332 files changed, 13919 insertions, 7137 deletions So what's new ? * Misc: - a public key is no more mandatory for building a LassoProvider - date parsing now conforms to XSD and ISO8601 specification, especially with respect to milliseconds (they are just ignored, but parsing do not fails now). - the encryption private key can be loaded with a password (SAMLv2 support only) - keep on replacing direct glib data structure manipulation function by safer lasso macros. - remove useless verbosity when there is already some error reporting through method return value. - add a signature_verify_hint parameter to all profiles, which can be used to specify the policy for verifying signatures. The choices are: - maybe, i.e. let Lasso decides, - force, i.e. always verify, even when it is not needed by the spec, - ignore, i.e. verify, but do not block processing on signature verifications error. - add a new snippet type: SNIPPET_COLLECT_NAMESPACES, to collect all declared namespaces in the context of a node. It is needed for interpreting a string value which depend on the locally declared namespaces (like XPath queries). - support full syntax for query strings (lasso missed support for semi-colon separator between query string key-value pairs). - make LassoServer load its public key like LassoProvider - lasso_build_unique_id is now part of the public API - add lasso_profile_sso_role_with to decide on the role we have toward another provider (depending on the Identity, the Session or the Server object in this order). - add a lasso_node_debug method wich output a human friendly dump (i.e. indented) of a serialized LassoNode, contrary to dump which returns a computer friendly one (dump will conserve signature values, not debug). * SAMLv2: - constraint on the number of SessionIndex value in a LogoutRequest was worked-around (see lasso_samlp2_logout_request_get/set_session_indexes) - full support for encrypted signing key (ID-FFv1.2 is coming in next release) - The treatment of assertions consumer endpoints metadata was improved to be what the specification says, i.e find the best default. - lasso_assertion_query_build_request_msg now properly initialize the Subject of the query from all possibles sources (first profile->nameIdentifier, then from the identity dump and finally from the session). - when a parsed Assertion contains a signature, we return the original_xmlnode instead of serializing the LassoNode content when calling lasso_node_get_xmlNode. This is in order to keep canonical representation of signed assertions. The result is that parsed and signed assertions should be considered read-only with respect to serialization. - lasso_login_build_assertion no longer initialize sessionNotOnOrAfter, it must be done explicitely by the IdP implementation. Only the assertion lifetime is set by the arguments. - when loading metadata for a provider, we verify that a role descriptor exists for the prescribed role: i.e if you do server.addProvider(lasso.PROVIDER_ROLE_SP, "metadata.xml"), lasso checks that the metadata contain a descriptor for the role "SPSSO". - new helper methods to manipulate and check conditions on SAMLv2 assertions. - move strings to their own header (but keep retro-compatibility through inclusion in xml/strings.h). * Bindings: - improve general use of bindings/utils.py module inside the bindings to share type matching logic. * Python binding: - Glib warning are tunneled through python logging API - camelcasing of uppercase starting fields for python and java bindings has been fixed, old orthograph has been also kept for compatibility. The problem could be seen on LassoAssertion object where the field ID was renamed iD which was difficult to guess. - node class now supports pickling by leveraging existing XML serialization. It posseses the same limitations as the existing XML serialization, for example serializing a LassProfile is not an idempotent operation, it will miss the server, identity and session fields. - empty GList now return an empty tuple, not None (it fixes a lot list traversal codes) - do not forget to emit 'pass' in declaration of class without any content (no method, no field, no constructor) - the code to emit 'freeing' code for values was factorized and improved. - for empty lists returns an empty pyhon list, not None. * Perl binding: - support for out parameters was added. - better memory freeing * Java binding: - finished exception support for error returning methods. - optimize the makefile for file listing generation - for NULL GList returns an empty ArrayList object, not null. * Documentation: - add examples to LassoLogout documentation - fix missing or deprecated methods in lasso-sections.txt - document LassoIdWsf2Profile methods - document runtime flags * Tests: - new macros to help in testing (see tests/tests.h), they also make better error reporting (when comparing values, they show the expected and the obtained value). - SAMLv2 AuthnRequest through HTTP-Artifact binding is tested - SAMLv2 LogoutRequest with multiple SessionIndex is tested - force C locale for integration test (we match UI strings, so it is needed). - SAMLv2, test websso with encrypted private keys (idp and sp side) - SAMLv2, add a python test for attribute authority * ID-WSF 2.0: - constant strings were moved to their own header (lasso/xml/id-wsf-2.0/idwsf2_strings.h) - add helper method to retrieve the bootstrap EPR from an assertion and to mint assertion to use as WS-Security tokens. - add method lasso_idwsf2_data_service_get_query_item_result_content to retrieve DST query result as text - sign SAMLv2 assertion used as WS-Security tokens And many minor bug-fixes... 2.2.91 - January 26th 2010 -------------------------- A new Perl binding, fix for backward compatibility with old versions of glib, LassoLogout API is more robust since it does not need anymore for all SP logout to finish to work, new macro lasso_list_add_new_xml_node, add support for WS-Security UsernameToken (equivalent of poor man HTTP Digest Authentication), make public internal APIs: lasso_session_add_assertion, lasso_session_get_assertion and lasso_session_remove_assertion. 2.2.90 - January 18th 2010 -------------------------- Lots of internal changes and some external one too. There is a new api to force, forbid or let Lasso sign messages, it is called lasso_profile_set_signature_hint. Big overhaul of the ID-WSF 1 and 2 codes, and of the SAML 2.0 profiles. Now all SAML 2.0 profile use common internal functions from the lasso_saml20_profile_ namespace to handle bindings (SOAP,Redirect,POST,Artifact,PAOS). New internal API to load SSL keys from many more formats from the public API. In ID-WSF 2.0, Data Service Template has been simplified, we no more try to apply queries, it is the responsability of the using code to handle them. In bindings land, the file bindings/utils.py has been stuffed with utility function to manipulate 'type' tuple, with are now used to transfer argument and type description, their schema is (name, C-type, { dictionary of options } ), they are now used everywhere in the different bindings. We support output argument in PHP5, Python and Java, i.e. pointer of pointer arguments with are written to in order to return multiple values. For language where the binding convert error codes to exceptions (all of them now), the ouput value is returned as the normal return value of the method, so only one output argument is handled for now. We now use GObject-introspection annotations in the documentation to transfer to the binding generator the necessary metadata about the API (content of lists, hashtables, wheter pointer are caller/callee owned, can be NULL or if argument have a default value). The file bindings/override.xml is now deprecated. In documentation land, the main reference documentation was reorganizaed and more symbols have been added to it. Many more functions are documented. There is now tools to control the evolution of the ABI/API of Lasso. 2.2.2 - March 24th 2009 ----------------------- Many fixes and improvements to the ID-WSF 1 support, new API to load SSL keys off memory, documentation for ID-WSF methods, general robustness and memory leak fixes. 2.2.1 - July 22nd 2008 ---------------------- Fixed problems with signed SAML 2.0 URL strings and checks against existing assertions to tell if authentication was required. 2.2.0 - May 28th 2008 --------------------- Added support for encrypted NameIdentifier in ID-FF 1.2, fixed various minor issues with ID-WSF support and several bugs and memory management issues; also replaced bindings for Java, PHP 5 and Python with new ones, created by a custom code generator. 2.1.1 - August 21st 2007 ------------------------ Added support for LassoSignatureType to bindings (support was already but implicitely present for Python), fixed references to Node and String lists in all bindings. 2.1.0 - August 13rd 2007 ------------------------ Added preliminary support for ID-WSF 2, Discovery and Data Service Template, added missing accessors for class elements in SAML 2 language bindings, fixed potential DoS in message parsing. 2.0.0 - January 16th 2007 ------------------------- Completed SAMLv2 support, passed conformance event organized by the Liberty Alliance from December 4th to 8th 2006. Gratuitous giant version bump to mark this step. Fixed memory leaks and potential segmentation faults. 1.9.9 - December 19th 2006 -------------------------- [Test version, news copied over to 2.0.0] 0.6.6 - October 16th 2006 ----------------------- Fixed issues in ID-WSF Data and Interaction services support, fixed a few robustness issues in corner cases. [This version was finally not released due to decision to first finish SAMLv2 support and pass the conformance tests.] 0.6.5 - March 21st 2006 ----------------------- Fixed support for SWIG 1.3.28 (now required), fixed a win32 build issue, fixed documentation. 0.6.4 - March 8th 2006 ---------------------- Added first draft of ID-WSF Interaction Service support, added message signatures to ID-WSF messages, added first draft of SAML 2 support (only Web-SSO and part of Single Logout for the moment), fixed some corner cases, improved error detection in different places, upgraded SWIG support to 1.3.28 and generally improved the bindings. 0.6.3 - September 30th 2005 --------------------------- Improved behaviour when confronted to other Liberty providers that do not implement all the mandatory Liberty requirements, improved error status code reporting, completed support for public keys embedded in metadata files, fixed a few corner case bugs. Also continued work on ID-WSF support, implementing Discovery and DST services but still considered experimental and disabled by default. 0.6.2 - May 26th 2005 --------------------- Fixed usage of NameIdentifiers after calls to Register Name Identifier profile, improved robustness against other Liberty implementations, improved loading of metadata, fixed minor bugs and memory leaks. Continued work on ID-WSF support, still partial and disabled by default. 0.6.1 - February 22nd 2005 -------------------------- Completed support, added full bidirectional query string support for AuthnContextStatementRef, AuthnContextClassRef and AuthnContextComparison, fixed a crasher-bug in a rare case of single sign on profile, tested and shipped with Microsoft Visual Studio project files. 0.6.0 - January 27th 2005 ------------------------- Rewrote library internals to use standard structures instead of libxml2 nodes; this allows faster processing, more flexibility and better support for language bindings. Documented all the API functions. Fixed and improved the rest. 0.5.0 - November 9th 2004 ------------------------- All features of SP Basic, SP, IDP, and LECP profiles for Liberty IDFF 1.2 Static Conformance are now implemented, except for "Backward Compatibility". Extended features are also supported, except for "Affiliations". Compatible with the demo application of the last Beta version of SourceID Liberty 2.0. Improved metadata support, a lot of new feature and bugfixes. API, ABI, and dump format of messages have changed, so this release is not compatible with previous versions. 0.4.1 - September 7th 2004 -------------------------- Small bug fixes. Windows DLL are now linked with standard call aliases. 0.4.0 - September 6th 2004 -------------------------- Complete support for the main profiles of Liberty Alliance IF-FF 1.2 (Single Sign On, Single Logout, and Federation Termination). Revamped language bindings to use SWIG (supported languages are noew Python, PHP, Java and C#). More unit tests. Bugs fixed. 0.3.0 - July 27th 2004 ---------------------- Improved support for Single Sign On and Single Logout profiles. Python and Java bindings. Unit tests. Bugs fixed. 0.2.0 - June 1st 2004 --------------------- First release as a C library. lasso-2.9.0/PaxHeaders/lasso-src-config.in0000644000000000000000000000013113766621500015427 xustar0030 mtime=1608196928.766895334 30 atime=1754992976.265583627 29 ctime=1754993575.16913418 lasso-2.9.0/lasso-src-config.in0000644000175000017500000000371013766621500017441 0ustar00bdauvergnebdauvergne#!/bin/sh # # $Id$ # # Copyright (C) 2002-2004 David Beckett - http://purl.org/net/dajobe/ # Institute for Learning and Research Technology - http://www.ilrt.bris.ac.uk/ # University of Bristol - http://www.bristol.ac.uk/ # # This package is Free Software or Open Source available under the # following licenses (these are alternatives): # 1. GNU Lesser General Public License (LGPL) # 2. GNU General Public License (GPL) # 3. Mozilla Public License (MPL) # # See LICENSE.html or LICENSE.txt at the top of this package for the # full license terms. # # # usage() { cat<&2 fi while test $# -gt 0; do case "$1" in -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; *) optarg= ;; esac case $1 in --version) echo @VERSION@ exit 0 ;; --cflags) echo_cflags=yes ;; --libs) echo_libs=yes ;; --usage) usage 0 1>&2 ;; --run) lpath=@abs_top_builddir@/lasso/.libs if test -d .libs; then lpath=".libs:$lpath" fi if test `uname` = Darwin; then DYLD_LIBRARY_PATH=$lpath:$DYLD_LIBRARY_PATH export DYLD_LIBRARY_PATH else LD_LIBRARY_PATH=$lpath:$LD_LIBRARY_PATH export LD_LIBRARY_PATH fi shift exec ${1+"$@"} ;; *) usage 1 1>&2 ;; esac shift done if test "$echo_cflags" = "yes"; then echo -I@abs_top_srcdir@/lasso fi if test "$echo_libs" = "yes"; then echo -L@abs_top_builddir@/lasso/.libs @LASSO_CORE_LIBS@ @LASSO_LIBS@ fi lasso-2.9.0/PaxHeaders/abi0000644000000000000000000000013013766621500012403 xustar0029 mtime=1608196928.71889494 30 atime=1754993581.145009024 29 ctime=1754993575.20113351 lasso-2.9.0/abi/0000755000175000017500000000000013766621500014472 5ustar00bdauvergnebdauvergnelasso-2.9.0/abi/PaxHeaders/abi-2.3.60000644000000000000000000000013013766621500013602 xustar0029 mtime=1608196928.71889494 30 atime=1754992978.149544894 29 ctime=1754993575.20113351 lasso-2.9.0/abi/abi-2.3.60000644000175000017500000021073613766621500015625 0ustar00bdauvergnebdauvergneBACKWARD_COMP_H LASSO_ASSERTION_QUERY_ERROR_ATTRIBUTE_REQUEST_ALREADY_EXIST LASSO_ASSERTION_QUERY_ERROR_NOT_AN_ATTRIBUTE_QUERY LASSO_ASSERTION_QUERY_REQUEST_TYPE_ASSERTION_ID LASSO_ASSERTION_QUERY_REQUEST_TYPE_ATTRIBUTE LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHN LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHZ_DECISION LASSO_ASSERTION_QUERY_REQUEST_TYPE_LAST LASSO_ASSERTION_QUERY_REQUEST_TYPE_UNSET LASSO_CERTIFICATE_ATTRIBUTE LASSO_CHECK_VERSIONABI_COMPATIBLE LASSO_CHECK_VERSION_EXACT LASSO_CHECK_VERSION_NUMERIC LASSO_DATA_SERVICE_ERROR_CANNOT_ADD_ITEM LASSO_DATA_SERVICE_ERROR_UNREGISTERED_DST LASSO_DEFEDERATION_ERROR_MISSING_NAME_IDENTIFIER LASSO_DISCOVERY_ERROR_FAILED_TO_BUILD_ENDPOINT_REFERENCE LASSO_DISCOVERY_ERROR_MISSING_REQUESTED_SERVICE LASSO_DISCOVERY_ERROR_SVC_METADATA_ASSOCIATION_ADD_FAILED LASSO_DISCOVERY_ERROR_SVC_METADATA_REGISTER_FAILED LASSO_DST_ERROR_EMPTY_REQUEST LASSO_DST_ERROR_MALFORMED_QUERY LASSO_DST_ERROR_MISSING_SERVICE_DATA LASSO_DST_ERROR_MODIFY_FAILED LASSO_DST_ERROR_MODIFY_PARTIALLY_FAILED LASSO_DST_ERROR_NEW_DATA_MISSING LASSO_DST_ERROR_NO_DATA LASSO_DST_ERROR_QUERY_FAILED LASSO_DST_ERROR_QUERY_NOT_FOUND LASSO_DST_ERROR_QUERY_PARTIALLY_FAILED LASSO_DS_ERROR_CA_CERT_CHAIN_LOAD_FAILED LASSO_DS_ERROR_CERTIFICATE_LOAD_FAILED LASSO_DS_ERROR_CONTEXT_CREATION_FAILED LASSO_DS_ERROR_DECRYPTION_FAILED LASSO_DS_ERROR_DECRYPTION_FAILED_MISSING_PRIVATE_KEY LASSO_DS_ERROR_DIGEST_COMPUTE_FAILED LASSO_DS_ERROR_ENCRYPTION_FAILED LASSO_DS_ERROR_INVALID_REFERENCE_FOR_SAML LASSO_DS_ERROR_INVALID_SIGALG LASSO_DS_ERROR_INVALID_SIGNATURE LASSO_DS_ERROR_KEYS_MNGR_CREATION_FAILED LASSO_DS_ERROR_KEYS_MNGR_INIT_FAILED LASSO_DS_ERROR_PRIVATE_KEY_LOAD_FAILED LASSO_DS_ERROR_PUBLIC_KEY_LOAD_FAILED LASSO_DS_ERROR_SIGNATURE_FAILED LASSO_DS_ERROR_SIGNATURE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TEMPLATE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TMPL_CREATION_FAILED LASSO_DS_ERROR_SIGNATURE_VERIFICATION_FAILED LASSO_DS_ERROR_TOO_MUCH_REFERENCES LASSO_DS_HREF LASSO_DS_PREFIX LASSO_DURATION_DAY LASSO_DURATION_HOUR LASSO_DURATION_MINUTE LASSO_DURATION_WEEK LASSO_ECP_HREF LASSO_ECP_PREFIX LASSO_ENCRYPTION_MODE_ASSERTION LASSO_ENCRYPTION_MODE_NAMEID LASSO_ENCRYPTION_MODE_NONE LASSO_ENCRYPTION_SYM_KEY_TYPE_3DES LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_128 LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_256 LASSO_ENCRYPTION_SYM_KEY_TYPE_DEFAULT LASSO_ENCRYTPION_SYM_KEY_TYPE_LAST LASSO_ERROR_CAST_FAILED LASSO_ERROR_OUT_OF_MEMORY LASSO_ERROR_UNDEFINED LASSO_ERROR_UNIMPLEMENTED LASSO_HTTP_METHOD_ANY LASSO_HTTP_METHOD_ARTIFACT_GET LASSO_HTTP_METHOD_ARTIFACT_POST LASSO_HTTP_METHOD_GET LASSO_HTTP_METHOD_IDP_INITIATED LASSO_HTTP_METHOD_LAST LASSO_HTTP_METHOD_NONE LASSO_HTTP_METHOD_PAOS LASSO_HTTP_METHOD_POST LASSO_HTTP_METHOD_REDIRECT LASSO_HTTP_METHOD_SOAP LASSO_IDWSF2_DISCOVERY_ERROR_DUPLICATE LASSO_IDWSF2_DISCOVERY_ERROR_FAILED LASSO_IDWSF2_DISCOVERY_ERROR_FORBIDDEN LASSO_IDWSF2_DISCOVERY_ERROR_LOGICAL_DUPLICATE LASSO_IDWSF2_DISCOVERY_ERROR_NOT_FOUND LASSO_IDWSF2_DISCOVERY_ERROR_NO_RESULTS LASSO_IDWSF2_DST_ERROR_DUPLICATE_ITEM LASSO_IDWSF2_DST_ERROR_ITEM_NOT_FOUND LASSO_IDWSF2_DST_ERROR_PARTIAL_FAILURE LASSO_IDWSF2_DST_ERROR_UNKNOWN_STATUS_CODE LASSO_LASSO_HREF LASSO_LASSO_PREFIX LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD_PROTECTED_TRANSPORT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PREVIOUS_SESSION LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SOFTWARE_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_TIME_SYNC_TOKEN LASSO_LIB_AUTHN_CONTEXT_COMPARISON_BETTER LASSO_LIB_AUTHN_CONTEXT_COMPARISON_EXACT LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MAXIMUM LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MINIMUM LASSO_LIB_CONSENT_INAPPLICABLE LASSO_LIB_CONSENT_OBTAINED LASSO_LIB_CONSENT_OBTAINED_CURRENT_EXPLICIT LASSO_LIB_CONSENT_OBTAINED_CURRENT_IMPLICIT LASSO_LIB_CONSENT_OBTAINED_PRIOR LASSO_LIB_CONSENT_UNAVAILABLE LASSO_LIB_HREF LASSO_LIB_MAJOR_VERSION_N LASSO_LIB_MINOR_VERSION_N LASSO_LIB_NAMEID_POLICY_TYPE_ANY LASSO_LIB_NAMEID_POLICY_TYPE_FEDERATED LASSO_LIB_NAMEID_POLICY_TYPE_NONE LASSO_LIB_NAMEID_POLICY_TYPE_ONE_TIME LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENTITYID LASSO_LIB_NAME_IDENTIFIER_FORMAT_FEDERATED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ONE_TIME LASSO_LIB_PREFIX LASSO_LIB_PROTOCOL_PROFILE_BRWS_ART LASSO_LIB_PROTOCOL_PROFILE_BRWS_LECP LASSO_LIB_PROTOCOL_PROFILE_BRWS_POST LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_NIM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_SOAP LASSO_LIB_STATUS_CODE_FEDERATION_DOES_NOT_EXIST LASSO_LIB_STATUS_CODE_INVALID_ASSERTION_CONSUMER_SERVICE_INDEX LASSO_LIB_STATUS_CODE_INVALID_SIGNATURE LASSO_LIB_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_LIB_STATUS_CODE_NO_AVAILABLEIDP LASSO_LIB_STATUS_CODE_NO_PASSIVE LASSO_LIB_STATUS_CODE_NO_SUPPORTEDIDP LASSO_LIB_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_LIB_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_LIB_STATUS_CODE_UNSIGNED_AUTHN_REQUEST LASSO_LIB_STATUS_CODE_UNSUPPORTED_PROFILE LASSO_LOGIN_ERROR_ASSERTION_DOES_NOT_MATCH_REQUEST_ID LASSO_LOGIN_ERROR_ASSERTION_REPLAY LASSO_LOGIN_ERROR_CONSENT_NOT_OBTAINED LASSO_LOGIN_ERROR_FEDERATION_NOT_FOUND LASSO_LOGIN_ERROR_INVALID_ASSERTION_SIGNATURE LASSO_LOGIN_ERROR_INVALID_NAMEIDPOLICY LASSO_LOGIN_ERROR_INVALID_SIGNATURE LASSO_LOGIN_ERROR_NO_DEFAULT_ENDPOINT LASSO_LOGIN_ERROR_REQUEST_DENIED LASSO_LOGIN_ERROR_STATUS_NOT_SUCCESS LASSO_LOGIN_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGIN_ERROR_UNSIGNED_AUTHN_REQUEST LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_ART LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_LECP LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_POST LASSO_LOGIN_PROTOCOL_PROFILE_REDIRECT LASSO_LOGOUT_ERROR_FEDERATION_NOT_FOUND LASSO_LOGOUT_ERROR_REQUEST_DENIED LASSO_LOGOUT_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGOUT_ERROR_UNSUPPORTED_PROFILE LASSO_MD_PROTOCOL_TYPE_ARTIFACT_RESOLUTION LASSO_MD_PROTOCOL_TYPE_ASSERTION_ID_REQUEST LASSO_MD_PROTOCOL_TYPE_ATTRIBUTE LASSO_MD_PROTOCOL_TYPE_AUTHN_QUERY LASSO_MD_PROTOCOL_TYPE_AUTHZ LASSO_MD_PROTOCOL_TYPE_FEDERATION_TERMINATION LASSO_MD_PROTOCOL_TYPE_LAST LASSO_MD_PROTOCOL_TYPE_MANAGE_NAME_ID LASSO_MD_PROTOCOL_TYPE_NAME_IDENTIFIER_MAPPING LASSO_MD_PROTOCOL_TYPE_REGISTER_NAME_IDENTIFIER LASSO_MD_PROTOCOL_TYPE_SINGLE_LOGOUT LASSO_MD_PROTOCOL_TYPE_SINGLE_SIGN_ON LASSO_MESSAGE_FORMAT_BASE64 LASSO_MESSAGE_FORMAT_ERROR LASSO_MESSAGE_FORMAT_QUERY LASSO_MESSAGE_FORMAT_SOAP LASSO_MESSAGE_FORMAT_UNKNOWN LASSO_MESSAGE_FORMAT_XML LASSO_MESSAGE_FORMAT_XSCHEMA_ERROR LASSO_METADATA_HREF LASSO_METADATA_PREFIX LASSO_NAME_IDENTIFIER_MAPPING_ERROR_FORBIDDEN_CALL_ON_THIS_SIDE LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_IDENTIFIER LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_NAMESPACE LASSO_PAOS_HREF LASSO_PAOS_PREFIX LASSO_PARAM_ERROR_BAD_TYPE_OR_NULL_OBJ LASSO_PARAM_ERROR_CHECK_FAILED LASSO_PARAM_ERROR_INVALID_VALUE LASSO_PARAM_ERROR_NON_INITIALIZED_OBJECT LASSO_PRIVATE_KEY_ATTRIBUTE LASSO_PRIVATE_KEY_PASSWORD_ATTRIBUTE LASSO_PRIVATE_STATUS_CODE_FAILED_TO_RESTORE_ARTIFACT LASSO_PROFILE_ERROR_BAD_IDENTITY_DUMP LASSO_PROFILE_ERROR_BAD_SESSION_DUMP LASSO_PROFILE_ERROR_BUILDING_MESSAGE_FAILED LASSO_PROFILE_ERROR_BUILDING_QUERY_FAILED LASSO_PROFILE_ERROR_BUILDING_REQUEST_FAILED LASSO_PROFILE_ERROR_BUILDING_RESPONSE_FAILED LASSO_PROFILE_ERROR_CANNOT_FIND_A_PROVIDER LASSO_PROFILE_ERROR_CANNOT_VERIFY_SIGNATURE LASSO_PROFILE_ERROR_FEDERATION_NOT_FOUND LASSO_PROFILE_ERROR_IDENTITY_NOT_FOUND LASSO_PROFILE_ERROR_INVALID_ARTIFACT LASSO_PROFILE_ERROR_INVALID_ASSERTION LASSO_PROFILE_ERROR_INVALID_ASSERTION_CONDITIONS LASSO_PROFILE_ERROR_INVALID_HTTP_METHOD LASSO_PROFILE_ERROR_INVALID_ISSUER LASSO_PROFILE_ERROR_INVALID_MSG LASSO_PROFILE_ERROR_INVALID_POST_MSG LASSO_PROFILE_ERROR_INVALID_PROTOCOLPROFILE LASSO_PROFILE_ERROR_INVALID_QUERY LASSO_PROFILE_ERROR_INVALID_REQUEST LASSO_PROFILE_ERROR_INVALID_RESPONSE LASSO_PROFILE_ERROR_INVALID_SOAP_MSG LASSO_PROFILE_ERROR_ISSUER_IS_NOT_AN_IDP LASSO_PROFILE_ERROR_MISSING_ARTIFACT LASSO_PROFILE_ERROR_MISSING_ASSERTION LASSO_PROFILE_ERROR_MISSING_ENCRYPTION_PRIVATE_KEY LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE_ADDRESS LASSO_PROFILE_ERROR_MISSING_ISSUER LASSO_PROFILE_ERROR_MISSING_NAME_IDENTIFIER LASSO_PROFILE_ERROR_MISSING_REMOTE_PROVIDERID LASSO_PROFILE_ERROR_MISSING_REQUEST LASSO_PROFILE_ERROR_MISSING_RESOURCE_OFFERING LASSO_PROFILE_ERROR_MISSING_RESPONSE LASSO_PROFILE_ERROR_MISSING_SERVER LASSO_PROFILE_ERROR_MISSING_SERVICE_DESCRIPTION LASSO_PROFILE_ERROR_MISSING_SERVICE_INSTANCE LASSO_PROFILE_ERROR_MISSING_SERVICE_TYPE LASSO_PROFILE_ERROR_MISSING_STATUS_CODE LASSO_PROFILE_ERROR_MISSING_SUBJECT LASSO_PROFILE_ERROR_NAME_IDENTIFIER_NOT_FOUND LASSO_PROFILE_ERROR_RESPONSE_DOES_NOT_MATCH_REQUEST LASSO_PROFILE_ERROR_SESSION_NOT_FOUND LASSO_PROFILE_ERROR_STATUS_NOT_SUCCESS LASSO_PROFILE_ERROR_UNKNOWN_ISSUER LASSO_PROFILE_ERROR_UNKNOWN_PROFILE_URL LASSO_PROFILE_ERROR_UNKNOWN_PROVIDER LASSO_PROFILE_ERROR_UNSUPPORTED_BINDING LASSO_PROFILE_ERROR_UNSUPPORTED_PROFILE LASSO_PROFILE_SIGNATURE_HINT_FORBID LASSO_PROFILE_SIGNATURE_HINT_FORCE LASSO_PROFILE_SIGNATURE_HINT_MAYBE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_FORCE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_IGNORE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_LAST LASSO_PROFILE_SIGNATURE_VERIFY_HINT_MAYBE LASSO_PROTOCOL_LIBERTY_1_0 LASSO_PROTOCOL_LIBERTY_1_1 LASSO_PROTOCOL_LIBERTY_1_2 LASSO_PROTOCOL_NONE LASSO_PROTOCOL_SAML_2_0 LASSO_PROVIDER_ERROR_MISSING_PUBLIC_KEY LASSO_PROVIDER_ROLE_ANY LASSO_PROVIDER_ROLE_ATTRIBUTE_AUTHORITY LASSO_PROVIDER_ROLE_AUTHN_AUTHORITY LASSO_PROVIDER_ROLE_AUTHZ_AUTHORITY LASSO_PROVIDER_ROLE_BOTH LASSO_PROVIDER_ROLE_IDP LASSO_PROVIDER_ROLE_LAST LASSO_PROVIDER_ROLE_NONE LASSO_PROVIDER_ROLE_SP LASSO_PYTHON_HREF LASSO_REGISTRY_ERROR_KEY_EXISTS LASSO_REQUEST_TYPE_DEFEDERATION LASSO_REQUEST_TYPE_DISCO_MODIFY LASSO_REQUEST_TYPE_DISCO_QUERY LASSO_REQUEST_TYPE_DST_MODIFY LASSO_REQUEST_TYPE_DST_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_ASSOCIATION_ADD LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_REGISTER LASSO_REQUEST_TYPE_INVALID LASSO_REQUEST_TYPE_LECP LASSO_REQUEST_TYPE_LOGIN LASSO_REQUEST_TYPE_LOGOUT LASSO_REQUEST_TYPE_NAME_IDENTIFIER_MAPPING LASSO_REQUEST_TYPE_NAME_ID_MANAGEMENT LASSO_REQUEST_TYPE_NAME_REGISTRATION LASSO_REQUEST_TYPE_SASL_REQUEST LASSO_SAML2_ACTION_GHPP_GET LASSO_SAML2_ACTION_GHPP_HEAD LASSO_SAML2_ACTION_GHPP_POST LASSO_SAML2_ACTION_GHPP_PUT LASSO_SAML2_ACTION_NAMESPACE_GHPP LASSO_SAML2_ACTION_NAMESPACE_RWEDC LASSO_SAML2_ACTION_NAMESPACE_RWEDC_NEGATION LASSO_SAML2_ACTION_NAMESPACE_UNIX LASSO_SAML2_ACTION_RWEDC_CONTROL LASSO_SAML2_ACTION_RWEDC_DELETE LASSO_SAML2_ACTION_RWEDC_EXECUTE LASSO_SAML2_ACTION_RWEDC_NEGATION LASSO_SAML2_ACTION_RWEDC_READ LASSO_SAML2_ACTION_RWEDC_WRITE LASSO_SAML2_ASSERTION_HREF LASSO_SAML2_ASSERTION_INDETERMINATE LASSO_SAML2_ASSERTION_INVALID LASSO_SAML2_ASSERTION_PREFIX LASSO_SAML2_ASSERTION_VALID LASSO_SAML2_ATTRIBUTE_NAME_EPR LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_BASIC LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_UNSPECIFIED LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_URI LASSO_SAML2_ATTRIBUTE_PROFILE_BASIC LASSO_SAML2_ATTRIBUTE_PROFILE_DCE LASSO_SAML2_ATTRIBUTE_PROFILE_UUID LASSO_SAML2_ATTRIBUTE_PROFILE_X500 LASSO_SAML2_AUTHN_CONTEXT_AUTHENTICATED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_KERBEROS LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_NOMAD_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_PASSWORD_PROTECTED_TRANSPORT LASSO_SAML2_AUTHN_CONTEXT_PERSONALIZED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PGP LASSO_SAML2_AUTHN_CONTEXT_PREVIOUS_SESSION LASSO_SAML2_AUTHN_CONTEXT_SECURE_REMOTE_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD_PKI LASSO_SAML2_AUTHN_CONTEXT_SOFTWARE_PKI LASSO_SAML2_AUTHN_CONTEXT_SPKI LASSO_SAML2_AUTHN_CONTEXT_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_TIME_SYNC_TOKEN LASSO_SAML2_AUTHN_CONTEXT_TLS_CLIENT LASSO_SAML2_AUTHN_CONTEXT_UNSPECIFIED LASSO_SAML2_AUTHN_CONTEXT_X509 LASSO_SAML2_AUTHN_CONTEXT_XMLDSIG LASSO_SAML2_CONFIRMATION_METHOD_BEARER LASSO_SAML2_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML2_CONSENT_EXPLICIT LASSO_SAML2_CONSENT_IMPLICIT LASSO_SAML2_CONSENT_INAPPLICABLE LASSO_SAML2_CONSENT_OBTAINED LASSO_SAML2_CONSENT_PRIOR LASSO_SAML2_CONSENT_UNAVAILABLE LASSO_SAML2_DEFLATE_ENCODING LASSO_SAML2_FIELD_ARTIFACT LASSO_SAML2_FIELD_ENCODING LASSO_SAML2_FIELD_RELAYSTATE LASSO_SAML2_FIELD_REQUEST LASSO_SAML2_FIELD_RESPONSE LASSO_SAML2_FIELD_SIGALG LASSO_SAML2_FIELD_SIGNATURE LASSO_SAML2_METADATA_BINDING_ARTIFACT LASSO_SAML2_METADATA_BINDING_PAOS LASSO_SAML2_METADATA_BINDING_POST LASSO_SAML2_METADATA_BINDING_REDIRECT LASSO_SAML2_METADATA_BINDING_SOAP LASSO_SAML2_METADATA_BINDING_URI LASSO_SAML2_METADATA_HREF LASSO_SAML2_METADATA_PREFIX LASSO_SAML2_NAME_IDENTIFIER_FORMAT_EMAIL LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENTITY LASSO_SAML2_NAME_IDENTIFIER_FORMAT_KERBEROS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_PERSISTENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_TRANSIENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_UNSPECIFIED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_WINDOWS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_X509 LASSO_SAML2_PROTOCOL_HREF LASSO_SAML2_PROTOCOL_PREFIX LASSO_SAML2_STATUS_CODE_AUTHN_FAILED LASSO_SAML2_STATUS_CODE_INVALID_ATTR_NAME LASSO_SAML2_STATUS_CODE_INVALID_NAME_ID_POLICY LASSO_SAML2_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_SAML2_STATUS_CODE_NO_AVAILABLE_IDP LASSO_SAML2_STATUS_CODE_NO_PASSIVE LASSO_SAML2_STATUS_CODE_NO_SUPPORTED_IDP LASSO_SAML2_STATUS_CODE_PARTIAL_LOGOUT LASSO_SAML2_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_SAML2_STATUS_CODE_REQUESTER LASSO_SAML2_STATUS_CODE_REQUEST_DENIED LASSO_SAML2_STATUS_CODE_REQUEST_UNSUPPORTED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML2_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML2_STATUS_CODE_RESPONDER LASSO_SAML2_STATUS_CODE_SUCCESS LASSO_SAML2_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML2_STATUS_CODE_UNKNOWN_ATTR_PROFILE LASSO_SAML2_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_SAML2_STATUS_CODE_UNSUPPORTED_BINDING LASSO_SAML2_STATUS_CODE_VERSION_MISMATCH LASSO_SAML_ASSERTION_HREF LASSO_SAML_ASSERTION_PREFIX LASSO_SAML_AUTHENTICATION_METHODS_PKI LASSO_SAML_AUTHENTICATION_METHOD_HARDWARE_TOKEN LASSO_SAML_AUTHENTICATION_METHOD_KERBEROS LASSO_SAML_AUTHENTICATION_METHOD_LIBERTY LASSO_SAML_AUTHENTICATION_METHOD_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_PGP LASSO_SAML_AUTHENTICATION_METHOD_SECURE_REMOTE_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_SMARTCARD_PKI LASSO_SAML_AUTHENTICATION_METHOD_SOFTWARE_PKI LASSO_SAML_AUTHENTICATION_METHOD_UNSPECIFIED LASSO_SAML_AUTHENTICATION_METHOD_XKMS LASSO_SAML_AUTHENTICATION_METHOD_XMLD_SIG LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT01 LASSO_SAML_CONFIRMATION_METHOD_BEARER LASSO_SAML_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML_CONFIRMATION_METHOD_SENDER_VOUCHES LASSO_SAML_MAJOR_VERSION_N LASSO_SAML_MINOR_VERSION_N LASSO_SAML_PROTOCOL_HREF LASSO_SAML_PROTOCOL_PREFIX LASSO_SAML_STATUS_CODE_REQUESTER LASSO_SAML_STATUS_CODE_REQUEST_DENIED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML_STATUS_CODE_RESPONDER LASSO_SAML_STATUS_CODE_SUCCESS LASSO_SAML_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML_STATUS_CODE_VERSION_MISMATCH LASSO_SERVER_ERROR_ADD_PROVIDER_FAILED LASSO_SERVER_ERROR_ADD_PROVIDER_PROTOCOL_MISMATCH LASSO_SERVER_ERROR_INVALID_XML LASSO_SERVER_ERROR_PROVIDER_NOT_FOUND LASSO_SERVER_ERROR_SET_ENCRYPTION_PRIVATE_KEY_FAILED LASSO_SIGNATURE_METHOD_ATTRIBUTE LASSO_SIGNATURE_METHOD_DSA_SHA1 LASSO_SIGNATURE_METHOD_LAST LASSO_SIGNATURE_METHOD_RSA_SHA1 LASSO_SIGNATURE_TYPE_ATTRIBUTE LASSO_SIGNATURE_TYPE_LAST LASSO_SIGNATURE_TYPE_NONE LASSO_SIGNATURE_TYPE_SIMPLE LASSO_SIGNATURE_TYPE_WITHX509 LASSO_SOAP_ENV_ACTOR LASSO_SOAP_ENV_HREF LASSO_SOAP_ENV_PREFIX LASSO_SOAP_ERROR_MISSING_BODY LASSO_SOAP_ERROR_MISSING_ENVELOPE LASSO_SOAP_ERROR_MISSING_HEADER LASSO_SOAP_ERROR_MISSING_SOAP_FAULT_DETAIL LASSO_SOAP_ERROR_REDIRECT_REQUEST_FAULT LASSO_SOAP_FAULT_CODE_CLIENT LASSO_SOAP_FAULT_CODE_MUST_UNDERSTAND LASSO_SOAP_FAULT_CODE_SERVER LASSO_SOAP_FAULT_CODE_VERSION_MISMATCH LASSO_SOAP_FAULT_REDIRECT_REQUEST LASSO_WSF_ENABLED LASSO_WSF_PROFILE_ERROR_INVALID_OR_MISSING_REFERENCE_TO_MESSAGE_ID LASSO_WSF_PROFILE_ERROR_MISSING_ASSERTION_ID LASSO_WSF_PROFILE_ERROR_MISSING_CORRELATION LASSO_WSF_PROFILE_ERROR_MISSING_CREDENTIAL_REF LASSO_WSF_PROFILE_ERROR_MISSING_DESCRIPTION LASSO_WSF_PROFILE_ERROR_MISSING_ENDPOINT LASSO_WSF_PROFILE_ERROR_MISSING_RESOURCE_ID LASSO_WSF_PROFILE_ERROR_MISSING_SECURITY LASSO_WSF_PROFILE_ERROR_MISSING_SENDER_ID LASSO_WSF_PROFILE_ERROR_REDIRECT_REQUEST LASSO_WSF_PROFILE_ERROR_REDIRECT_REQUEST_UNSUPPORTED_BY_REQUESTER LASSO_WSF_PROFILE_ERROR_SECURITY_MECHANISM_CHECK_FAILED LASSO_WSF_PROFILE_ERROR_SERVER_INTERACTION_REQUIRED LASSO_WSF_PROFILE_ERROR_SERVER_INTERACTION_REQUIRED_FOR_DATA LASSO_WSF_PROFILE_ERROR_SOAP_FAULT LASSO_WSF_PROFILE_ERROR_UNKNOWN_STATUS_CODE LASSO_WSF_PROFILE_ERROR_UNSUPPORTED_SECURITY_MECHANISM LASSO_WSSEC_ERROR_BAD_PASSWORD LASSO_WSSEC_ERROR_MISSING_SECURITY_TOKEN LASSO_WSUTIL1_HREF LASSO_WSUTIL1_PREFIX LASSO_XML_ERROR_ATTR_NOT_FOUND LASSO_XML_ERROR_ATTR_VALUE_NOT_FOUND LASSO_XML_ERROR_INVALID_FILE LASSO_XML_ERROR_MISSING_NAMESPACE LASSO_XML_ERROR_NODE_CONTENT_NOT_FOUND LASSO_XML_ERROR_NODE_NOT_FOUND LASSO_XML_ERROR_OBJECT_CONSTRUCTION_FAILED LASSO_XML_ERROR_SCHEMA_INVALID_FRAGMENT LASSO_XSI_HREF LASSO_XSI_PREFIX struct LassoAssertionQuery { LassoAssertionQueryPrivate* private_data } LassoAssertionQueryRequestType LassoCheckVersionMode struct LassoDefederation { } struct LassoDsKeyInfo { LassoDsKeyValue* KeyValue } struct LassoDsKeyValue { LassoDsRsaKeyValue* RSAKeyValue } struct LassoDsRsaKeyValue { char* Modulus, char* Exponent } struct LassoEcp { gchar* assertionConsumerURL, LassoEcpPrivate* private_data } LassoEncryptionMode LassoEncryptionSymKeyType struct LassoFederation { gchar* remote_providerID, LassoNode* local_nameIdentifier, LassoNode* remote_nameIdentifier, LassoFederationPrivate* private_data } LassoHttpMethod struct LassoIdentity { GHashTable* federations, gboolean is_dirty, LassoIdentityPrivate* private_data } struct LassoLecp { LassoLibAuthnRequestEnvelope* authnRequestEnvelope, LassoLibAuthnResponseEnvelope* authnResponseEnvelope, char* assertionConsumerServiceURL } struct LassoLibAssertion { char* InResponseTo } struct LassoLibAuthenticationStatement { LassoLibAuthnContext* AuthnContext, char* ReauthenticateOnOrAfter, char* SessionIndex } struct LassoLibAuthnContext { char* AuthnContextClassRef, char* AuthnContextStatementRef } struct LassoLibAuthnRequest { GList* Extension, char* ProviderID, char* AffiliationID, char* NameIDPolicy, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolProfile, char* AssertionConsumerServiceID, LassoLibRequestAuthnContext* RequestAuthnContext, char* RelayState, LassoLibScoping* Scoping, char* consent } struct LassoLibAuthnRequestEnvelope { GList* Extension, LassoLibAuthnRequest* AuthnRequest, char* ProviderID, char* ProviderName, char* AssertionConsumerServiceURL, LassoLibIDPList* IDPList, gboolean IsPassive } struct LassoLibAuthnResponse { GList* Extension, char* ProviderID, char* RelayState, char* consent } struct LassoLibAuthnResponseEnvelope { GList* Extension, LassoLibAuthnResponse* AuthnResponse, char* AssertionConsumerServiceURL } struct LassoLibFederationTerminationNotification { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* consent, char* RelayState } struct LassoLibIDPEntries { GList* IDPEntry } struct LassoLibIDPEntry { char* ProviderID, char* ProviderName, char* Loc } struct LassoLibIDPList { LassoLibIDPEntries* IDPEntries, char* GetComplete } struct LassoLibLogoutRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* SessionIndex, char* RelayState, char* consent, char* NotOnOrAfter } struct LassoLibLogoutResponse { } struct LassoLibNameIdentifierMappingRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* TargetNamespace, char* consent } struct LassoLibNameIdentifierMappingResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, LassoSamlNameIdentifier* NameIdentifier } struct LassoLibRegisterNameIdentifierRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* IDPProvidedNameIdentifier, LassoSamlNameIdentifier* SPProvidedNameIdentifier, LassoSamlNameIdentifier* OldProvidedNameIdentifier, char* RelayState } struct LassoLibRegisterNameIdentifierResponse { } struct LassoLibRequestAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextStatementRef, char* AuthnContextComparison } struct LassoLibScoping { int ProxyCount, LassoLibIDPList* IDPList } struct LassoLibStatusResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, char* RelayState } struct LassoLibSubject { LassoSamlNameIdentifier* IDPProvidedNameIdentifier } struct LassoLogin { LassoLoginProtocolProfile protocolProfile, gchar* assertionArtifact, LassoSamlAssertion* assertion, gchar* nameIDPolicy, LassoHttpMethod http_method, LassoLoginPrivate* private_data } LassoLoginProtocolProfile struct LassoLogout { LassoNode* initial_request, LassoNode* initial_response, gchar* initial_remote_providerID, gint providerID_index, LassoHttpMethod initial_http_request_method, LassoLogoutPrivate* private_data } LassoMdProtocolType LassoMessageFormat struct LassoMiscTextNode { char* content, char* name, char* ns_href, char* ns_prefix, gboolean text_child } struct LassoNameIdManagement { } struct LassoNameIdentifierMapping { gchar* targetNameIdentifier } struct LassoNameRegistration { LassoSamlNameIdentifier* oldNameIdentifier } struct LassoNode { } struct LassoProfile { LassoServer* server, LassoNode* request, LassoNode* response, LassoNode* nameIdentifier, gchar* remote_providerID, gchar* msg_url, gchar* msg_body, gchar* msg_relayState, LassoIdentity* identity, LassoSession* session, LassoHttpMethod http_request_method, gint signature_status, LassoProfilePrivate* private_data } LassoProfileSignatureHint LassoProfileSignatureVerifyHint LassoProtocolConformance struct LassoProvider { gchar* ProviderID, LassoProviderRole role, char* metadata_filename, gchar* public_key, gchar* ca_cert_chain, LassoProviderPrivate* private_data } LassoProviderRole LassoRequestType struct LassoSaml2Action { char* content, char* Namespace } struct LassoSaml2Advice { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2Assertion { LassoSaml2NameID* Issuer, LassoSaml2Subject* Subject, LassoSaml2Conditions* Conditions, LassoSaml2Advice* Advice, GList* Statement, GList* AuthnStatement, GList* AuthzDecisionStatement, GList* AttributeStatement, char* Version, char* ID, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file, gboolean encryption_activated, char* encryption_public_key_str, LassoEncryptionSymKeyType encryption_sym_key_type } LassoSaml2AssertionValidationState struct LassoSaml2Attribute { GList* AttributeValue, char* Name, char* NameFormat, char* FriendlyName } struct LassoSaml2AttributeStatement { GList* Attribute, GList* EncryptedAttribute } struct LassoSaml2AttributeValue { GList* any } struct LassoSaml2AudienceRestriction { char* Audience } struct LassoSaml2AuthnContext { char* AuthnContextClassRef, char* AuthnContextDeclRef, char* AuthenticatingAuthority } struct LassoSaml2AuthnStatement { LassoSaml2SubjectLocality* SubjectLocality, LassoSaml2AuthnContext* AuthnContext, char* AuthnInstant, char* SessionIndex, char* SessionNotOnOrAfter } struct LassoSaml2AuthzDecisionStatement { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource, char* Decision } struct LassoSaml2BaseIDAbstract { char* NameQualifier, char* SPNameQualifier } struct LassoSaml2ConditionAbstract { } struct LassoSaml2Conditions { GList* Condition, GList* AudienceRestriction, GList* OneTimeUse, GList* ProxyRestriction, char* NotBefore, char* NotOnOrAfter } struct LassoSaml2EncryptedElement { xmlNode* EncryptedData, GList* EncryptedKey, LassoNode* original_data } struct LassoSaml2Evidence { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2KeyInfoConfirmationData { } struct LassoSaml2NameID { char* content, char* Format, char* SPProvidedID, char* NameQualifier, char* SPNameQualifier } struct LassoSaml2OneTimeUse { } struct LassoSaml2ProxyRestriction { char* Audience, char* Count } struct LassoSaml2StatementAbstract { } struct LassoSaml2Subject { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmation* SubjectConfirmation } struct LassoSaml2SubjectConfirmation { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmationData* SubjectConfirmationData, char* Method } struct LassoSaml2SubjectConfirmationData { char* NotBefore, char* NotOnOrAfter, char* Recipient, char* InResponseTo, char* Address } struct LassoSaml2SubjectLocality { char* Address, char* DNSName } struct LassoSamlAdvice { GList* AssertionIDReference, LassoNode* Assertion } struct LassoSamlAssertion { LassoSamlConditions* Conditions, LassoSamlAdvice* Advice, LassoSamlSubjectStatement* SubjectStatement, LassoSamlAuthenticationStatement* AuthenticationStatement, LassoSamlAttributeStatement* AttributeStatement, int MajorVersion, int MinorVersion, char* AssertionID, char* Issuer, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlAttribute { gchar* attributeName, gchar* attributeNameSpace, GList* AttributeValue } struct LassoSamlAttributeDesignator { char* AttributeName, char* AttributeNamespace } struct LassoSamlAttributeStatement { GList* Attribute } struct LassoSamlAttributeValue { GList* any } struct LassoSamlAudienceRestrictionCondition { GList* Audience } struct LassoSamlAuthenticationStatement { LassoSamlSubjectLocality* SubjectLocality, GList* AuthorityBinding, char* AuthenticationMethod, char* AuthenticationInstant } struct LassoSamlAuthorityBinding { char* AuthorityKind, char* Location, char* Binding } struct LassoSamlConditionAbstract { } struct LassoSamlConditions { GList* Condition, GList* AudienceRestrictionCondition, char* NotBefore, char* NotOnOrAfter } struct LassoSamlNameIdentifier { char* NameQualifier, char* Format, char* content } struct LassoSamlStatementAbstract { } struct LassoSamlSubject { LassoSamlNameIdentifier* NameIdentifier, LassoSamlSubjectConfirmation* SubjectConfirmation, LassoSaml2EncryptedElement* EncryptedNameIdentifier } struct LassoSamlSubjectConfirmation { GList* ConfirmationMethod, char* SubjectConfirmationData, LassoDsKeyInfo* KeyInfo } struct LassoSamlSubjectLocality { char* IPAddress, char* DNSAddress } struct LassoSamlSubjectStatement { } struct LassoSamlSubjectStatementAbstract { LassoSamlSubject* Subject } struct LassoSamlp2ArtifactResolve { char* Artifact } struct LassoSamlp2ArtifactResponse { LassoNode* any } struct LassoSamlp2AssertionIDRequest { char* AssertionIDRef } struct LassoSamlp2AttributeQuery { GList* Attribute } struct LassoSamlp2AuthnQuery { LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, char* SessionIndex } struct LassoSamlp2AuthnRequest { LassoSaml2Subject* Subject, LassoSamlp2NameIDPolicy* NameIDPolicy, LassoSaml2Conditions* Conditions, LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, LassoSamlp2Scoping* Scoping, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolBinding, int AssertionConsumerServiceIndex, char* AssertionConsumerServiceURL, int AttributeConsumingServiceIndex, char* ProviderName, G_GNUC_DEPRECATED char } struct LassoSamlp2AuthzDecisionQuery { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource } struct LassoSamlp2Extensions { } struct LassoSamlp2IDPEntry { char* ProviderID, char* Name, char* Loc } struct LassoSamlp2IDPList { LassoSamlp2IDPEntry* IDPEntry, char* GetComplete } struct LassoSamlp2LogoutRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* SessionIndex, char* Reason, char* NotOnOrAfter, G_GNUC_DEPRECATED char } struct LassoSamlp2LogoutResponse { G_GNUC_DEPRECATED char } struct LassoSamlp2ManageNameIDRequest { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* NewID, LassoSaml2EncryptedElement* NewEncryptedID, LassoSamlp2Terminate* Terminate } struct LassoSamlp2ManageNameIDResponse { } struct LassoSamlp2NameIDMappingRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSamlp2NameIDPolicy* NameIDPolicy } struct LassoSamlp2NameIDMappingResponse { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID } struct LassoSamlp2NameIDPolicy { char* Format, char* SPNameQualifier, gboolean AllowCreate } struct LassoSamlp2RequestAbstract { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, char* ID, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2RequestedAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextDeclRef, char* Comparison } struct LassoSamlp2Response { GList* Assertion, GList* EncryptedAssertion } struct LassoSamlp2Scoping { LassoSamlp2IDPList* IDPList, char* RequesterID, char* ProxyCount } struct LassoSamlp2Status { LassoSamlp2StatusCode* StatusCode, char* StatusMessage, LassoSamlp2StatusDetail* StatusDetail } struct LassoSamlp2StatusCode { LassoSamlp2StatusCode* StatusCode, char* Value } struct LassoSamlp2StatusDetail { } struct LassoSamlp2StatusResponse { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, LassoSamlp2Status* Status, char* ID, char* InResponseTo, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2SubjectQueryAbstract { LassoSaml2Subject* Subject } struct LassoSamlp2Terminate { } struct LassoSamlpRequest { char* AssertionArtifact } struct LassoSamlpRequestAbstract { GList* RespondWith, char* RequestID, int MajorVersion, int MinorVersion, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpResponse { LassoSamlpStatus* Status, GList* Assertion } struct LassoSamlpResponseAbstract { char* ResponseID, char* InResponseTo, int MajorVersion, int MinorVersion, char* IssueInstant, char* Recipient, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpStatus { LassoSamlpStatusCode* StatusCode, char* StatusMessage } struct LassoSamlpStatusCode { LassoSamlpStatusCode* StatusCode, char* Value } struct LassoServer { GHashTable* providers, GHashTable* services, gchar* private_key, gchar* private_key_password, gchar* certificate, LassoSignatureMethod signature_method, LassoServerPrivate* private_data } struct LassoSession { GHashTable* assertions, gboolean is_dirty, LassoSessionPrivate* private_data } LassoSignatureMethod LassoSignatureType struct LassoSoapBody { GList* any, gchar* Id } struct LassoSoapDetail { GList* any } struct LassoSoapEnvelope { LassoSoapHeader* Header, LassoSoapBody* Body } struct LassoSoapFault { gchar* faultcode, gchar* faultstring, GList* faultactor, LassoSoapDetail* Detail } struct LassoSoapHeader { GList* Other } lasso_error_t lasso_assertion_query_add_attribute_request ( LassoAssertionQuery* assertion_query, char* format, char* name ) lasso_error_t lasso_assertion_query_build_request_msg ( LassoAssertionQuery* assertion_query ) lasso_error_t lasso_assertion_query_build_response_msg ( LassoAssertionQuery* assertion_query ) None lasso_assertion_query_destroy ( LassoAssertionQuery* assertion_query ) LassoAssertionQueryRequestType lasso_assertion_query_get_request_type ( LassoAssertionQuery* assertion_query ) GType lasso_assertion_query_get_type ( ) lasso_error_t lasso_assertion_query_init_request ( LassoAssertionQuery* assertion_query, char* remote_provider_id, LassoHttpMethod http_method, LassoAssertionQueryRequestType query_request_type ) LassoAssertionQuery* lasso_assertion_query_new ( LassoServer* server ) lasso_error_t lasso_assertion_query_process_request_msg ( LassoAssertionQuery* assertion_query, gchar* request_msg ) lasso_error_t lasso_assertion_query_process_response_msg ( LassoAssertionQuery* assertion_query, gchar* response_msg ) lasso_error_t lasso_assertion_query_validate_request ( LassoAssertionQuery* assertion_query ) char* lasso_build_unique_id ( unsigned int size ) int lasso_check_version ( int major, int minor, int subminor, LassoCheckVersionMode mode ) lasso_error_t lasso_defederation_build_notification_msg ( LassoDefederation* defederation ) None lasso_defederation_destroy ( LassoDefederation* defederation ) GType lasso_defederation_get_type ( ) lasso_error_t lasso_defederation_init_notification ( LassoDefederation* defederation, gchar* remote_providerID, LassoHttpMethod http_method ) LassoDefederation* lasso_defederation_new ( LassoServer* server ) lasso_error_t lasso_defederation_process_notification_msg ( LassoDefederation* defederation, gchar* notification_msg ) lasso_error_t lasso_defederation_validate_notification ( LassoDefederation* defederation ) GType lasso_ds_key_info_get_type ( ) LassoDsKeyInfo* lasso_ds_key_info_new ( ) GType lasso_ds_key_value_get_type ( ) LassoDsKeyValue* lasso_ds_key_value_new ( ) GType lasso_ds_rsa_key_value_get_type ( ) LassoDsRsaKeyValue* lasso_ds_rsa_key_value_new ( ) None lasso_ecp_destroy ( LassoEcp* ecp ) GType lasso_ecp_get_type ( ) LassoEcp* lasso_ecp_new ( LassoServer* server ) lasso_error_t lasso_ecp_process_authn_request_msg ( LassoEcp* ecp, const char* authn_request_msg ) lasso_error_t lasso_ecp_process_response_msg ( LassoEcp* ecp, const char* response_msg ) None lasso_federation_build_local_name_identifier ( LassoFederation* federation, const gchar* nameQualifier, const gchar* format, const gchar* content ) None lasso_federation_destroy ( LassoFederation* federation ) GType lasso_federation_get_type ( ) LassoFederation* lasso_federation_new ( const gchar* remote_providerID ) gboolean lasso_federation_verify_name_identifier ( LassoFederation* federation, LassoNode* name_identifier ) char* lasso_get_prefix_for_dst_service_href ( const char* href ) gchar* lasso_get_prefix_for_idwsf2_dst_service_href ( const gchar* href ) None lasso_identity_destroy ( LassoIdentity* identity ) gchar* lasso_identity_dump ( LassoIdentity* identity ) LassoFederation* lasso_identity_get_federation ( LassoIdentity* identity, const char* providerID ) GType lasso_identity_get_type ( ) LassoIdentity* lasso_identity_new ( ) LassoIdentity* lasso_identity_new_from_dump ( const gchar* dump ) lasso_error_t lasso_init ( ) lasso_error_t lasso_lecp_build_authn_request_envelope_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_request_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_response_envelope_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_response_msg ( LassoLecp* lecp ) None lasso_lecp_destroy ( LassoLecp* lecp ) GType lasso_lecp_get_type ( ) lasso_error_t lasso_lecp_init_authn_request ( LassoLecp* lecp, const char* remote_providerID ) LassoLecp* lasso_lecp_new ( LassoServer* server ) lasso_error_t lasso_lecp_process_authn_request_envelope_msg ( LassoLecp* lecp, const char* request_msg ) lasso_error_t lasso_lecp_process_authn_request_msg ( LassoLecp* lecp, const char* authn_request_msg ) lasso_error_t lasso_lecp_process_authn_response_envelope_msg ( LassoLecp* lecp, const char* response_msg ) GType lasso_lib_assertion_get_type ( ) LassoLibAssertion* lasso_lib_assertion_new ( ) LassoLibAssertion* lasso_lib_assertion_new_full ( const char* issuer, const char* requestID, const char* audience, const char* notBefore, const char* notOnOrAfter ) GType lasso_lib_authentication_statement_get_type ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new_full ( const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, LassoSamlNameIdentifier* sp_identifier, LassoSamlNameIdentifier* idp_identifier ) GType lasso_lib_authn_context_get_type ( ) LassoNode* lasso_lib_authn_context_new ( ) GType lasso_lib_authn_request_envelope_get_type ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new_full ( LassoLibAuthnRequest* authnRequest, char* providerID, char* assertionConsumerServiceURL ) GType lasso_lib_authn_request_get_type ( ) LassoLibAuthnRequest* lasso_lib_authn_request_new ( ) GType lasso_lib_authn_response_envelope_get_type ( ) LassoLibAuthnResponseEnvelope* lasso_lib_authn_response_envelope_new ( LassoLibAuthnResponse* response, char* assertionConsumerServiceURL ) GType lasso_lib_authn_response_get_type ( ) LassoNode* lasso_lib_authn_response_new ( char* providerID, LassoLibAuthnRequest* request ) GType lasso_lib_federation_termination_notification_get_type ( ) LassoNode* lasso_lib_federation_termination_notification_new ( ) LassoNode* lasso_lib_federation_termination_notification_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_idp_entries_get_type ( ) LassoNode* lasso_lib_idp_entries_new ( ) GType lasso_lib_idp_entry_get_type ( ) LassoNode* lasso_lib_idp_entry_new ( ) GType lasso_lib_idp_list_get_type ( ) LassoNode* lasso_lib_idp_list_new ( ) GType lasso_lib_logout_request_get_type ( ) LassoNode* lasso_lib_logout_request_new ( ) LassoNode* lasso_lib_logout_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_logout_response_get_type ( ) LassoNode* lasso_lib_logout_response_new ( ) LassoNode* lasso_lib_logout_response_new_full ( char* providerID, const char* statusCodeValue, LassoLibLogoutRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_request_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, const char* targetNamespace, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_response_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new_full ( char* provideRID, const char* statusCodeValue, LassoLibNameIdentifierMappingRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_request_get_type ( ) LassoNode* lasso_lib_register_name_identifier_request_new ( ) LassoNode* lasso_lib_register_name_identifier_request_new_full ( const char* providerID, LassoSamlNameIdentifier* idpNameIdentifier, LassoSamlNameIdentifier* spNameIdentifier, LassoSamlNameIdentifier* oldNameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_response_get_type ( ) LassoNode* lasso_lib_register_name_identifier_response_new ( ) LassoNode* lasso_lib_register_name_identifier_response_new_full ( const char* providerID, const char* statusCodeValue, LassoLibRegisterNameIdentifierRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_request_authn_context_get_type ( ) LassoLibRequestAuthnContext* lasso_lib_request_authn_context_new ( ) GType lasso_lib_scoping_get_type ( ) LassoLibScoping* lasso_lib_scoping_new ( ) GType lasso_lib_status_response_get_type ( ) LassoNode* lasso_lib_status_response_new ( ) GType lasso_lib_subject_get_type ( ) LassoLibSubject* lasso_lib_subject_new ( ) lasso_error_t lasso_login_accept_sso ( LassoLogin* login ) lasso_error_t lasso_login_build_artifact_msg ( LassoLogin* login, LassoHttpMethod http_method ) lasso_error_t lasso_login_build_assertion ( LassoLogin* login, const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, const char* notBefore, const char* notOnOrAfter ) lasso_error_t lasso_login_build_authn_request_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_authn_response_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_request_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_response_msg ( LassoLogin* login, gchar* remote_providerID ) None lasso_login_destroy ( LassoLogin* login ) gchar* lasso_login_dump ( LassoLogin* login ) LassoNode* lasso_login_get_assertion ( LassoLogin* login ) GType lasso_login_get_type ( ) lasso_error_t lasso_login_init_authn_request ( LassoLogin* login, const gchar* remote_providerID, LassoHttpMethod http_method ) lasso_error_t lasso_login_init_idp_initiated_authn_request ( LassoLogin* login, const gchar* remote_providerID ) lasso_error_t lasso_login_init_request ( LassoLogin* login, gchar* response_msg, LassoHttpMethod response_http_method ) gboolean lasso_login_must_ask_for_consent ( LassoLogin* login ) gboolean lasso_login_must_authenticate ( LassoLogin* login ) LassoLogin* lasso_login_new ( LassoServer* server ) LassoLogin* lasso_login_new_from_dump ( LassoServer* server, const gchar* dump ) lasso_error_t lasso_login_process_authn_request_msg ( LassoLogin* login, const char* authn_request_msg ) lasso_error_t lasso_login_process_authn_response_msg ( LassoLogin* login, gchar* authn_response_msg ) lasso_error_t lasso_login_process_paos_response_msg ( LassoLogin* login, gchar* msg ) lasso_error_t lasso_login_process_request_msg ( LassoLogin* login, gchar* request_msg ) lasso_error_t lasso_login_process_response_msg ( LassoLogin* login, gchar* response_msg ) lasso_error_t lasso_login_validate_request_msg ( LassoLogin* login, gboolean authentication_result, gboolean is_consent_obtained ) lasso_error_t lasso_logout_build_request_msg ( LassoLogout* logout ) lasso_error_t lasso_logout_build_response_msg ( LassoLogout* logout ) None lasso_logout_destroy ( LassoLogout* logout ) gchar* lasso_logout_dump ( LassoLogout* logout ) gchar* lasso_logout_get_next_providerID ( LassoLogout* logout ) GType lasso_logout_get_type ( ) lasso_error_t lasso_logout_init_request ( LassoLogout* logout, gchar* remote_providerID, LassoHttpMethod request_method ) LassoLogout* lasso_logout_new ( LassoServer* server ) LassoLogout* lasso_logout_new_from_dump ( LassoServer* server, const gchar* dump ) lasso_error_t lasso_logout_process_request_msg ( LassoLogout* logout, gchar* request_msg ) lasso_error_t lasso_logout_process_response_msg ( LassoLogout* logout, gchar* response_msg ) lasso_error_t lasso_logout_reset_providerID_index ( LassoLogout* logout ) lasso_error_t lasso_logout_validate_request ( LassoLogout* logout ) GType lasso_misc_text_node_get_type ( ) xmlNode* lasso_misc_text_node_get_xml_content ( LassoMiscTextNode* misc_text_node ) LassoNode* lasso_misc_text_node_new ( ) LassoMiscTextNode* lasso_misc_text_node_new_with_string ( const char* content ) LassoMiscTextNode* lasso_misc_text_node_new_with_xml_node ( xmlNode* xml_node ) None lasso_misc_text_node_set_xml_content ( LassoMiscTextNode* misc_text_node, xmlNode* node ) lasso_error_t lasso_name_id_management_build_request_msg ( LassoNameIdManagement* name_id_management ) lasso_error_t lasso_name_id_management_build_response_msg ( LassoNameIdManagement* name_id_management ) None lasso_name_id_management_destroy ( LassoNameIdManagement* name_id_management ) char* lasso_name_id_management_dump ( LassoNameIdManagement* name_id_management ) GType lasso_name_id_management_get_type ( ) lasso_error_t lasso_name_id_management_init_request ( LassoNameIdManagement* name_id_management, char* remote_provider_id, char* new_name_id, LassoHttpMethod http_method ) LassoNameIdManagement* lasso_name_id_management_new ( LassoServer* server ) LassoNameIdManagement* lasso_name_id_management_new_from_dump ( LassoServer* server, const char* dump ) lasso_error_t lasso_name_id_management_process_request_msg ( LassoNameIdManagement* name_id_management, gchar* request_msg ) lasso_error_t lasso_name_id_management_process_response_msg ( LassoNameIdManagement* name_id_management, gchar* response_msg ) lasso_error_t lasso_name_id_management_validate_request ( LassoNameIdManagement* name_id_management ) lasso_error_t lasso_name_identifier_mapping_build_request_msg ( LassoNameIdentifierMapping* mapping ) lasso_error_t lasso_name_identifier_mapping_build_response_msg ( LassoNameIdentifierMapping* mapping ) None lasso_name_identifier_mapping_destroy ( LassoNameIdentifierMapping* mapping ) GType lasso_name_identifier_mapping_get_type ( ) lasso_error_t lasso_name_identifier_mapping_init_request ( LassoNameIdentifierMapping* mapping, gchar* targetNamespace, gchar* remote_providerID ) LassoNameIdentifierMapping* lasso_name_identifier_mapping_new ( LassoServer* server ) lasso_error_t lasso_name_identifier_mapping_process_request_msg ( LassoNameIdentifierMapping* mapping, gchar* request_msg ) lasso_error_t lasso_name_identifier_mapping_process_response_msg ( LassoNameIdentifierMapping* mapping, gchar* response_msg ) lasso_error_t lasso_name_identifier_mapping_validate_request ( LassoNameIdentifierMapping* mapping ) lasso_error_t lasso_name_registration_build_request_msg ( LassoNameRegistration* name_registration ) lasso_error_t lasso_name_registration_build_response_msg ( LassoNameRegistration* name_registration ) None lasso_name_registration_destroy ( LassoNameRegistration* name_registration ) gchar* lasso_name_registration_dump ( LassoNameRegistration* name_registration ) GType lasso_name_registration_get_type ( ) lasso_error_t lasso_name_registration_init_request ( LassoNameRegistration* name_registration, char* remote_providerID, LassoHttpMethod http_method ) LassoNameRegistration* lasso_name_registration_new ( LassoServer* server ) LassoNameRegistration* lasso_name_registration_new_from_dump ( LassoServer* server, const char* dump ) lasso_error_t lasso_name_registration_process_request_msg ( LassoNameRegistration* name_registration, gchar* request_msg ) lasso_error_t lasso_name_registration_process_response_msg ( LassoNameRegistration* name_registration, gchar* response_msg ) lasso_error_t lasso_name_registration_validate_request ( LassoNameRegistration* name_registration ) None lasso_node_cleanup_original_xmlnodes ( LassoNode* node ) char* lasso_node_debug ( LassoNode* node, int level ) None lasso_node_destroy ( LassoNode* node ) char* lasso_node_dump ( LassoNode* node ) char* lasso_node_export_to_base64 ( LassoNode* node ) char* lasso_node_export_to_ecp_soap_response ( LassoNode* node, const char* assertionConsumerURL ) char* lasso_node_export_to_paos_request ( LassoNode* node, const char* issuer, const char* responseConsumerURL, const char* relay_state ) char* lasso_node_export_to_query ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file ) char* lasso_node_export_to_query_with_password ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file, const char* private_key_file_password ) char* lasso_node_export_to_soap ( LassoNode* node ) gchar* lasso_node_export_to_xml ( LassoNode* node ) const char* lasso_node_get_name ( LassoNode* node ) const char* lasso_node_get_namespace ( LassoNode* node ) xmlNode* lasso_node_get_original_xmlnode ( LassoNode* node ) GType lasso_node_get_type ( ) xmlNode* lasso_node_get_xmlNode ( LassoNode* node, gboolean lasso_dump ) LassoMessageFormat lasso_node_init_from_message ( LassoNode* node, const char* message ) gboolean lasso_node_init_from_query ( LassoNode* node, const char* query ) lasso_error_t lasso_node_init_from_xml ( LassoNode* node, xmlNode* xmlnode ) LassoNode* lasso_node_new ( ) LassoNode* lasso_node_new_from_dump ( const char* dump ) LassoNode* lasso_node_new_from_soap ( const char* soap ) LassoNode* lasso_node_new_from_xmlNode ( xmlNode* node ) None lasso_node_set_custom_namespace ( LassoNode* node, const char* prefix, const char* href ) None lasso_node_set_custom_nodename ( LassoNode* node, const char* nodename ) None lasso_node_set_original_xmlnode ( LassoNode* node, xmlNode* xmlnode ) char* lasso_profile_get_artifact ( LassoProfile* profile ) char* lasso_profile_get_artifact_message ( LassoProfile* profile ) LassoIdentity* lasso_profile_get_identity ( LassoProfile* profile ) LassoNode* lasso_profile_get_nameIdentifier ( LassoProfile* profile ) LassoRequestType lasso_profile_get_request_type_from_soap_msg ( const gchar* soap ) LassoSession* lasso_profile_get_session ( LassoProfile* profile ) LassoProfileSignatureHint lasso_profile_get_signature_hint ( LassoProfile* profile ) lasso_error_t lasso_profile_get_signature_status ( LassoProfile* profile ) LassoProfileSignatureVerifyHint lasso_profile_get_signature_verify_hint ( LassoProfile* profile ) GType lasso_profile_get_type ( ) gboolean lasso_profile_is_identity_dirty ( LassoProfile* profile ) gboolean lasso_profile_is_liberty_query ( const gchar* query ) gboolean lasso_profile_is_saml_query ( const gchar* query ) gboolean lasso_profile_is_session_dirty ( LassoProfile* profile ) None lasso_profile_set_artifact_message ( LassoProfile* profile, const char* message ) lasso_error_t lasso_profile_set_identity_from_dump ( LassoProfile* profile, const gchar* dump ) lasso_error_t lasso_profile_set_session_from_dump ( LassoProfile* profile, const gchar* dump ) None lasso_profile_set_signature_hint ( LassoProfile* profile, LassoProfileSignatureHint signature_hint ) None lasso_profile_set_signature_verify_hint ( LassoProfile* profile, LassoProfileSignatureVerifyHint signature_verify_hint ) lasso_error_t lasso_profile_set_soap_fault_response ( LassoProfile* profile, const char* faultcode, const char* faultstring, GList* details ) LassoProviderRole lasso_profile_sso_role_with ( LassoProfile* profile, const char* remote_provider_id ) gboolean lasso_provider_accept_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type, LassoHttpMethod http_method, gboolean initiate_profile ) gchar* lasso_provider_get_assertion_consumer_service_url ( LassoProvider* provider, const char* service_id ) gchar* lasso_provider_get_base64_succinct_id ( const LassoProvider* provider ) char* lasso_provider_get_cache_duration ( LassoProvider* provider ) gchar* lasso_provider_get_default_name_id_format ( LassoProvider* provider ) LassoEncryptionMode lasso_provider_get_encryption_mode ( LassoProvider* provider ) LassoHttpMethod lasso_provider_get_first_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type ) GList* lasso_provider_get_idp_supported_attributes ( LassoProvider* provider ) GList* lasso_provider_get_metadata_keys_for_role ( LassoProvider* provider, LassoProviderRole role ) GList* lasso_provider_get_metadata_list ( LassoProvider* provider, const char* name ) GList* lasso_provider_get_metadata_list_for_role ( const LassoProvider* provider, LassoProviderRole role, const char* name ) gchar* lasso_provider_get_metadata_one ( LassoProvider* provider, const char* name ) char* lasso_provider_get_metadata_one_for_role ( LassoProvider* provider, LassoProviderRole role, const char* name ) xmlNode* lasso_provider_get_organization ( const LassoProvider* provider ) LassoProtocolConformance lasso_provider_get_protocol_conformance ( const LassoProvider* provider ) LassoProviderRole lasso_provider_get_roles ( LassoProvider* provider ) const char* lasso_provider_get_sp_name_qualifier ( LassoProvider* provider ) GType lasso_provider_get_type ( ) char* lasso_provider_get_valid_until ( LassoProvider* provider ) gboolean lasso_provider_has_protocol_profile ( LassoProvider* provider, LassoMdProtocolType protocol_type, const char* protocol_profile ) gboolean lasso_provider_match_conformance ( LassoProvider* provider, LassoProvider* another_provider ) LassoProvider* lasso_provider_new ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_buffer ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_dump ( const gchar* dump ) LassoSaml2EncryptedElement* lasso_provider_saml2_node_encrypt ( const LassoProvider* provider, LassoNode* lasso_node ) None lasso_provider_set_encryption_mode ( LassoProvider* provider, LassoEncryptionMode encryption_mode ) None lasso_provider_set_encryption_sym_key_type ( LassoProvider* provider, LassoEncryptionSymKeyType encryption_sym_key_type ) lasso_error_t lasso_provider_verify_single_node_signature ( LassoProvider* provider, LassoNode* node, const char* id_attr_name ) None lasso_register_dst_service ( const char* prefix, const char* href ) None lasso_register_idwsf2_dst_service ( const gchar* prefix, const gchar* href ) GType lasso_saml2_action_get_type ( ) LassoNode* lasso_saml2_action_new ( ) LassoNode* lasso_saml2_action_new_with_string ( char* content ) GType lasso_saml2_advice_get_type ( ) LassoNode* lasso_saml2_advice_new ( ) lasso_error_t lasso_saml2_assertion_add_attribute_with_node ( LassoSaml2Assertion* assertion, const char* name, const char* nameformat, LassoNode* content ) None lasso_saml2_assertion_add_audience_restriction ( LassoSaml2Assertion* saml2_assertion, const char* providerID ) None lasso_saml2_assertion_add_proxy_limit ( LassoSaml2Assertion* saml2_assertion, int proxy_count, GList* proxy_audiences ) LassoSaml2AssertionValidationState lasso_saml2_assertion_allows_proxying ( LassoSaml2Assertion* saml2_assertion ) LassoSaml2AssertionValidationState lasso_saml2_assertion_allows_proxying_to ( LassoSaml2Assertion* saml2_assertion, const char* audience ) lasso_error_t lasso_saml2_assertion_decrypt_subject ( LassoSaml2Assertion* assertion, LassoServer* server ) const char* lasso_saml2_assertion_get_in_response_to ( LassoSaml2Assertion* assertion ) LassoProvider* lasso_saml2_assertion_get_issuer_provider ( const LassoSaml2Assertion* saml2_assertion, const LassoServer* server ) LassoSaml2SubjectConfirmationData* lasso_saml2_assertion_get_subject_confirmation_data ( LassoSaml2Assertion* saml2_assertion, gboolean create ) GType lasso_saml2_assertion_get_type ( ) gboolean lasso_saml2_assertion_has_audience_restriction ( LassoSaml2Assertion* saml2_assertion ) gboolean lasso_saml2_assertion_has_one_time_use ( LassoSaml2Assertion* saml2_assertion ) gboolean lasso_saml2_assertion_is_audience_restricted ( LassoSaml2Assertion* saml2_assertion, char* providerID ) LassoNode* lasso_saml2_assertion_new ( ) None lasso_saml2_assertion_set_basic_conditions ( LassoSaml2Assertion* saml2_assertion, time_t tolerance, time_t length, gboolean one_time_use ) None lasso_saml2_assertion_set_one_time_use ( LassoSaml2Assertion* saml2_assertion, gboolean one_time_use ) None lasso_saml2_assertion_set_subject_confirmation_data ( LassoSaml2Assertion* saml2_assertion, time_t tolerance, time_t length, const char* Recipient, const char* InResponseTo, const char* Address ) None lasso_saml2_assertion_set_subject_confirmation_name_id ( LassoSaml2Assertion* saml2_assertion, LassoNode* node ) None lasso_saml2_assertion_set_subject_name_id ( LassoSaml2Assertion* saml2_assertion, LassoNode* node ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_audience ( LassoSaml2Assertion* saml2_assertion, const gchar* audience ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_conditions ( LassoSaml2Assertion* saml2_assertion, const char* relaying_party_providerID ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_time_checks ( LassoSaml2Assertion* saml2_assertion, unsigned int tolerance, time_t now ) GType lasso_saml2_attribute_get_type ( ) LassoNode* lasso_saml2_attribute_new ( ) GType lasso_saml2_attribute_statement_get_type ( ) LassoNode* lasso_saml2_attribute_statement_new ( ) GType lasso_saml2_attribute_value_get_type ( ) LassoSaml2AttributeValue* lasso_saml2_attribute_value_new ( ) GType lasso_saml2_audience_restriction_get_type ( ) LassoNode* lasso_saml2_audience_restriction_new ( ) GType lasso_saml2_authn_context_get_type ( ) LassoNode* lasso_saml2_authn_context_new ( ) GType lasso_saml2_authn_statement_get_type ( ) LassoNode* lasso_saml2_authn_statement_new ( ) GType lasso_saml2_authz_decision_statement_get_type ( ) LassoNode* lasso_saml2_authz_decision_statement_new ( ) GType lasso_saml2_base_idabstract_get_type ( ) LassoNode* lasso_saml2_base_idabstract_new ( ) GType lasso_saml2_condition_abstract_get_type ( ) LassoNode* lasso_saml2_condition_abstract_new ( ) GType lasso_saml2_conditions_get_type ( ) LassoNode* lasso_saml2_conditions_new ( ) LassoSaml2EncryptedElement* lasso_saml2_encrypted_element_build_encrypted_persistent_name_id ( const char* id, const char* idpID, const LassoProvider* provider ) GType lasso_saml2_encrypted_element_get_type ( ) LassoNode* lasso_saml2_encrypted_element_new ( ) lasso_error_t lasso_saml2_encrypted_element_server_decrypt ( LassoSaml2EncryptedElement* encrypted_element, LassoServer* server, LassoNode** decrypted_node ) GType lasso_saml2_evidence_get_type ( ) LassoNode* lasso_saml2_evidence_new ( ) GType lasso_saml2_key_info_confirmation_data_get_type ( ) LassoNode* lasso_saml2_key_info_confirmation_data_new ( ) LassoSaml2NameID* lasso_saml2_name_id_build_persistent ( const char* id, const char* idpID, const char* providerID ) gboolean lasso_saml2_name_id_equals ( LassoSaml2NameID* name_id, LassoSaml2NameID* other_name_id ) GType lasso_saml2_name_id_get_type ( ) LassoNode* lasso_saml2_name_id_new ( ) LassoSaml2NameID* lasso_saml2_name_id_new_with_persistent_format ( const char* id, const char* idpID, const char* providerID ) LassoNode* lasso_saml2_name_id_new_with_string ( char* content ) GType lasso_saml2_one_time_use_get_type ( ) LassoNode* lasso_saml2_one_time_use_new ( ) GType lasso_saml2_proxy_restriction_get_type ( ) LassoNode* lasso_saml2_proxy_restriction_new ( ) GType lasso_saml2_statement_abstract_get_type ( ) LassoNode* lasso_saml2_statement_abstract_new ( ) GType lasso_saml2_subject_confirmation_data_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_data_new ( ) GType lasso_saml2_subject_confirmation_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_new ( ) GType lasso_saml2_subject_get_type ( ) GType lasso_saml2_subject_locality_get_type ( ) LassoNode* lasso_saml2_subject_locality_new ( ) LassoNode* lasso_saml2_subject_new ( ) GType lasso_saml_advice_get_type ( ) LassoNode* lasso_saml_advice_new ( ) GType lasso_saml_assertion_get_type ( ) LassoSamlAssertion* lasso_saml_assertion_new ( ) GType lasso_saml_attribute_designator_get_type ( ) LassoNode* lasso_saml_attribute_designator_new ( ) GType lasso_saml_attribute_get_type ( ) LassoSamlAttribute* lasso_saml_attribute_new ( ) GType lasso_saml_attribute_statement_get_type ( ) LassoSamlAttributeStatement* lasso_saml_attribute_statement_new ( ) GType lasso_saml_attribute_value_get_type ( ) LassoSamlAttributeValue* lasso_saml_attribute_value_new ( ) GType lasso_saml_audience_restriction_condition_get_type ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new_full ( const char* audience ) GType lasso_saml_authentication_statement_get_type ( ) LassoNode* lasso_saml_authentication_statement_new ( ) GType lasso_saml_authority_binding_get_type ( ) LassoNode* lasso_saml_authority_binding_new ( ) GType lasso_saml_condition_abstract_get_type ( ) GType lasso_saml_conditions_get_type ( ) LassoSamlConditions* lasso_saml_conditions_new ( ) GType lasso_saml_name_identifier_get_type ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new_from_xmlNode ( xmlNode* xmlnode ) GType lasso_saml_statement_abstract_get_type ( ) GType lasso_saml_subject_confirmation_get_type ( ) LassoSamlSubjectConfirmation* lasso_saml_subject_confirmation_new ( ) GType lasso_saml_subject_get_type ( ) GType lasso_saml_subject_locality_get_type ( ) LassoNode* lasso_saml_subject_locality_new ( ) LassoNode* lasso_saml_subject_new ( ) GType lasso_saml_subject_statement_abstract_get_type ( ) GType lasso_saml_subject_statement_get_type ( ) LassoNode* lasso_saml_subject_statement_new ( ) GType lasso_samlp2_artifact_resolve_get_type ( ) LassoNode* lasso_samlp2_artifact_resolve_new ( ) GType lasso_samlp2_artifact_response_get_type ( ) LassoNode* lasso_samlp2_artifact_response_new ( ) GType lasso_samlp2_assertion_id_request_get_type ( ) LassoNode* lasso_samlp2_assertion_id_request_new ( ) GType lasso_samlp2_attribute_query_get_type ( ) LassoNode* lasso_samlp2_attribute_query_new ( ) GType lasso_samlp2_authn_query_get_type ( ) LassoNode* lasso_samlp2_authn_query_new ( ) GType lasso_samlp2_authn_request_get_type ( ) LassoNode* lasso_samlp2_authn_request_new ( ) GType lasso_samlp2_authz_decision_query_get_type ( ) LassoNode* lasso_samlp2_authz_decision_query_new ( ) GType lasso_samlp2_extensions_get_type ( ) LassoNode* lasso_samlp2_extensions_new ( ) GType lasso_samlp2_idp_entry_get_type ( ) LassoNode* lasso_samlp2_idp_entry_new ( ) GType lasso_samlp2_idp_list_get_type ( ) LassoNode* lasso_samlp2_idp_list_new ( ) GList* lasso_samlp2_logout_request_get_session_indexes ( LassoSamlp2LogoutRequest* logout_request ) GType lasso_samlp2_logout_request_get_type ( ) LassoNode* lasso_samlp2_logout_request_new ( ) None lasso_samlp2_logout_request_set_session_indexes ( LassoSamlp2LogoutRequest* logout_request, GList* session_index ) GType lasso_samlp2_logout_response_get_type ( ) LassoNode* lasso_samlp2_logout_response_new ( ) GType lasso_samlp2_manage_name_id_request_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_request_new ( ) GType lasso_samlp2_manage_name_id_response_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_response_new ( ) GType lasso_samlp2_name_id_mapping_request_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_request_new ( ) GType lasso_samlp2_name_id_mapping_response_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_response_new ( ) GType lasso_samlp2_name_id_policy_get_type ( ) LassoNode* lasso_samlp2_name_id_policy_new ( ) GType lasso_samlp2_request_abstract_get_type ( ) LassoNode* lasso_samlp2_request_abstract_new ( ) GType lasso_samlp2_requested_authn_context_get_type ( ) LassoNode* lasso_samlp2_requested_authn_context_new ( ) GType lasso_samlp2_response_get_type ( ) LassoNode* lasso_samlp2_response_new ( ) GType lasso_samlp2_scoping_get_type ( ) LassoNode* lasso_samlp2_scoping_new ( ) GType lasso_samlp2_status_code_get_type ( ) LassoNode* lasso_samlp2_status_code_new ( ) GType lasso_samlp2_status_detail_get_type ( ) LassoNode* lasso_samlp2_status_detail_new ( ) GType lasso_samlp2_status_get_type ( ) LassoNode* lasso_samlp2_status_new ( ) GType lasso_samlp2_status_response_get_type ( ) LassoNode* lasso_samlp2_status_response_new ( ) GType lasso_samlp2_subject_query_abstract_get_type ( ) LassoNode* lasso_samlp2_subject_query_abstract_new ( ) GType lasso_samlp2_terminate_get_type ( ) LassoNode* lasso_samlp2_terminate_new ( ) GType lasso_samlp_request_abstract_get_type ( ) GType lasso_samlp_request_get_type ( ) LassoNode* lasso_samlp_request_new ( ) None lasso_samlp_response_abstract_fill ( LassoSamlpResponseAbstract* response, const char* InResponseTo, const char* Recipient ) GType lasso_samlp_response_abstract_get_type ( ) GType lasso_samlp_response_get_type ( ) LassoNode* lasso_samlp_response_new ( ) GType lasso_samlp_status_code_get_type ( ) LassoSamlpStatusCode* lasso_samlp_status_code_new ( ) GType lasso_samlp_status_get_type ( ) LassoSamlpStatus* lasso_samlp_status_new ( ) lasso_error_t lasso_server_add_provider ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) lasso_error_t lasso_server_add_provider_from_buffer ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) None lasso_server_destroy ( LassoServer* server ) gchar* lasso_server_dump ( LassoServer* server ) LassoProvider* lasso_server_get_provider ( const LassoServer* server, const gchar* providerID ) GType lasso_server_get_type ( ) lasso_error_t lasso_server_load_affiliation ( LassoServer* server, const gchar* filename ) LassoServer* lasso_server_new ( const gchar* metadata, const gchar* private_key, const gchar* private_key_password, const gchar* certificate ) LassoServer* lasso_server_new_from_buffers ( const gchar* metadata, const gchar* private_key_content, const gchar* private_key_password, const gchar* certificate_content ) LassoServer* lasso_server_new_from_dump ( const gchar* dump ) lasso_error_t lasso_server_saml2_assertion_setup_signature ( LassoServer* server, LassoSaml2Assertion* saml2_assertion ) lasso_error_t lasso_server_set_encryption_private_key ( LassoServer* server, const gchar* filename_or_buffer ) lasso_error_t lasso_server_set_encryption_private_key_with_password ( LassoServer* server, const gchar* filename_or_buffer, const gchar* password ) lasso_error_t lasso_session_add_assertion ( LassoSession* session, const char* providerID, LassoNode* assertion ) None lasso_session_destroy ( LassoSession* session ) gchar* lasso_session_dump ( LassoSession* session ) LassoNode* lasso_session_get_assertion ( LassoSession* session, const gchar* providerID ) GList* lasso_session_get_assertions ( LassoSession* session, const char* provider_id ) gchar* lasso_session_get_provider_index ( LassoSession* session, gint index ) GType lasso_session_get_type ( ) gboolean lasso_session_is_empty ( LassoSession* session ) LassoSession* lasso_session_new ( ) LassoSession* lasso_session_new_from_dump ( const gchar* dump ) lasso_error_t lasso_session_remove_assertion ( LassoSession* session, const gchar* providerID ) None lasso_set_flag ( char* flag ) lasso_error_t lasso_shutdown ( ) GType lasso_soap_body_get_type ( ) LassoSoapBody* lasso_soap_body_new ( ) LassoSoapBody* lasso_soap_body_new_from_message ( const gchar* message ) GType lasso_soap_detail_get_type ( ) LassoSoapDetail* lasso_soap_detail_new ( ) LassoSoapDetail* lasso_soap_detail_new_from_message ( const gchar* message ) GType lasso_soap_envelope_get_type ( ) LassoSoapEnvelope* lasso_soap_envelope_new ( LassoSoapBody* body ) LassoSoapEnvelope* lasso_soap_envelope_new_from_message ( const gchar* message ) GType lasso_soap_fault_get_type ( ) LassoSoapFault* lasso_soap_fault_new ( ) LassoSoapFault* lasso_soap_fault_new_from_message ( const gchar* message ) LassoSoapFault* lasso_soap_fault_new_full ( const char* faultcode, const char* faultstring ) GType lasso_soap_header_get_type ( ) LassoSoapHeader* lasso_soap_header_new ( ) LassoSoapHeader* lasso_soap_header_new_from_message ( const gchar* message ) const char* lasso_strerror ( int error_code ) lasso-2.9.0/abi/PaxHeaders/abi-2.3.40000644000000000000000000000013013766621500013600 xustar0029 mtime=1608196928.71889494 30 atime=1754992978.149544894 29 ctime=1754993575.20113351 lasso-2.9.0/abi/abi-2.3.40000644000175000017500000021067313766621500015623 0ustar00bdauvergnebdauvergneBACKWARD_COMP_H LASSO_ASSERTION_QUERY_ERROR_ATTRIBUTE_REQUEST_ALREADY_EXIST LASSO_ASSERTION_QUERY_ERROR_NOT_AN_ATTRIBUTE_QUERY LASSO_ASSERTION_QUERY_REQUEST_TYPE_ASSERTION_ID LASSO_ASSERTION_QUERY_REQUEST_TYPE_ATTRIBUTE LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHN LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHZ_DECISION LASSO_ASSERTION_QUERY_REQUEST_TYPE_LAST LASSO_ASSERTION_QUERY_REQUEST_TYPE_UNSET LASSO_CERTIFICATE_ATTRIBUTE LASSO_CHECK_VERSIONABI_COMPATIBLE LASSO_CHECK_VERSION_EXACT LASSO_CHECK_VERSION_NUMERIC LASSO_DATA_SERVICE_ERROR_CANNOT_ADD_ITEM LASSO_DATA_SERVICE_ERROR_UNREGISTERED_DST LASSO_DEFEDERATION_ERROR_MISSING_NAME_IDENTIFIER LASSO_DISCOVERY_ERROR_FAILED_TO_BUILD_ENDPOINT_REFERENCE LASSO_DISCOVERY_ERROR_MISSING_REQUESTED_SERVICE LASSO_DISCOVERY_ERROR_SVC_METADATA_ASSOCIATION_ADD_FAILED LASSO_DISCOVERY_ERROR_SVC_METADATA_REGISTER_FAILED LASSO_DST_ERROR_EMPTY_REQUEST LASSO_DST_ERROR_MALFORMED_QUERY LASSO_DST_ERROR_MISSING_SERVICE_DATA LASSO_DST_ERROR_MODIFY_FAILED LASSO_DST_ERROR_MODIFY_PARTIALLY_FAILED LASSO_DST_ERROR_NEW_DATA_MISSING LASSO_DST_ERROR_NO_DATA LASSO_DST_ERROR_QUERY_FAILED LASSO_DST_ERROR_QUERY_NOT_FOUND LASSO_DST_ERROR_QUERY_PARTIALLY_FAILED LASSO_DS_ERROR_CA_CERT_CHAIN_LOAD_FAILED LASSO_DS_ERROR_CERTIFICATE_LOAD_FAILED LASSO_DS_ERROR_CONTEXT_CREATION_FAILED LASSO_DS_ERROR_DECRYPTION_FAILED LASSO_DS_ERROR_DECRYPTION_FAILED_MISSING_PRIVATE_KEY LASSO_DS_ERROR_DIGEST_COMPUTE_FAILED LASSO_DS_ERROR_ENCRYPTION_FAILED LASSO_DS_ERROR_INVALID_REFERENCE_FOR_SAML LASSO_DS_ERROR_INVALID_SIGALG LASSO_DS_ERROR_INVALID_SIGNATURE LASSO_DS_ERROR_KEYS_MNGR_CREATION_FAILED LASSO_DS_ERROR_KEYS_MNGR_INIT_FAILED LASSO_DS_ERROR_PRIVATE_KEY_LOAD_FAILED LASSO_DS_ERROR_PUBLIC_KEY_LOAD_FAILED LASSO_DS_ERROR_SIGNATURE_FAILED LASSO_DS_ERROR_SIGNATURE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TEMPLATE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TMPL_CREATION_FAILED LASSO_DS_ERROR_SIGNATURE_VERIFICATION_FAILED LASSO_DS_ERROR_TOO_MUCH_REFERENCES LASSO_DS_HREF LASSO_DS_PREFIX LASSO_DURATION_DAY LASSO_DURATION_HOUR LASSO_DURATION_MINUTE LASSO_DURATION_WEEK LASSO_ECP_HREF LASSO_ECP_PREFIX LASSO_ENCRYPTION_MODE_ASSERTION LASSO_ENCRYPTION_MODE_NAMEID LASSO_ENCRYPTION_MODE_NONE LASSO_ENCRYPTION_SYM_KEY_TYPE_3DES LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_128 LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_256 LASSO_ENCRYPTION_SYM_KEY_TYPE_DEFAULT LASSO_ERROR_CAST_FAILED LASSO_ERROR_OUT_OF_MEMORY LASSO_ERROR_UNDEFINED LASSO_ERROR_UNIMPLEMENTED LASSO_HTTP_METHOD_ANY LASSO_HTTP_METHOD_ARTIFACT_GET LASSO_HTTP_METHOD_ARTIFACT_POST LASSO_HTTP_METHOD_GET LASSO_HTTP_METHOD_IDP_INITIATED LASSO_HTTP_METHOD_LAST LASSO_HTTP_METHOD_NONE LASSO_HTTP_METHOD_PAOS LASSO_HTTP_METHOD_POST LASSO_HTTP_METHOD_REDIRECT LASSO_HTTP_METHOD_SOAP LASSO_IDWSF2_DISCOVERY_ERROR_DUPLICATE LASSO_IDWSF2_DISCOVERY_ERROR_FAILED LASSO_IDWSF2_DISCOVERY_ERROR_FORBIDDEN LASSO_IDWSF2_DISCOVERY_ERROR_LOGICAL_DUPLICATE LASSO_IDWSF2_DISCOVERY_ERROR_NOT_FOUND LASSO_IDWSF2_DISCOVERY_ERROR_NO_RESULTS LASSO_IDWSF2_DST_ERROR_DUPLICATE_ITEM LASSO_IDWSF2_DST_ERROR_ITEM_NOT_FOUND LASSO_IDWSF2_DST_ERROR_PARTIAL_FAILURE LASSO_IDWSF2_DST_ERROR_UNKNOWN_STATUS_CODE LASSO_LASSO_HREF LASSO_LASSO_PREFIX LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD_PROTECTED_TRANSPORT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PREVIOUS_SESSION LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SOFTWARE_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_TIME_SYNC_TOKEN LASSO_LIB_AUTHN_CONTEXT_COMPARISON_BETTER LASSO_LIB_AUTHN_CONTEXT_COMPARISON_EXACT LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MAXIMUM LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MINIMUM LASSO_LIB_CONSENT_INAPPLICABLE LASSO_LIB_CONSENT_OBTAINED LASSO_LIB_CONSENT_OBTAINED_CURRENT_EXPLICIT LASSO_LIB_CONSENT_OBTAINED_CURRENT_IMPLICIT LASSO_LIB_CONSENT_OBTAINED_PRIOR LASSO_LIB_CONSENT_UNAVAILABLE LASSO_LIB_HREF LASSO_LIB_MAJOR_VERSION_N LASSO_LIB_MINOR_VERSION_N LASSO_LIB_NAMEID_POLICY_TYPE_ANY LASSO_LIB_NAMEID_POLICY_TYPE_FEDERATED LASSO_LIB_NAMEID_POLICY_TYPE_NONE LASSO_LIB_NAMEID_POLICY_TYPE_ONE_TIME LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENTITYID LASSO_LIB_NAME_IDENTIFIER_FORMAT_FEDERATED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ONE_TIME LASSO_LIB_PREFIX LASSO_LIB_PROTOCOL_PROFILE_BRWS_ART LASSO_LIB_PROTOCOL_PROFILE_BRWS_LECP LASSO_LIB_PROTOCOL_PROFILE_BRWS_POST LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_NIM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_SOAP LASSO_LIB_STATUS_CODE_FEDERATION_DOES_NOT_EXIST LASSO_LIB_STATUS_CODE_INVALID_ASSERTION_CONSUMER_SERVICE_INDEX LASSO_LIB_STATUS_CODE_INVALID_SIGNATURE LASSO_LIB_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_LIB_STATUS_CODE_NO_AVAILABLEIDP LASSO_LIB_STATUS_CODE_NO_PASSIVE LASSO_LIB_STATUS_CODE_NO_SUPPORTEDIDP LASSO_LIB_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_LIB_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_LIB_STATUS_CODE_UNSIGNED_AUTHN_REQUEST LASSO_LIB_STATUS_CODE_UNSUPPORTED_PROFILE LASSO_LOGIN_ERROR_ASSERTION_DOES_NOT_MATCH_REQUEST_ID LASSO_LOGIN_ERROR_ASSERTION_REPLAY LASSO_LOGIN_ERROR_CONSENT_NOT_OBTAINED LASSO_LOGIN_ERROR_FEDERATION_NOT_FOUND LASSO_LOGIN_ERROR_INVALID_ASSERTION_SIGNATURE LASSO_LOGIN_ERROR_INVALID_NAMEIDPOLICY LASSO_LOGIN_ERROR_INVALID_SIGNATURE LASSO_LOGIN_ERROR_NO_DEFAULT_ENDPOINT LASSO_LOGIN_ERROR_REQUEST_DENIED LASSO_LOGIN_ERROR_STATUS_NOT_SUCCESS LASSO_LOGIN_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGIN_ERROR_UNSIGNED_AUTHN_REQUEST LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_ART LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_LECP LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_POST LASSO_LOGIN_PROTOCOL_PROFILE_REDIRECT LASSO_LOGOUT_ERROR_FEDERATION_NOT_FOUND LASSO_LOGOUT_ERROR_REQUEST_DENIED LASSO_LOGOUT_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGOUT_ERROR_UNSUPPORTED_PROFILE LASSO_MD_PROTOCOL_TYPE_ARTIFACT_RESOLUTION LASSO_MD_PROTOCOL_TYPE_ASSERTION_ID_REQUEST LASSO_MD_PROTOCOL_TYPE_ATTRIBUTE LASSO_MD_PROTOCOL_TYPE_AUTHN_QUERY LASSO_MD_PROTOCOL_TYPE_AUTHZ LASSO_MD_PROTOCOL_TYPE_FEDERATION_TERMINATION LASSO_MD_PROTOCOL_TYPE_LAST LASSO_MD_PROTOCOL_TYPE_MANAGE_NAME_ID LASSO_MD_PROTOCOL_TYPE_NAME_IDENTIFIER_MAPPING LASSO_MD_PROTOCOL_TYPE_REGISTER_NAME_IDENTIFIER LASSO_MD_PROTOCOL_TYPE_SINGLE_LOGOUT LASSO_MD_PROTOCOL_TYPE_SINGLE_SIGN_ON LASSO_MESSAGE_FORMAT_BASE64 LASSO_MESSAGE_FORMAT_ERROR LASSO_MESSAGE_FORMAT_QUERY LASSO_MESSAGE_FORMAT_SOAP LASSO_MESSAGE_FORMAT_UNKNOWN LASSO_MESSAGE_FORMAT_XML LASSO_MESSAGE_FORMAT_XSCHEMA_ERROR LASSO_METADATA_HREF LASSO_METADATA_PREFIX LASSO_NAME_IDENTIFIER_MAPPING_ERROR_FORBIDDEN_CALL_ON_THIS_SIDE LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_IDENTIFIER LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_NAMESPACE LASSO_PAOS_HREF LASSO_PAOS_PREFIX LASSO_PARAM_ERROR_BAD_TYPE_OR_NULL_OBJ LASSO_PARAM_ERROR_CHECK_FAILED LASSO_PARAM_ERROR_INVALID_VALUE LASSO_PARAM_ERROR_NON_INITIALIZED_OBJECT LASSO_PRIVATE_KEY_ATTRIBUTE LASSO_PRIVATE_KEY_PASSWORD_ATTRIBUTE LASSO_PRIVATE_STATUS_CODE_FAILED_TO_RESTORE_ARTIFACT LASSO_PROFILE_ERROR_BAD_IDENTITY_DUMP LASSO_PROFILE_ERROR_BAD_SESSION_DUMP LASSO_PROFILE_ERROR_BUILDING_MESSAGE_FAILED LASSO_PROFILE_ERROR_BUILDING_QUERY_FAILED LASSO_PROFILE_ERROR_BUILDING_REQUEST_FAILED LASSO_PROFILE_ERROR_BUILDING_RESPONSE_FAILED LASSO_PROFILE_ERROR_CANNOT_FIND_A_PROVIDER LASSO_PROFILE_ERROR_CANNOT_VERIFY_SIGNATURE LASSO_PROFILE_ERROR_FEDERATION_NOT_FOUND LASSO_PROFILE_ERROR_IDENTITY_NOT_FOUND LASSO_PROFILE_ERROR_INVALID_ARTIFACT LASSO_PROFILE_ERROR_INVALID_ASSERTION LASSO_PROFILE_ERROR_INVALID_ASSERTION_CONDITIONS LASSO_PROFILE_ERROR_INVALID_HTTP_METHOD LASSO_PROFILE_ERROR_INVALID_ISSUER LASSO_PROFILE_ERROR_INVALID_MSG LASSO_PROFILE_ERROR_INVALID_POST_MSG LASSO_PROFILE_ERROR_INVALID_PROTOCOLPROFILE LASSO_PROFILE_ERROR_INVALID_QUERY LASSO_PROFILE_ERROR_INVALID_REQUEST LASSO_PROFILE_ERROR_INVALID_RESPONSE LASSO_PROFILE_ERROR_INVALID_SOAP_MSG LASSO_PROFILE_ERROR_ISSUER_IS_NOT_AN_IDP LASSO_PROFILE_ERROR_MISSING_ARTIFACT LASSO_PROFILE_ERROR_MISSING_ASSERTION LASSO_PROFILE_ERROR_MISSING_ENCRYPTION_PRIVATE_KEY LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE_ADDRESS LASSO_PROFILE_ERROR_MISSING_ISSUER LASSO_PROFILE_ERROR_MISSING_NAME_IDENTIFIER LASSO_PROFILE_ERROR_MISSING_REMOTE_PROVIDERID LASSO_PROFILE_ERROR_MISSING_REQUEST LASSO_PROFILE_ERROR_MISSING_RESOURCE_OFFERING LASSO_PROFILE_ERROR_MISSING_RESPONSE LASSO_PROFILE_ERROR_MISSING_SERVER LASSO_PROFILE_ERROR_MISSING_SERVICE_DESCRIPTION LASSO_PROFILE_ERROR_MISSING_SERVICE_INSTANCE LASSO_PROFILE_ERROR_MISSING_SERVICE_TYPE LASSO_PROFILE_ERROR_MISSING_STATUS_CODE LASSO_PROFILE_ERROR_MISSING_SUBJECT LASSO_PROFILE_ERROR_NAME_IDENTIFIER_NOT_FOUND LASSO_PROFILE_ERROR_RESPONSE_DOES_NOT_MATCH_REQUEST LASSO_PROFILE_ERROR_SESSION_NOT_FOUND LASSO_PROFILE_ERROR_STATUS_NOT_SUCCESS LASSO_PROFILE_ERROR_UNKNOWN_ISSUER LASSO_PROFILE_ERROR_UNKNOWN_PROFILE_URL LASSO_PROFILE_ERROR_UNKNOWN_PROVIDER LASSO_PROFILE_ERROR_UNSUPPORTED_BINDING LASSO_PROFILE_ERROR_UNSUPPORTED_PROFILE LASSO_PROFILE_SIGNATURE_HINT_FORBID LASSO_PROFILE_SIGNATURE_HINT_FORCE LASSO_PROFILE_SIGNATURE_HINT_MAYBE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_FORCE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_IGNORE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_LAST LASSO_PROFILE_SIGNATURE_VERIFY_HINT_MAYBE LASSO_PROTOCOL_LIBERTY_1_0 LASSO_PROTOCOL_LIBERTY_1_1 LASSO_PROTOCOL_LIBERTY_1_2 LASSO_PROTOCOL_NONE LASSO_PROTOCOL_SAML_2_0 LASSO_PROVIDER_ERROR_MISSING_PUBLIC_KEY LASSO_PROVIDER_ROLE_ANY LASSO_PROVIDER_ROLE_ATTRIBUTE_AUTHORITY LASSO_PROVIDER_ROLE_AUTHN_AUTHORITY LASSO_PROVIDER_ROLE_AUTHZ_AUTHORITY LASSO_PROVIDER_ROLE_BOTH LASSO_PROVIDER_ROLE_IDP LASSO_PROVIDER_ROLE_LAST LASSO_PROVIDER_ROLE_NONE LASSO_PROVIDER_ROLE_SP LASSO_PYTHON_HREF LASSO_REGISTRY_ERROR_KEY_EXISTS LASSO_REQUEST_TYPE_DEFEDERATION LASSO_REQUEST_TYPE_DISCO_MODIFY LASSO_REQUEST_TYPE_DISCO_QUERY LASSO_REQUEST_TYPE_DST_MODIFY LASSO_REQUEST_TYPE_DST_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_ASSOCIATION_ADD LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_REGISTER LASSO_REQUEST_TYPE_INVALID LASSO_REQUEST_TYPE_LECP LASSO_REQUEST_TYPE_LOGIN LASSO_REQUEST_TYPE_LOGOUT LASSO_REQUEST_TYPE_NAME_IDENTIFIER_MAPPING LASSO_REQUEST_TYPE_NAME_ID_MANAGEMENT LASSO_REQUEST_TYPE_NAME_REGISTRATION LASSO_REQUEST_TYPE_SASL_REQUEST LASSO_SAML2_ACTION_GHPP_GET LASSO_SAML2_ACTION_GHPP_HEAD LASSO_SAML2_ACTION_GHPP_POST LASSO_SAML2_ACTION_GHPP_PUT LASSO_SAML2_ACTION_NAMESPACE_GHPP LASSO_SAML2_ACTION_NAMESPACE_RWEDC LASSO_SAML2_ACTION_NAMESPACE_RWEDC_NEGATION LASSO_SAML2_ACTION_NAMESPACE_UNIX LASSO_SAML2_ACTION_RWEDC_CONTROL LASSO_SAML2_ACTION_RWEDC_DELETE LASSO_SAML2_ACTION_RWEDC_EXECUTE LASSO_SAML2_ACTION_RWEDC_NEGATION LASSO_SAML2_ACTION_RWEDC_READ LASSO_SAML2_ACTION_RWEDC_WRITE LASSO_SAML2_ASSERTION_HREF LASSO_SAML2_ASSERTION_INDETERMINATE LASSO_SAML2_ASSERTION_INVALID LASSO_SAML2_ASSERTION_PREFIX LASSO_SAML2_ASSERTION_VALID LASSO_SAML2_ATTRIBUTE_NAME_EPR LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_BASIC LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_UNSPECIFIED LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_URI LASSO_SAML2_ATTRIBUTE_PROFILE_BASIC LASSO_SAML2_ATTRIBUTE_PROFILE_DCE LASSO_SAML2_ATTRIBUTE_PROFILE_UUID LASSO_SAML2_ATTRIBUTE_PROFILE_X500 LASSO_SAML2_AUTHN_CONTEXT_AUTHENTICATED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_KERBEROS LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_NOMAD_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_PASSWORD_PROTECTED_TRANSPORT LASSO_SAML2_AUTHN_CONTEXT_PERSONALIZED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PGP LASSO_SAML2_AUTHN_CONTEXT_PREVIOUS_SESSION LASSO_SAML2_AUTHN_CONTEXT_SECURE_REMOTE_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD_PKI LASSO_SAML2_AUTHN_CONTEXT_SOFTWARE_PKI LASSO_SAML2_AUTHN_CONTEXT_SPKI LASSO_SAML2_AUTHN_CONTEXT_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_TIME_SYNC_TOKEN LASSO_SAML2_AUTHN_CONTEXT_TLS_CLIENT LASSO_SAML2_AUTHN_CONTEXT_UNSPECIFIED LASSO_SAML2_AUTHN_CONTEXT_X509 LASSO_SAML2_AUTHN_CONTEXT_XMLDSIG LASSO_SAML2_CONFIRMATION_METHOD_BEARER LASSO_SAML2_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML2_CONSENT_EXPLICIT LASSO_SAML2_CONSENT_IMPLICIT LASSO_SAML2_CONSENT_INAPPLICABLE LASSO_SAML2_CONSENT_OBTAINED LASSO_SAML2_CONSENT_PRIOR LASSO_SAML2_CONSENT_UNAVAILABLE LASSO_SAML2_DEFLATE_ENCODING LASSO_SAML2_FIELD_ARTIFACT LASSO_SAML2_FIELD_ENCODING LASSO_SAML2_FIELD_RELAYSTATE LASSO_SAML2_FIELD_REQUEST LASSO_SAML2_FIELD_RESPONSE LASSO_SAML2_FIELD_SIGALG LASSO_SAML2_FIELD_SIGNATURE LASSO_SAML2_METADATA_BINDING_ARTIFACT LASSO_SAML2_METADATA_BINDING_PAOS LASSO_SAML2_METADATA_BINDING_POST LASSO_SAML2_METADATA_BINDING_REDIRECT LASSO_SAML2_METADATA_BINDING_SOAP LASSO_SAML2_METADATA_BINDING_URI LASSO_SAML2_METADATA_HREF LASSO_SAML2_METADATA_PREFIX LASSO_SAML2_NAME_IDENTIFIER_FORMAT_EMAIL LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENTITY LASSO_SAML2_NAME_IDENTIFIER_FORMAT_KERBEROS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_PERSISTENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_TRANSIENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_UNSPECIFIED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_WINDOWS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_X509 LASSO_SAML2_PROTOCOL_HREF LASSO_SAML2_PROTOCOL_PREFIX LASSO_SAML2_STATUS_CODE_AUTHN_FAILED LASSO_SAML2_STATUS_CODE_INVALID_ATTR_NAME LASSO_SAML2_STATUS_CODE_INVALID_NAME_ID_POLICY LASSO_SAML2_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_SAML2_STATUS_CODE_NO_AVAILABLE_IDP LASSO_SAML2_STATUS_CODE_NO_PASSIVE LASSO_SAML2_STATUS_CODE_NO_SUPPORTED_IDP LASSO_SAML2_STATUS_CODE_PARTIAL_LOGOUT LASSO_SAML2_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_SAML2_STATUS_CODE_REQUESTER LASSO_SAML2_STATUS_CODE_REQUEST_DENIED LASSO_SAML2_STATUS_CODE_REQUEST_UNSUPPORTED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML2_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML2_STATUS_CODE_RESPONDER LASSO_SAML2_STATUS_CODE_SUCCESS LASSO_SAML2_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML2_STATUS_CODE_UNKNOWN_ATTR_PROFILE LASSO_SAML2_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_SAML2_STATUS_CODE_UNSUPPORTED_BINDING LASSO_SAML2_STATUS_CODE_VERSION_MISMATCH LASSO_SAML_ASSERTION_HREF LASSO_SAML_ASSERTION_PREFIX LASSO_SAML_AUTHENTICATION_METHODS_PKI LASSO_SAML_AUTHENTICATION_METHOD_HARDWARE_TOKEN LASSO_SAML_AUTHENTICATION_METHOD_KERBEROS LASSO_SAML_AUTHENTICATION_METHOD_LIBERTY LASSO_SAML_AUTHENTICATION_METHOD_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_PGP LASSO_SAML_AUTHENTICATION_METHOD_SECURE_REMOTE_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_SMARTCARD_PKI LASSO_SAML_AUTHENTICATION_METHOD_SOFTWARE_PKI LASSO_SAML_AUTHENTICATION_METHOD_UNSPECIFIED LASSO_SAML_AUTHENTICATION_METHOD_XKMS LASSO_SAML_AUTHENTICATION_METHOD_XMLD_SIG LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT01 LASSO_SAML_CONFIRMATION_METHOD_BEARER LASSO_SAML_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML_CONFIRMATION_METHOD_SENDER_VOUCHES LASSO_SAML_MAJOR_VERSION_N LASSO_SAML_MINOR_VERSION_N LASSO_SAML_PROTOCOL_HREF LASSO_SAML_PROTOCOL_PREFIX LASSO_SAML_STATUS_CODE_REQUESTER LASSO_SAML_STATUS_CODE_REQUEST_DENIED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML_STATUS_CODE_RESPONDER LASSO_SAML_STATUS_CODE_SUCCESS LASSO_SAML_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML_STATUS_CODE_VERSION_MISMATCH LASSO_SERVER_ERROR_ADD_PROVIDER_FAILED LASSO_SERVER_ERROR_ADD_PROVIDER_PROTOCOL_MISMATCH LASSO_SERVER_ERROR_INVALID_XML LASSO_SERVER_ERROR_PROVIDER_NOT_FOUND LASSO_SERVER_ERROR_SET_ENCRYPTION_PRIVATE_KEY_FAILED LASSO_SIGNATURE_METHOD_ATTRIBUTE LASSO_SIGNATURE_METHOD_DSA_SHA1 LASSO_SIGNATURE_METHOD_LAST LASSO_SIGNATURE_METHOD_RSA_SHA1 LASSO_SIGNATURE_TYPE_ATTRIBUTE LASSO_SIGNATURE_TYPE_LAST LASSO_SIGNATURE_TYPE_NONE LASSO_SIGNATURE_TYPE_SIMPLE LASSO_SIGNATURE_TYPE_WITHX509 LASSO_SOAP_ENV_ACTOR LASSO_SOAP_ENV_HREF LASSO_SOAP_ENV_PREFIX LASSO_SOAP_ERROR_MISSING_BODY LASSO_SOAP_ERROR_MISSING_ENVELOPE LASSO_SOAP_ERROR_MISSING_HEADER LASSO_SOAP_ERROR_MISSING_SOAP_FAULT_DETAIL LASSO_SOAP_ERROR_REDIRECT_REQUEST_FAULT LASSO_SOAP_FAULT_CODE_CLIENT LASSO_SOAP_FAULT_CODE_MUST_UNDERSTAND LASSO_SOAP_FAULT_CODE_SERVER LASSO_SOAP_FAULT_CODE_VERSION_MISMATCH LASSO_SOAP_FAULT_REDIRECT_REQUEST LASSO_WSF_ENABLED LASSO_WSF_PROFILE_ERROR_INVALID_OR_MISSING_REFERENCE_TO_MESSAGE_ID LASSO_WSF_PROFILE_ERROR_MISSING_ASSERTION_ID LASSO_WSF_PROFILE_ERROR_MISSING_CORRELATION LASSO_WSF_PROFILE_ERROR_MISSING_CREDENTIAL_REF LASSO_WSF_PROFILE_ERROR_MISSING_DESCRIPTION LASSO_WSF_PROFILE_ERROR_MISSING_ENDPOINT LASSO_WSF_PROFILE_ERROR_MISSING_RESOURCE_ID LASSO_WSF_PROFILE_ERROR_MISSING_SECURITY LASSO_WSF_PROFILE_ERROR_MISSING_SENDER_ID LASSO_WSF_PROFILE_ERROR_REDIRECT_REQUEST LASSO_WSF_PROFILE_ERROR_REDIRECT_REQUEST_UNSUPPORTED_BY_REQUESTER LASSO_WSF_PROFILE_ERROR_SECURITY_MECHANISM_CHECK_FAILED LASSO_WSF_PROFILE_ERROR_SERVER_INTERACTION_REQUIRED LASSO_WSF_PROFILE_ERROR_SERVER_INTERACTION_REQUIRED_FOR_DATA LASSO_WSF_PROFILE_ERROR_SOAP_FAULT LASSO_WSF_PROFILE_ERROR_UNKNOWN_STATUS_CODE LASSO_WSF_PROFILE_ERROR_UNSUPPORTED_SECURITY_MECHANISM LASSO_WSSEC_ERROR_BAD_PASSWORD LASSO_WSSEC_ERROR_MISSING_SECURITY_TOKEN LASSO_WSUTIL1_HREF LASSO_WSUTIL1_PREFIX LASSO_XML_ERROR_ATTR_NOT_FOUND LASSO_XML_ERROR_ATTR_VALUE_NOT_FOUND LASSO_XML_ERROR_INVALID_FILE LASSO_XML_ERROR_MISSING_NAMESPACE LASSO_XML_ERROR_NODE_CONTENT_NOT_FOUND LASSO_XML_ERROR_NODE_NOT_FOUND LASSO_XML_ERROR_OBJECT_CONSTRUCTION_FAILED LASSO_XML_ERROR_SCHEMA_INVALID_FRAGMENT LASSO_XSI_HREF LASSO_XSI_PREFIX struct LassoAssertionQuery { LassoAssertionQueryPrivate* private_data } LassoAssertionQueryRequestType LassoCheckVersionMode struct LassoDefederation { } struct LassoDsKeyInfo { LassoDsKeyValue* KeyValue } struct LassoDsKeyValue { LassoDsRsaKeyValue* RSAKeyValue } struct LassoDsRsaKeyValue { char* Modulus, char* Exponent } struct LassoEcp { gchar* assertionConsumerURL, LassoEcpPrivate* private_data } LassoEncryptionMode LassoEncryptionSymKeyType struct LassoFederation { gchar* remote_providerID, LassoNode* local_nameIdentifier, LassoNode* remote_nameIdentifier, LassoFederationPrivate* private_data } LassoHttpMethod struct LassoIdentity { GHashTable* federations, gboolean is_dirty, LassoIdentityPrivate* private_data } struct LassoLecp { LassoLibAuthnRequestEnvelope* authnRequestEnvelope, LassoLibAuthnResponseEnvelope* authnResponseEnvelope, char* assertionConsumerServiceURL } struct LassoLibAssertion { char* InResponseTo } struct LassoLibAuthenticationStatement { LassoLibAuthnContext* AuthnContext, char* ReauthenticateOnOrAfter, char* SessionIndex } struct LassoLibAuthnContext { char* AuthnContextClassRef, char* AuthnContextStatementRef } struct LassoLibAuthnRequest { GList* Extension, char* ProviderID, char* AffiliationID, char* NameIDPolicy, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolProfile, char* AssertionConsumerServiceID, LassoLibRequestAuthnContext* RequestAuthnContext, char* RelayState, LassoLibScoping* Scoping, char* consent } struct LassoLibAuthnRequestEnvelope { GList* Extension, LassoLibAuthnRequest* AuthnRequest, char* ProviderID, char* ProviderName, char* AssertionConsumerServiceURL, LassoLibIDPList* IDPList, gboolean IsPassive } struct LassoLibAuthnResponse { GList* Extension, char* ProviderID, char* RelayState, char* consent } struct LassoLibAuthnResponseEnvelope { GList* Extension, LassoLibAuthnResponse* AuthnResponse, char* AssertionConsumerServiceURL } struct LassoLibFederationTerminationNotification { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* consent, char* RelayState } struct LassoLibIDPEntries { GList* IDPEntry } struct LassoLibIDPEntry { char* ProviderID, char* ProviderName, char* Loc } struct LassoLibIDPList { LassoLibIDPEntries* IDPEntries, char* GetComplete } struct LassoLibLogoutRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* SessionIndex, char* RelayState, char* consent, char* NotOnOrAfter } struct LassoLibLogoutResponse { } struct LassoLibNameIdentifierMappingRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* TargetNamespace, char* consent } struct LassoLibNameIdentifierMappingResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, LassoSamlNameIdentifier* NameIdentifier } struct LassoLibRegisterNameIdentifierRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* IDPProvidedNameIdentifier, LassoSamlNameIdentifier* SPProvidedNameIdentifier, LassoSamlNameIdentifier* OldProvidedNameIdentifier, char* RelayState } struct LassoLibRegisterNameIdentifierResponse { } struct LassoLibRequestAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextStatementRef, char* AuthnContextComparison } struct LassoLibScoping { int ProxyCount, LassoLibIDPList* IDPList } struct LassoLibStatusResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, char* RelayState } struct LassoLibSubject { LassoSamlNameIdentifier* IDPProvidedNameIdentifier } struct LassoLogin { LassoLoginProtocolProfile protocolProfile, gchar* assertionArtifact, LassoSamlAssertion* assertion, gchar* nameIDPolicy, LassoHttpMethod http_method, LassoLoginPrivate* private_data } LassoLoginProtocolProfile struct LassoLogout { LassoNode* initial_request, LassoNode* initial_response, gchar* initial_remote_providerID, gint providerID_index, LassoHttpMethod initial_http_request_method, LassoLogoutPrivate* private_data } LassoMdProtocolType LassoMessageFormat struct LassoMiscTextNode { char* content, char* name, char* ns_href, char* ns_prefix, gboolean text_child } struct LassoNameIdManagement { } struct LassoNameIdentifierMapping { gchar* targetNameIdentifier } struct LassoNameRegistration { LassoSamlNameIdentifier* oldNameIdentifier } struct LassoNode { } struct LassoProfile { LassoServer* server, LassoNode* request, LassoNode* response, LassoNode* nameIdentifier, gchar* remote_providerID, gchar* msg_url, gchar* msg_body, gchar* msg_relayState, LassoIdentity* identity, LassoSession* session, LassoHttpMethod http_request_method, gint signature_status, LassoProfilePrivate* private_data } LassoProfileSignatureHint LassoProfileSignatureVerifyHint LassoProtocolConformance struct LassoProvider { gchar* ProviderID, LassoProviderRole role, char* metadata_filename, gchar* public_key, gchar* ca_cert_chain, LassoProviderPrivate* private_data } LassoProviderRole LassoRequestType struct LassoSaml2Action { char* content, char* Namespace } struct LassoSaml2Advice { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2Assertion { LassoSaml2NameID* Issuer, LassoSaml2Subject* Subject, LassoSaml2Conditions* Conditions, LassoSaml2Advice* Advice, GList* Statement, GList* AuthnStatement, GList* AuthzDecisionStatement, GList* AttributeStatement, char* Version, char* ID, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file, gboolean encryption_activated, char* encryption_public_key_str, LassoEncryptionSymKeyType encryption_sym_key_type } LassoSaml2AssertionValidationState struct LassoSaml2Attribute { GList* AttributeValue, char* Name, char* NameFormat, char* FriendlyName } struct LassoSaml2AttributeStatement { GList* Attribute, GList* EncryptedAttribute } struct LassoSaml2AttributeValue { GList* any } struct LassoSaml2AudienceRestriction { char* Audience } struct LassoSaml2AuthnContext { char* AuthnContextClassRef, char* AuthnContextDeclRef, char* AuthenticatingAuthority } struct LassoSaml2AuthnStatement { LassoSaml2SubjectLocality* SubjectLocality, LassoSaml2AuthnContext* AuthnContext, char* AuthnInstant, char* SessionIndex, char* SessionNotOnOrAfter } struct LassoSaml2AuthzDecisionStatement { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource, char* Decision } struct LassoSaml2BaseIDAbstract { char* NameQualifier, char* SPNameQualifier } struct LassoSaml2ConditionAbstract { } struct LassoSaml2Conditions { GList* Condition, GList* AudienceRestriction, GList* OneTimeUse, GList* ProxyRestriction, char* NotBefore, char* NotOnOrAfter } struct LassoSaml2EncryptedElement { xmlNode* EncryptedData, GList* EncryptedKey, LassoNode* original_data } struct LassoSaml2Evidence { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2KeyInfoConfirmationData { } struct LassoSaml2NameID { char* content, char* Format, char* SPProvidedID, char* NameQualifier, char* SPNameQualifier } struct LassoSaml2OneTimeUse { } struct LassoSaml2ProxyRestriction { char* Audience, char* Count } struct LassoSaml2StatementAbstract { } struct LassoSaml2Subject { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmation* SubjectConfirmation } struct LassoSaml2SubjectConfirmation { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmationData* SubjectConfirmationData, char* Method } struct LassoSaml2SubjectConfirmationData { char* NotBefore, char* NotOnOrAfter, char* Recipient, char* InResponseTo, char* Address } struct LassoSaml2SubjectLocality { char* Address, char* DNSName } struct LassoSamlAdvice { GList* AssertionIDReference, LassoNode* Assertion } struct LassoSamlAssertion { LassoSamlConditions* Conditions, LassoSamlAdvice* Advice, LassoSamlSubjectStatement* SubjectStatement, LassoSamlAuthenticationStatement* AuthenticationStatement, LassoSamlAttributeStatement* AttributeStatement, int MajorVersion, int MinorVersion, char* AssertionID, char* Issuer, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlAttribute { gchar* attributeName, gchar* attributeNameSpace, GList* AttributeValue } struct LassoSamlAttributeDesignator { char* AttributeName, char* AttributeNamespace } struct LassoSamlAttributeStatement { GList* Attribute } struct LassoSamlAttributeValue { GList* any } struct LassoSamlAudienceRestrictionCondition { GList* Audience } struct LassoSamlAuthenticationStatement { LassoSamlSubjectLocality* SubjectLocality, GList* AuthorityBinding, char* AuthenticationMethod, char* AuthenticationInstant } struct LassoSamlAuthorityBinding { char* AuthorityKind, char* Location, char* Binding } struct LassoSamlConditionAbstract { } struct LassoSamlConditions { GList* Condition, GList* AudienceRestrictionCondition, char* NotBefore, char* NotOnOrAfter } struct LassoSamlNameIdentifier { char* NameQualifier, char* Format, char* content } struct LassoSamlStatementAbstract { } struct LassoSamlSubject { LassoSamlNameIdentifier* NameIdentifier, LassoSamlSubjectConfirmation* SubjectConfirmation, LassoSaml2EncryptedElement* EncryptedNameIdentifier } struct LassoSamlSubjectConfirmation { GList* ConfirmationMethod, char* SubjectConfirmationData, LassoDsKeyInfo* KeyInfo } struct LassoSamlSubjectLocality { char* IPAddress, char* DNSAddress } struct LassoSamlSubjectStatement { } struct LassoSamlSubjectStatementAbstract { LassoSamlSubject* Subject } struct LassoSamlp2ArtifactResolve { char* Artifact } struct LassoSamlp2ArtifactResponse { LassoNode* any } struct LassoSamlp2AssertionIDRequest { char* AssertionIDRef } struct LassoSamlp2AttributeQuery { GList* Attribute } struct LassoSamlp2AuthnQuery { LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, char* SessionIndex } struct LassoSamlp2AuthnRequest { LassoSaml2Subject* Subject, LassoSamlp2NameIDPolicy* NameIDPolicy, LassoSaml2Conditions* Conditions, LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, LassoSamlp2Scoping* Scoping, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolBinding, int AssertionConsumerServiceIndex, char* AssertionConsumerServiceURL, int AttributeConsumingServiceIndex, char* ProviderName, G_GNUC_DEPRECATED char } struct LassoSamlp2AuthzDecisionQuery { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource } struct LassoSamlp2Extensions { } struct LassoSamlp2IDPEntry { char* ProviderID, char* Name, char* Loc } struct LassoSamlp2IDPList { LassoSamlp2IDPEntry* IDPEntry, char* GetComplete } struct LassoSamlp2LogoutRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* SessionIndex, char* Reason, char* NotOnOrAfter, G_GNUC_DEPRECATED char } struct LassoSamlp2LogoutResponse { G_GNUC_DEPRECATED char } struct LassoSamlp2ManageNameIDRequest { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* NewID, LassoSaml2EncryptedElement* NewEncryptedID, LassoSamlp2Terminate* Terminate } struct LassoSamlp2ManageNameIDResponse { } struct LassoSamlp2NameIDMappingRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSamlp2NameIDPolicy* NameIDPolicy } struct LassoSamlp2NameIDMappingResponse { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID } struct LassoSamlp2NameIDPolicy { char* Format, char* SPNameQualifier, gboolean AllowCreate } struct LassoSamlp2RequestAbstract { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, char* ID, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2RequestedAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextDeclRef, char* Comparison } struct LassoSamlp2Response { GList* Assertion, GList* EncryptedAssertion } struct LassoSamlp2Scoping { LassoSamlp2IDPList* IDPList, char* RequesterID, char* ProxyCount } struct LassoSamlp2Status { LassoSamlp2StatusCode* StatusCode, char* StatusMessage, LassoSamlp2StatusDetail* StatusDetail } struct LassoSamlp2StatusCode { LassoSamlp2StatusCode* StatusCode, char* Value } struct LassoSamlp2StatusDetail { } struct LassoSamlp2StatusResponse { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, LassoSamlp2Status* Status, char* ID, char* InResponseTo, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2SubjectQueryAbstract { LassoSaml2Subject* Subject } struct LassoSamlp2Terminate { } struct LassoSamlpRequest { char* AssertionArtifact } struct LassoSamlpRequestAbstract { GList* RespondWith, char* RequestID, int MajorVersion, int MinorVersion, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpResponse { LassoSamlpStatus* Status, GList* Assertion } struct LassoSamlpResponseAbstract { char* ResponseID, char* InResponseTo, int MajorVersion, int MinorVersion, char* IssueInstant, char* Recipient, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpStatus { LassoSamlpStatusCode* StatusCode, char* StatusMessage } struct LassoSamlpStatusCode { LassoSamlpStatusCode* StatusCode, char* Value } struct LassoServer { GHashTable* providers, GHashTable* services, gchar* private_key, gchar* private_key_password, gchar* certificate, LassoSignatureMethod signature_method, LassoServerPrivate* private_data } struct LassoSession { GHashTable* assertions, gboolean is_dirty, LassoSessionPrivate* private_data } LassoSignatureMethod LassoSignatureType struct LassoSoapBody { GList* any, gchar* Id } struct LassoSoapDetail { GList* any } struct LassoSoapEnvelope { LassoSoapHeader* Header, LassoSoapBody* Body } struct LassoSoapFault { gchar* faultcode, gchar* faultstring, GList* faultactor, LassoSoapDetail* Detail } struct LassoSoapHeader { GList* Other } lasso_error_t lasso_assertion_query_add_attribute_request ( LassoAssertionQuery* assertion_query, char* format, char* name ) lasso_error_t lasso_assertion_query_build_request_msg ( LassoAssertionQuery* assertion_query ) lasso_error_t lasso_assertion_query_build_response_msg ( LassoAssertionQuery* assertion_query ) None lasso_assertion_query_destroy ( LassoAssertionQuery* assertion_query ) LassoAssertionQueryRequestType lasso_assertion_query_get_request_type ( LassoAssertionQuery* assertion_query ) GType lasso_assertion_query_get_type ( ) lasso_error_t lasso_assertion_query_init_request ( LassoAssertionQuery* assertion_query, char* remote_provider_id, LassoHttpMethod http_method, LassoAssertionQueryRequestType query_request_type ) LassoAssertionQuery* lasso_assertion_query_new ( LassoServer* server ) lasso_error_t lasso_assertion_query_process_request_msg ( LassoAssertionQuery* assertion_query, gchar* request_msg ) lasso_error_t lasso_assertion_query_process_response_msg ( LassoAssertionQuery* assertion_query, gchar* response_msg ) lasso_error_t lasso_assertion_query_validate_request ( LassoAssertionQuery* assertion_query ) char* lasso_build_unique_id ( unsigned int size ) int lasso_check_version ( int major, int minor, int subminor, LassoCheckVersionMode mode ) lasso_error_t lasso_defederation_build_notification_msg ( LassoDefederation* defederation ) None lasso_defederation_destroy ( LassoDefederation* defederation ) GType lasso_defederation_get_type ( ) lasso_error_t lasso_defederation_init_notification ( LassoDefederation* defederation, gchar* remote_providerID, LassoHttpMethod http_method ) LassoDefederation* lasso_defederation_new ( LassoServer* server ) lasso_error_t lasso_defederation_process_notification_msg ( LassoDefederation* defederation, gchar* notification_msg ) lasso_error_t lasso_defederation_validate_notification ( LassoDefederation* defederation ) GType lasso_ds_key_info_get_type ( ) LassoDsKeyInfo* lasso_ds_key_info_new ( ) GType lasso_ds_key_value_get_type ( ) LassoDsKeyValue* lasso_ds_key_value_new ( ) GType lasso_ds_rsa_key_value_get_type ( ) LassoDsRsaKeyValue* lasso_ds_rsa_key_value_new ( ) None lasso_ecp_destroy ( LassoEcp* ecp ) GType lasso_ecp_get_type ( ) LassoEcp* lasso_ecp_new ( LassoServer* server ) lasso_error_t lasso_ecp_process_authn_request_msg ( LassoEcp* ecp, const char* authn_request_msg ) lasso_error_t lasso_ecp_process_response_msg ( LassoEcp* ecp, const char* response_msg ) None lasso_federation_build_local_name_identifier ( LassoFederation* federation, const gchar* nameQualifier, const gchar* format, const gchar* content ) None lasso_federation_destroy ( LassoFederation* federation ) GType lasso_federation_get_type ( ) LassoFederation* lasso_federation_new ( const gchar* remote_providerID ) gboolean lasso_federation_verify_name_identifier ( LassoFederation* federation, LassoNode* name_identifier ) char* lasso_get_prefix_for_dst_service_href ( const char* href ) gchar* lasso_get_prefix_for_idwsf2_dst_service_href ( const gchar* href ) None lasso_identity_destroy ( LassoIdentity* identity ) gchar* lasso_identity_dump ( LassoIdentity* identity ) LassoFederation* lasso_identity_get_federation ( LassoIdentity* identity, const char* providerID ) GType lasso_identity_get_type ( ) LassoIdentity* lasso_identity_new ( ) LassoIdentity* lasso_identity_new_from_dump ( const gchar* dump ) lasso_error_t lasso_init ( ) lasso_error_t lasso_lecp_build_authn_request_envelope_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_request_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_response_envelope_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_response_msg ( LassoLecp* lecp ) None lasso_lecp_destroy ( LassoLecp* lecp ) GType lasso_lecp_get_type ( ) lasso_error_t lasso_lecp_init_authn_request ( LassoLecp* lecp, const char* remote_providerID ) LassoLecp* lasso_lecp_new ( LassoServer* server ) lasso_error_t lasso_lecp_process_authn_request_envelope_msg ( LassoLecp* lecp, const char* request_msg ) lasso_error_t lasso_lecp_process_authn_request_msg ( LassoLecp* lecp, const char* authn_request_msg ) lasso_error_t lasso_lecp_process_authn_response_envelope_msg ( LassoLecp* lecp, const char* response_msg ) GType lasso_lib_assertion_get_type ( ) LassoLibAssertion* lasso_lib_assertion_new ( ) LassoLibAssertion* lasso_lib_assertion_new_full ( const char* issuer, const char* requestID, const char* audience, const char* notBefore, const char* notOnOrAfter ) GType lasso_lib_authentication_statement_get_type ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new_full ( const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, LassoSamlNameIdentifier* sp_identifier, LassoSamlNameIdentifier* idp_identifier ) GType lasso_lib_authn_context_get_type ( ) LassoNode* lasso_lib_authn_context_new ( ) GType lasso_lib_authn_request_envelope_get_type ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new_full ( LassoLibAuthnRequest* authnRequest, char* providerID, char* assertionConsumerServiceURL ) GType lasso_lib_authn_request_get_type ( ) LassoLibAuthnRequest* lasso_lib_authn_request_new ( ) GType lasso_lib_authn_response_envelope_get_type ( ) LassoLibAuthnResponseEnvelope* lasso_lib_authn_response_envelope_new ( LassoLibAuthnResponse* response, char* assertionConsumerServiceURL ) GType lasso_lib_authn_response_get_type ( ) LassoNode* lasso_lib_authn_response_new ( char* providerID, LassoLibAuthnRequest* request ) GType lasso_lib_federation_termination_notification_get_type ( ) LassoNode* lasso_lib_federation_termination_notification_new ( ) LassoNode* lasso_lib_federation_termination_notification_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_idp_entries_get_type ( ) LassoNode* lasso_lib_idp_entries_new ( ) GType lasso_lib_idp_entry_get_type ( ) LassoNode* lasso_lib_idp_entry_new ( ) GType lasso_lib_idp_list_get_type ( ) LassoNode* lasso_lib_idp_list_new ( ) GType lasso_lib_logout_request_get_type ( ) LassoNode* lasso_lib_logout_request_new ( ) LassoNode* lasso_lib_logout_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_logout_response_get_type ( ) LassoNode* lasso_lib_logout_response_new ( ) LassoNode* lasso_lib_logout_response_new_full ( char* providerID, const char* statusCodeValue, LassoLibLogoutRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_request_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, const char* targetNamespace, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_response_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new_full ( char* provideRID, const char* statusCodeValue, LassoLibNameIdentifierMappingRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_request_get_type ( ) LassoNode* lasso_lib_register_name_identifier_request_new ( ) LassoNode* lasso_lib_register_name_identifier_request_new_full ( const char* providerID, LassoSamlNameIdentifier* idpNameIdentifier, LassoSamlNameIdentifier* spNameIdentifier, LassoSamlNameIdentifier* oldNameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_response_get_type ( ) LassoNode* lasso_lib_register_name_identifier_response_new ( ) LassoNode* lasso_lib_register_name_identifier_response_new_full ( const char* providerID, const char* statusCodeValue, LassoLibRegisterNameIdentifierRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_request_authn_context_get_type ( ) LassoLibRequestAuthnContext* lasso_lib_request_authn_context_new ( ) GType lasso_lib_scoping_get_type ( ) LassoLibScoping* lasso_lib_scoping_new ( ) GType lasso_lib_status_response_get_type ( ) LassoNode* lasso_lib_status_response_new ( ) GType lasso_lib_subject_get_type ( ) LassoLibSubject* lasso_lib_subject_new ( ) lasso_error_t lasso_login_accept_sso ( LassoLogin* login ) lasso_error_t lasso_login_build_artifact_msg ( LassoLogin* login, LassoHttpMethod http_method ) lasso_error_t lasso_login_build_assertion ( LassoLogin* login, const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, const char* notBefore, const char* notOnOrAfter ) lasso_error_t lasso_login_build_authn_request_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_authn_response_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_request_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_response_msg ( LassoLogin* login, gchar* remote_providerID ) None lasso_login_destroy ( LassoLogin* login ) gchar* lasso_login_dump ( LassoLogin* login ) LassoNode* lasso_login_get_assertion ( LassoLogin* login ) GType lasso_login_get_type ( ) lasso_error_t lasso_login_init_authn_request ( LassoLogin* login, const gchar* remote_providerID, LassoHttpMethod http_method ) lasso_error_t lasso_login_init_idp_initiated_authn_request ( LassoLogin* login, const gchar* remote_providerID ) lasso_error_t lasso_login_init_request ( LassoLogin* login, gchar* response_msg, LassoHttpMethod response_http_method ) gboolean lasso_login_must_ask_for_consent ( LassoLogin* login ) gboolean lasso_login_must_authenticate ( LassoLogin* login ) LassoLogin* lasso_login_new ( LassoServer* server ) LassoLogin* lasso_login_new_from_dump ( LassoServer* server, const gchar* dump ) lasso_error_t lasso_login_process_authn_request_msg ( LassoLogin* login, const char* authn_request_msg ) lasso_error_t lasso_login_process_authn_response_msg ( LassoLogin* login, gchar* authn_response_msg ) lasso_error_t lasso_login_process_paos_response_msg ( LassoLogin* login, gchar* msg ) lasso_error_t lasso_login_process_request_msg ( LassoLogin* login, gchar* request_msg ) lasso_error_t lasso_login_process_response_msg ( LassoLogin* login, gchar* response_msg ) lasso_error_t lasso_login_validate_request_msg ( LassoLogin* login, gboolean authentication_result, gboolean is_consent_obtained ) lasso_error_t lasso_logout_build_request_msg ( LassoLogout* logout ) lasso_error_t lasso_logout_build_response_msg ( LassoLogout* logout ) None lasso_logout_destroy ( LassoLogout* logout ) gchar* lasso_logout_dump ( LassoLogout* logout ) gchar* lasso_logout_get_next_providerID ( LassoLogout* logout ) GType lasso_logout_get_type ( ) lasso_error_t lasso_logout_init_request ( LassoLogout* logout, gchar* remote_providerID, LassoHttpMethod request_method ) LassoLogout* lasso_logout_new ( LassoServer* server ) LassoLogout* lasso_logout_new_from_dump ( LassoServer* server, const gchar* dump ) lasso_error_t lasso_logout_process_request_msg ( LassoLogout* logout, gchar* request_msg ) lasso_error_t lasso_logout_process_response_msg ( LassoLogout* logout, gchar* response_msg ) lasso_error_t lasso_logout_reset_providerID_index ( LassoLogout* logout ) lasso_error_t lasso_logout_validate_request ( LassoLogout* logout ) GType lasso_misc_text_node_get_type ( ) xmlNode* lasso_misc_text_node_get_xml_content ( LassoMiscTextNode* misc_text_node ) LassoNode* lasso_misc_text_node_new ( ) LassoMiscTextNode* lasso_misc_text_node_new_with_string ( const char* content ) LassoMiscTextNode* lasso_misc_text_node_new_with_xml_node ( xmlNode* xml_node ) None lasso_misc_text_node_set_xml_content ( LassoMiscTextNode* misc_text_node, xmlNode* node ) lasso_error_t lasso_name_id_management_build_request_msg ( LassoNameIdManagement* name_id_management ) lasso_error_t lasso_name_id_management_build_response_msg ( LassoNameIdManagement* name_id_management ) None lasso_name_id_management_destroy ( LassoNameIdManagement* name_id_management ) char* lasso_name_id_management_dump ( LassoNameIdManagement* name_id_management ) GType lasso_name_id_management_get_type ( ) lasso_error_t lasso_name_id_management_init_request ( LassoNameIdManagement* name_id_management, char* remote_provider_id, char* new_name_id, LassoHttpMethod http_method ) LassoNameIdManagement* lasso_name_id_management_new ( LassoServer* server ) LassoNameIdManagement* lasso_name_id_management_new_from_dump ( LassoServer* server, const char* dump ) lasso_error_t lasso_name_id_management_process_request_msg ( LassoNameIdManagement* name_id_management, gchar* request_msg ) lasso_error_t lasso_name_id_management_process_response_msg ( LassoNameIdManagement* name_id_management, gchar* response_msg ) lasso_error_t lasso_name_id_management_validate_request ( LassoNameIdManagement* name_id_management ) lasso_error_t lasso_name_identifier_mapping_build_request_msg ( LassoNameIdentifierMapping* mapping ) lasso_error_t lasso_name_identifier_mapping_build_response_msg ( LassoNameIdentifierMapping* mapping ) None lasso_name_identifier_mapping_destroy ( LassoNameIdentifierMapping* mapping ) GType lasso_name_identifier_mapping_get_type ( ) lasso_error_t lasso_name_identifier_mapping_init_request ( LassoNameIdentifierMapping* mapping, gchar* targetNamespace, gchar* remote_providerID ) LassoNameIdentifierMapping* lasso_name_identifier_mapping_new ( LassoServer* server ) lasso_error_t lasso_name_identifier_mapping_process_request_msg ( LassoNameIdentifierMapping* mapping, gchar* request_msg ) lasso_error_t lasso_name_identifier_mapping_process_response_msg ( LassoNameIdentifierMapping* mapping, gchar* response_msg ) lasso_error_t lasso_name_identifier_mapping_validate_request ( LassoNameIdentifierMapping* mapping ) lasso_error_t lasso_name_registration_build_request_msg ( LassoNameRegistration* name_registration ) lasso_error_t lasso_name_registration_build_response_msg ( LassoNameRegistration* name_registration ) None lasso_name_registration_destroy ( LassoNameRegistration* name_registration ) gchar* lasso_name_registration_dump ( LassoNameRegistration* name_registration ) GType lasso_name_registration_get_type ( ) lasso_error_t lasso_name_registration_init_request ( LassoNameRegistration* name_registration, char* remote_providerID, LassoHttpMethod http_method ) LassoNameRegistration* lasso_name_registration_new ( LassoServer* server ) LassoNameRegistration* lasso_name_registration_new_from_dump ( LassoServer* server, const char* dump ) lasso_error_t lasso_name_registration_process_request_msg ( LassoNameRegistration* name_registration, gchar* request_msg ) lasso_error_t lasso_name_registration_process_response_msg ( LassoNameRegistration* name_registration, gchar* response_msg ) lasso_error_t lasso_name_registration_validate_request ( LassoNameRegistration* name_registration ) None lasso_node_cleanup_original_xmlnodes ( LassoNode* node ) char* lasso_node_debug ( LassoNode* node, int level ) None lasso_node_destroy ( LassoNode* node ) char* lasso_node_dump ( LassoNode* node ) char* lasso_node_export_to_base64 ( LassoNode* node ) char* lasso_node_export_to_ecp_soap_response ( LassoNode* node, const char* assertionConsumerURL ) char* lasso_node_export_to_paos_request ( LassoNode* node, const char* issuer, const char* responseConsumerURL, const char* relay_state ) char* lasso_node_export_to_query ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file ) char* lasso_node_export_to_query_with_password ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file, const char* private_key_file_password ) char* lasso_node_export_to_soap ( LassoNode* node ) gchar* lasso_node_export_to_xml ( LassoNode* node ) const char* lasso_node_get_name ( LassoNode* node ) const char* lasso_node_get_namespace ( LassoNode* node ) xmlNode* lasso_node_get_original_xmlnode ( LassoNode* node ) GType lasso_node_get_type ( ) xmlNode* lasso_node_get_xmlNode ( LassoNode* node, gboolean lasso_dump ) LassoMessageFormat lasso_node_init_from_message ( LassoNode* node, const char* message ) gboolean lasso_node_init_from_query ( LassoNode* node, const char* query ) lasso_error_t lasso_node_init_from_xml ( LassoNode* node, xmlNode* xmlnode ) LassoNode* lasso_node_new ( ) LassoNode* lasso_node_new_from_dump ( const char* dump ) LassoNode* lasso_node_new_from_soap ( const char* soap ) LassoNode* lasso_node_new_from_xmlNode ( xmlNode* node ) None lasso_node_set_custom_namespace ( LassoNode* node, const char* prefix, const char* href ) None lasso_node_set_custom_nodename ( LassoNode* node, const char* nodename ) None lasso_node_set_original_xmlnode ( LassoNode* node, xmlNode* xmlnode ) char* lasso_profile_get_artifact ( LassoProfile* profile ) char* lasso_profile_get_artifact_message ( LassoProfile* profile ) LassoIdentity* lasso_profile_get_identity ( LassoProfile* profile ) LassoNode* lasso_profile_get_nameIdentifier ( LassoProfile* profile ) LassoRequestType lasso_profile_get_request_type_from_soap_msg ( const gchar* soap ) LassoSession* lasso_profile_get_session ( LassoProfile* profile ) LassoProfileSignatureHint lasso_profile_get_signature_hint ( LassoProfile* profile ) lasso_error_t lasso_profile_get_signature_status ( LassoProfile* profile ) LassoProfileSignatureVerifyHint lasso_profile_get_signature_verify_hint ( LassoProfile* profile ) GType lasso_profile_get_type ( ) gboolean lasso_profile_is_identity_dirty ( LassoProfile* profile ) gboolean lasso_profile_is_liberty_query ( const gchar* query ) gboolean lasso_profile_is_saml_query ( const gchar* query ) gboolean lasso_profile_is_session_dirty ( LassoProfile* profile ) None lasso_profile_set_artifact_message ( LassoProfile* profile, const char* message ) lasso_error_t lasso_profile_set_identity_from_dump ( LassoProfile* profile, const gchar* dump ) lasso_error_t lasso_profile_set_session_from_dump ( LassoProfile* profile, const gchar* dump ) None lasso_profile_set_signature_hint ( LassoProfile* profile, LassoProfileSignatureHint signature_hint ) None lasso_profile_set_signature_verify_hint ( LassoProfile* profile, LassoProfileSignatureVerifyHint signature_verify_hint ) lasso_error_t lasso_profile_set_soap_fault_response ( LassoProfile* profile, const char* faultcode, const char* faultstring, GList* details ) LassoProviderRole lasso_profile_sso_role_with ( LassoProfile* profile, const char* remote_provider_id ) gboolean lasso_provider_accept_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type, LassoHttpMethod http_method, gboolean initiate_profile ) gchar* lasso_provider_get_assertion_consumer_service_url ( LassoProvider* provider, const char* service_id ) gchar* lasso_provider_get_base64_succinct_id ( const LassoProvider* provider ) char* lasso_provider_get_cache_duration ( LassoProvider* provider ) gchar* lasso_provider_get_default_name_id_format ( LassoProvider* provider ) LassoEncryptionMode lasso_provider_get_encryption_mode ( LassoProvider* provider ) LassoHttpMethod lasso_provider_get_first_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type ) GList* lasso_provider_get_idp_supported_attributes ( LassoProvider* provider ) GList* lasso_provider_get_metadata_keys_for_role ( LassoProvider* provider, LassoProviderRole role ) GList* lasso_provider_get_metadata_list ( LassoProvider* provider, const char* name ) GList* lasso_provider_get_metadata_list_for_role ( const LassoProvider* provider, LassoProviderRole role, const char* name ) gchar* lasso_provider_get_metadata_one ( LassoProvider* provider, const char* name ) char* lasso_provider_get_metadata_one_for_role ( LassoProvider* provider, LassoProviderRole role, const char* name ) xmlNode* lasso_provider_get_organization ( const LassoProvider* provider ) LassoProtocolConformance lasso_provider_get_protocol_conformance ( const LassoProvider* provider ) LassoProviderRole lasso_provider_get_roles ( LassoProvider* provider ) const char* lasso_provider_get_sp_name_qualifier ( LassoProvider* provider ) GType lasso_provider_get_type ( ) char* lasso_provider_get_valid_until ( LassoProvider* provider ) gboolean lasso_provider_has_protocol_profile ( LassoProvider* provider, LassoMdProtocolType protocol_type, const char* protocol_profile ) gboolean lasso_provider_match_conformance ( LassoProvider* provider, LassoProvider* another_provider ) LassoProvider* lasso_provider_new ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_buffer ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_dump ( const gchar* dump ) LassoSaml2EncryptedElement* lasso_provider_saml2_node_encrypt ( const LassoProvider* provider, LassoNode* lasso_node ) None lasso_provider_set_encryption_mode ( LassoProvider* provider, LassoEncryptionMode encryption_mode ) None lasso_provider_set_encryption_sym_key_type ( LassoProvider* provider, LassoEncryptionSymKeyType encryption_sym_key_type ) lasso_error_t lasso_provider_verify_single_node_signature ( LassoProvider* provider, LassoNode* node, const char* id_attr_name ) None lasso_register_dst_service ( const char* prefix, const char* href ) None lasso_register_idwsf2_dst_service ( const gchar* prefix, const gchar* href ) GType lasso_saml2_action_get_type ( ) LassoNode* lasso_saml2_action_new ( ) LassoNode* lasso_saml2_action_new_with_string ( char* content ) GType lasso_saml2_advice_get_type ( ) LassoNode* lasso_saml2_advice_new ( ) lasso_error_t lasso_saml2_assertion_add_attribute_with_node ( LassoSaml2Assertion* assertion, const char* name, const char* nameformat, LassoNode* content ) None lasso_saml2_assertion_add_audience_restriction ( LassoSaml2Assertion* saml2_assertion, const char* providerID ) None lasso_saml2_assertion_add_proxy_limit ( LassoSaml2Assertion* saml2_assertion, int proxy_count, GList* proxy_audiences ) LassoSaml2AssertionValidationState lasso_saml2_assertion_allows_proxying ( LassoSaml2Assertion* saml2_assertion ) LassoSaml2AssertionValidationState lasso_saml2_assertion_allows_proxying_to ( LassoSaml2Assertion* saml2_assertion, const char* audience ) lasso_error_t lasso_saml2_assertion_decrypt_subject ( LassoSaml2Assertion* assertion, LassoServer* server ) const char* lasso_saml2_assertion_get_in_response_to ( LassoSaml2Assertion* assertion ) LassoProvider* lasso_saml2_assertion_get_issuer_provider ( const LassoSaml2Assertion* saml2_assertion, const LassoServer* server ) LassoSaml2SubjectConfirmationData* lasso_saml2_assertion_get_subject_confirmation_data ( LassoSaml2Assertion* saml2_assertion, gboolean create ) GType lasso_saml2_assertion_get_type ( ) gboolean lasso_saml2_assertion_has_audience_restriction ( LassoSaml2Assertion* saml2_assertion ) gboolean lasso_saml2_assertion_has_one_time_use ( LassoSaml2Assertion* saml2_assertion ) gboolean lasso_saml2_assertion_is_audience_restricted ( LassoSaml2Assertion* saml2_assertion, char* providerID ) LassoNode* lasso_saml2_assertion_new ( ) None lasso_saml2_assertion_set_basic_conditions ( LassoSaml2Assertion* saml2_assertion, time_t tolerance, time_t length, gboolean one_time_use ) None lasso_saml2_assertion_set_one_time_use ( LassoSaml2Assertion* saml2_assertion, gboolean one_time_use ) None lasso_saml2_assertion_set_subject_confirmation_data ( LassoSaml2Assertion* saml2_assertion, time_t tolerance, time_t length, const char* Recipient, const char* InResponseTo, const char* Address ) None lasso_saml2_assertion_set_subject_confirmation_name_id ( LassoSaml2Assertion* saml2_assertion, LassoNode* node ) None lasso_saml2_assertion_set_subject_name_id ( LassoSaml2Assertion* saml2_assertion, LassoNode* node ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_audience ( LassoSaml2Assertion* saml2_assertion, const gchar* audience ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_conditions ( LassoSaml2Assertion* saml2_assertion, const char* relaying_party_providerID ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_time_checks ( LassoSaml2Assertion* saml2_assertion, unsigned int tolerance, time_t now ) GType lasso_saml2_attribute_get_type ( ) LassoNode* lasso_saml2_attribute_new ( ) GType lasso_saml2_attribute_statement_get_type ( ) LassoNode* lasso_saml2_attribute_statement_new ( ) GType lasso_saml2_attribute_value_get_type ( ) LassoSaml2AttributeValue* lasso_saml2_attribute_value_new ( ) GType lasso_saml2_audience_restriction_get_type ( ) LassoNode* lasso_saml2_audience_restriction_new ( ) GType lasso_saml2_authn_context_get_type ( ) LassoNode* lasso_saml2_authn_context_new ( ) GType lasso_saml2_authn_statement_get_type ( ) LassoNode* lasso_saml2_authn_statement_new ( ) GType lasso_saml2_authz_decision_statement_get_type ( ) LassoNode* lasso_saml2_authz_decision_statement_new ( ) GType lasso_saml2_base_idabstract_get_type ( ) LassoNode* lasso_saml2_base_idabstract_new ( ) GType lasso_saml2_condition_abstract_get_type ( ) LassoNode* lasso_saml2_condition_abstract_new ( ) GType lasso_saml2_conditions_get_type ( ) LassoNode* lasso_saml2_conditions_new ( ) LassoSaml2EncryptedElement* lasso_saml2_encrypted_element_build_encrypted_persistent_name_id ( const char* id, const char* idpID, const LassoProvider* provider ) GType lasso_saml2_encrypted_element_get_type ( ) LassoNode* lasso_saml2_encrypted_element_new ( ) lasso_error_t lasso_saml2_encrypted_element_server_decrypt ( LassoSaml2EncryptedElement* encrypted_element, LassoServer* server, LassoNode** decrypted_node ) GType lasso_saml2_evidence_get_type ( ) LassoNode* lasso_saml2_evidence_new ( ) GType lasso_saml2_key_info_confirmation_data_get_type ( ) LassoNode* lasso_saml2_key_info_confirmation_data_new ( ) LassoSaml2NameID* lasso_saml2_name_id_build_persistent ( const char* id, const char* idpID, const char* providerID ) gboolean lasso_saml2_name_id_equals ( LassoSaml2NameID* name_id, LassoSaml2NameID* other_name_id ) GType lasso_saml2_name_id_get_type ( ) LassoNode* lasso_saml2_name_id_new ( ) LassoSaml2NameID* lasso_saml2_name_id_new_with_persistent_format ( const char* id, const char* idpID, const char* providerID ) LassoNode* lasso_saml2_name_id_new_with_string ( char* content ) GType lasso_saml2_one_time_use_get_type ( ) LassoNode* lasso_saml2_one_time_use_new ( ) GType lasso_saml2_proxy_restriction_get_type ( ) LassoNode* lasso_saml2_proxy_restriction_new ( ) GType lasso_saml2_statement_abstract_get_type ( ) LassoNode* lasso_saml2_statement_abstract_new ( ) GType lasso_saml2_subject_confirmation_data_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_data_new ( ) GType lasso_saml2_subject_confirmation_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_new ( ) GType lasso_saml2_subject_get_type ( ) GType lasso_saml2_subject_locality_get_type ( ) LassoNode* lasso_saml2_subject_locality_new ( ) LassoNode* lasso_saml2_subject_new ( ) GType lasso_saml_advice_get_type ( ) LassoNode* lasso_saml_advice_new ( ) GType lasso_saml_assertion_get_type ( ) LassoSamlAssertion* lasso_saml_assertion_new ( ) GType lasso_saml_attribute_designator_get_type ( ) LassoNode* lasso_saml_attribute_designator_new ( ) GType lasso_saml_attribute_get_type ( ) LassoSamlAttribute* lasso_saml_attribute_new ( ) GType lasso_saml_attribute_statement_get_type ( ) LassoSamlAttributeStatement* lasso_saml_attribute_statement_new ( ) GType lasso_saml_attribute_value_get_type ( ) LassoSamlAttributeValue* lasso_saml_attribute_value_new ( ) GType lasso_saml_audience_restriction_condition_get_type ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new_full ( const char* audience ) GType lasso_saml_authentication_statement_get_type ( ) LassoNode* lasso_saml_authentication_statement_new ( ) GType lasso_saml_authority_binding_get_type ( ) LassoNode* lasso_saml_authority_binding_new ( ) GType lasso_saml_condition_abstract_get_type ( ) GType lasso_saml_conditions_get_type ( ) LassoSamlConditions* lasso_saml_conditions_new ( ) GType lasso_saml_name_identifier_get_type ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new_from_xmlNode ( xmlNode* xmlnode ) GType lasso_saml_statement_abstract_get_type ( ) GType lasso_saml_subject_confirmation_get_type ( ) LassoSamlSubjectConfirmation* lasso_saml_subject_confirmation_new ( ) GType lasso_saml_subject_get_type ( ) GType lasso_saml_subject_locality_get_type ( ) LassoNode* lasso_saml_subject_locality_new ( ) LassoNode* lasso_saml_subject_new ( ) GType lasso_saml_subject_statement_abstract_get_type ( ) GType lasso_saml_subject_statement_get_type ( ) LassoNode* lasso_saml_subject_statement_new ( ) GType lasso_samlp2_artifact_resolve_get_type ( ) LassoNode* lasso_samlp2_artifact_resolve_new ( ) GType lasso_samlp2_artifact_response_get_type ( ) LassoNode* lasso_samlp2_artifact_response_new ( ) GType lasso_samlp2_assertion_id_request_get_type ( ) LassoNode* lasso_samlp2_assertion_id_request_new ( ) GType lasso_samlp2_attribute_query_get_type ( ) LassoNode* lasso_samlp2_attribute_query_new ( ) GType lasso_samlp2_authn_query_get_type ( ) LassoNode* lasso_samlp2_authn_query_new ( ) GType lasso_samlp2_authn_request_get_type ( ) LassoNode* lasso_samlp2_authn_request_new ( ) GType lasso_samlp2_authz_decision_query_get_type ( ) LassoNode* lasso_samlp2_authz_decision_query_new ( ) GType lasso_samlp2_extensions_get_type ( ) LassoNode* lasso_samlp2_extensions_new ( ) GType lasso_samlp2_idp_entry_get_type ( ) LassoNode* lasso_samlp2_idp_entry_new ( ) GType lasso_samlp2_idp_list_get_type ( ) LassoNode* lasso_samlp2_idp_list_new ( ) GList* lasso_samlp2_logout_request_get_session_indexes ( LassoSamlp2LogoutRequest* logout_request ) GType lasso_samlp2_logout_request_get_type ( ) LassoNode* lasso_samlp2_logout_request_new ( ) None lasso_samlp2_logout_request_set_session_indexes ( LassoSamlp2LogoutRequest* logout_request, GList* session_index ) GType lasso_samlp2_logout_response_get_type ( ) LassoNode* lasso_samlp2_logout_response_new ( ) GType lasso_samlp2_manage_name_id_request_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_request_new ( ) GType lasso_samlp2_manage_name_id_response_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_response_new ( ) GType lasso_samlp2_name_id_mapping_request_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_request_new ( ) GType lasso_samlp2_name_id_mapping_response_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_response_new ( ) GType lasso_samlp2_name_id_policy_get_type ( ) LassoNode* lasso_samlp2_name_id_policy_new ( ) GType lasso_samlp2_request_abstract_get_type ( ) LassoNode* lasso_samlp2_request_abstract_new ( ) GType lasso_samlp2_requested_authn_context_get_type ( ) LassoNode* lasso_samlp2_requested_authn_context_new ( ) GType lasso_samlp2_response_get_type ( ) LassoNode* lasso_samlp2_response_new ( ) GType lasso_samlp2_scoping_get_type ( ) LassoNode* lasso_samlp2_scoping_new ( ) GType lasso_samlp2_status_code_get_type ( ) LassoNode* lasso_samlp2_status_code_new ( ) GType lasso_samlp2_status_detail_get_type ( ) LassoNode* lasso_samlp2_status_detail_new ( ) GType lasso_samlp2_status_get_type ( ) LassoNode* lasso_samlp2_status_new ( ) GType lasso_samlp2_status_response_get_type ( ) LassoNode* lasso_samlp2_status_response_new ( ) GType lasso_samlp2_subject_query_abstract_get_type ( ) LassoNode* lasso_samlp2_subject_query_abstract_new ( ) GType lasso_samlp2_terminate_get_type ( ) LassoNode* lasso_samlp2_terminate_new ( ) GType lasso_samlp_request_abstract_get_type ( ) GType lasso_samlp_request_get_type ( ) LassoNode* lasso_samlp_request_new ( ) None lasso_samlp_response_abstract_fill ( LassoSamlpResponseAbstract* response, const char* InResponseTo, const char* Recipient ) GType lasso_samlp_response_abstract_get_type ( ) GType lasso_samlp_response_get_type ( ) LassoNode* lasso_samlp_response_new ( ) GType lasso_samlp_status_code_get_type ( ) LassoSamlpStatusCode* lasso_samlp_status_code_new ( ) GType lasso_samlp_status_get_type ( ) LassoSamlpStatus* lasso_samlp_status_new ( ) lasso_error_t lasso_server_add_provider ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) lasso_error_t lasso_server_add_provider_from_buffer ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) None lasso_server_destroy ( LassoServer* server ) gchar* lasso_server_dump ( LassoServer* server ) LassoProvider* lasso_server_get_provider ( const LassoServer* server, const gchar* providerID ) GType lasso_server_get_type ( ) lasso_error_t lasso_server_load_affiliation ( LassoServer* server, const gchar* filename ) LassoServer* lasso_server_new ( const gchar* metadata, const gchar* private_key, const gchar* private_key_password, const gchar* certificate ) LassoServer* lasso_server_new_from_buffers ( const gchar* metadata, const gchar* private_key_content, const gchar* private_key_password, const gchar* certificate_content ) LassoServer* lasso_server_new_from_dump ( const gchar* dump ) lasso_error_t lasso_server_saml2_assertion_setup_signature ( LassoServer* server, LassoSaml2Assertion* saml2_assertion ) lasso_error_t lasso_server_set_encryption_private_key ( LassoServer* server, const gchar* filename_or_buffer ) lasso_error_t lasso_server_set_encryption_private_key_with_password ( LassoServer* server, const gchar* filename_or_buffer, const gchar* password ) lasso_error_t lasso_session_add_assertion ( LassoSession* session, const char* providerID, LassoNode* assertion ) None lasso_session_destroy ( LassoSession* session ) gchar* lasso_session_dump ( LassoSession* session ) LassoNode* lasso_session_get_assertion ( LassoSession* session, const gchar* providerID ) GList* lasso_session_get_assertions ( LassoSession* session, const char* provider_id ) gchar* lasso_session_get_provider_index ( LassoSession* session, gint index ) GType lasso_session_get_type ( ) gboolean lasso_session_is_empty ( LassoSession* session ) LassoSession* lasso_session_new ( ) LassoSession* lasso_session_new_from_dump ( const gchar* dump ) lasso_error_t lasso_session_remove_assertion ( LassoSession* session, const gchar* providerID ) None lasso_set_flag ( char* flag ) lasso_error_t lasso_shutdown ( ) GType lasso_soap_body_get_type ( ) LassoSoapBody* lasso_soap_body_new ( ) LassoSoapBody* lasso_soap_body_new_from_message ( const gchar* message ) GType lasso_soap_detail_get_type ( ) LassoSoapDetail* lasso_soap_detail_new ( ) LassoSoapDetail* lasso_soap_detail_new_from_message ( const gchar* message ) GType lasso_soap_envelope_get_type ( ) LassoSoapEnvelope* lasso_soap_envelope_new ( LassoSoapBody* body ) LassoSoapEnvelope* lasso_soap_envelope_new_from_message ( const gchar* message ) GType lasso_soap_fault_get_type ( ) LassoSoapFault* lasso_soap_fault_new ( ) LassoSoapFault* lasso_soap_fault_new_from_message ( const gchar* message ) LassoSoapFault* lasso_soap_fault_new_full ( const char* faultcode, const char* faultstring ) GType lasso_soap_header_get_type ( ) LassoSoapHeader* lasso_soap_header_new ( ) LassoSoapHeader* lasso_soap_header_new_from_message ( const gchar* message ) const char* lasso_strerror ( int error_code ) lasso-2.9.0/abi/PaxHeaders/abi-2.3.50000644000000000000000000000013013766621500013601 xustar0029 mtime=1608196928.71889494 30 atime=1754992978.149544894 29 ctime=1754993575.20113351 lasso-2.9.0/abi/abi-2.3.50000644000175000017500000021073613766621500015624 0ustar00bdauvergnebdauvergneBACKWARD_COMP_H LASSO_ASSERTION_QUERY_ERROR_ATTRIBUTE_REQUEST_ALREADY_EXIST LASSO_ASSERTION_QUERY_ERROR_NOT_AN_ATTRIBUTE_QUERY LASSO_ASSERTION_QUERY_REQUEST_TYPE_ASSERTION_ID LASSO_ASSERTION_QUERY_REQUEST_TYPE_ATTRIBUTE LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHN LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHZ_DECISION LASSO_ASSERTION_QUERY_REQUEST_TYPE_LAST LASSO_ASSERTION_QUERY_REQUEST_TYPE_UNSET LASSO_CERTIFICATE_ATTRIBUTE LASSO_CHECK_VERSIONABI_COMPATIBLE LASSO_CHECK_VERSION_EXACT LASSO_CHECK_VERSION_NUMERIC LASSO_DATA_SERVICE_ERROR_CANNOT_ADD_ITEM LASSO_DATA_SERVICE_ERROR_UNREGISTERED_DST LASSO_DEFEDERATION_ERROR_MISSING_NAME_IDENTIFIER LASSO_DISCOVERY_ERROR_FAILED_TO_BUILD_ENDPOINT_REFERENCE LASSO_DISCOVERY_ERROR_MISSING_REQUESTED_SERVICE LASSO_DISCOVERY_ERROR_SVC_METADATA_ASSOCIATION_ADD_FAILED LASSO_DISCOVERY_ERROR_SVC_METADATA_REGISTER_FAILED LASSO_DST_ERROR_EMPTY_REQUEST LASSO_DST_ERROR_MALFORMED_QUERY LASSO_DST_ERROR_MISSING_SERVICE_DATA LASSO_DST_ERROR_MODIFY_FAILED LASSO_DST_ERROR_MODIFY_PARTIALLY_FAILED LASSO_DST_ERROR_NEW_DATA_MISSING LASSO_DST_ERROR_NO_DATA LASSO_DST_ERROR_QUERY_FAILED LASSO_DST_ERROR_QUERY_NOT_FOUND LASSO_DST_ERROR_QUERY_PARTIALLY_FAILED LASSO_DS_ERROR_CA_CERT_CHAIN_LOAD_FAILED LASSO_DS_ERROR_CERTIFICATE_LOAD_FAILED LASSO_DS_ERROR_CONTEXT_CREATION_FAILED LASSO_DS_ERROR_DECRYPTION_FAILED LASSO_DS_ERROR_DECRYPTION_FAILED_MISSING_PRIVATE_KEY LASSO_DS_ERROR_DIGEST_COMPUTE_FAILED LASSO_DS_ERROR_ENCRYPTION_FAILED LASSO_DS_ERROR_INVALID_REFERENCE_FOR_SAML LASSO_DS_ERROR_INVALID_SIGALG LASSO_DS_ERROR_INVALID_SIGNATURE LASSO_DS_ERROR_KEYS_MNGR_CREATION_FAILED LASSO_DS_ERROR_KEYS_MNGR_INIT_FAILED LASSO_DS_ERROR_PRIVATE_KEY_LOAD_FAILED LASSO_DS_ERROR_PUBLIC_KEY_LOAD_FAILED LASSO_DS_ERROR_SIGNATURE_FAILED LASSO_DS_ERROR_SIGNATURE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TEMPLATE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TMPL_CREATION_FAILED LASSO_DS_ERROR_SIGNATURE_VERIFICATION_FAILED LASSO_DS_ERROR_TOO_MUCH_REFERENCES LASSO_DS_HREF LASSO_DS_PREFIX LASSO_DURATION_DAY LASSO_DURATION_HOUR LASSO_DURATION_MINUTE LASSO_DURATION_WEEK LASSO_ECP_HREF LASSO_ECP_PREFIX LASSO_ENCRYPTION_MODE_ASSERTION LASSO_ENCRYPTION_MODE_NAMEID LASSO_ENCRYPTION_MODE_NONE LASSO_ENCRYPTION_SYM_KEY_TYPE_3DES LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_128 LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_256 LASSO_ENCRYPTION_SYM_KEY_TYPE_DEFAULT LASSO_ENCRYTPION_SYM_KEY_TYPE_LAST LASSO_ERROR_CAST_FAILED LASSO_ERROR_OUT_OF_MEMORY LASSO_ERROR_UNDEFINED LASSO_ERROR_UNIMPLEMENTED LASSO_HTTP_METHOD_ANY LASSO_HTTP_METHOD_ARTIFACT_GET LASSO_HTTP_METHOD_ARTIFACT_POST LASSO_HTTP_METHOD_GET LASSO_HTTP_METHOD_IDP_INITIATED LASSO_HTTP_METHOD_LAST LASSO_HTTP_METHOD_NONE LASSO_HTTP_METHOD_PAOS LASSO_HTTP_METHOD_POST LASSO_HTTP_METHOD_REDIRECT LASSO_HTTP_METHOD_SOAP LASSO_IDWSF2_DISCOVERY_ERROR_DUPLICATE LASSO_IDWSF2_DISCOVERY_ERROR_FAILED LASSO_IDWSF2_DISCOVERY_ERROR_FORBIDDEN LASSO_IDWSF2_DISCOVERY_ERROR_LOGICAL_DUPLICATE LASSO_IDWSF2_DISCOVERY_ERROR_NOT_FOUND LASSO_IDWSF2_DISCOVERY_ERROR_NO_RESULTS LASSO_IDWSF2_DST_ERROR_DUPLICATE_ITEM LASSO_IDWSF2_DST_ERROR_ITEM_NOT_FOUND LASSO_IDWSF2_DST_ERROR_PARTIAL_FAILURE LASSO_IDWSF2_DST_ERROR_UNKNOWN_STATUS_CODE LASSO_LASSO_HREF LASSO_LASSO_PREFIX LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD_PROTECTED_TRANSPORT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PREVIOUS_SESSION LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SOFTWARE_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_TIME_SYNC_TOKEN LASSO_LIB_AUTHN_CONTEXT_COMPARISON_BETTER LASSO_LIB_AUTHN_CONTEXT_COMPARISON_EXACT LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MAXIMUM LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MINIMUM LASSO_LIB_CONSENT_INAPPLICABLE LASSO_LIB_CONSENT_OBTAINED LASSO_LIB_CONSENT_OBTAINED_CURRENT_EXPLICIT LASSO_LIB_CONSENT_OBTAINED_CURRENT_IMPLICIT LASSO_LIB_CONSENT_OBTAINED_PRIOR LASSO_LIB_CONSENT_UNAVAILABLE LASSO_LIB_HREF LASSO_LIB_MAJOR_VERSION_N LASSO_LIB_MINOR_VERSION_N LASSO_LIB_NAMEID_POLICY_TYPE_ANY LASSO_LIB_NAMEID_POLICY_TYPE_FEDERATED LASSO_LIB_NAMEID_POLICY_TYPE_NONE LASSO_LIB_NAMEID_POLICY_TYPE_ONE_TIME LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENTITYID LASSO_LIB_NAME_IDENTIFIER_FORMAT_FEDERATED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ONE_TIME LASSO_LIB_PREFIX LASSO_LIB_PROTOCOL_PROFILE_BRWS_ART LASSO_LIB_PROTOCOL_PROFILE_BRWS_LECP LASSO_LIB_PROTOCOL_PROFILE_BRWS_POST LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_NIM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_SOAP LASSO_LIB_STATUS_CODE_FEDERATION_DOES_NOT_EXIST LASSO_LIB_STATUS_CODE_INVALID_ASSERTION_CONSUMER_SERVICE_INDEX LASSO_LIB_STATUS_CODE_INVALID_SIGNATURE LASSO_LIB_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_LIB_STATUS_CODE_NO_AVAILABLEIDP LASSO_LIB_STATUS_CODE_NO_PASSIVE LASSO_LIB_STATUS_CODE_NO_SUPPORTEDIDP LASSO_LIB_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_LIB_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_LIB_STATUS_CODE_UNSIGNED_AUTHN_REQUEST LASSO_LIB_STATUS_CODE_UNSUPPORTED_PROFILE LASSO_LOGIN_ERROR_ASSERTION_DOES_NOT_MATCH_REQUEST_ID LASSO_LOGIN_ERROR_ASSERTION_REPLAY LASSO_LOGIN_ERROR_CONSENT_NOT_OBTAINED LASSO_LOGIN_ERROR_FEDERATION_NOT_FOUND LASSO_LOGIN_ERROR_INVALID_ASSERTION_SIGNATURE LASSO_LOGIN_ERROR_INVALID_NAMEIDPOLICY LASSO_LOGIN_ERROR_INVALID_SIGNATURE LASSO_LOGIN_ERROR_NO_DEFAULT_ENDPOINT LASSO_LOGIN_ERROR_REQUEST_DENIED LASSO_LOGIN_ERROR_STATUS_NOT_SUCCESS LASSO_LOGIN_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGIN_ERROR_UNSIGNED_AUTHN_REQUEST LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_ART LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_LECP LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_POST LASSO_LOGIN_PROTOCOL_PROFILE_REDIRECT LASSO_LOGOUT_ERROR_FEDERATION_NOT_FOUND LASSO_LOGOUT_ERROR_REQUEST_DENIED LASSO_LOGOUT_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGOUT_ERROR_UNSUPPORTED_PROFILE LASSO_MD_PROTOCOL_TYPE_ARTIFACT_RESOLUTION LASSO_MD_PROTOCOL_TYPE_ASSERTION_ID_REQUEST LASSO_MD_PROTOCOL_TYPE_ATTRIBUTE LASSO_MD_PROTOCOL_TYPE_AUTHN_QUERY LASSO_MD_PROTOCOL_TYPE_AUTHZ LASSO_MD_PROTOCOL_TYPE_FEDERATION_TERMINATION LASSO_MD_PROTOCOL_TYPE_LAST LASSO_MD_PROTOCOL_TYPE_MANAGE_NAME_ID LASSO_MD_PROTOCOL_TYPE_NAME_IDENTIFIER_MAPPING LASSO_MD_PROTOCOL_TYPE_REGISTER_NAME_IDENTIFIER LASSO_MD_PROTOCOL_TYPE_SINGLE_LOGOUT LASSO_MD_PROTOCOL_TYPE_SINGLE_SIGN_ON LASSO_MESSAGE_FORMAT_BASE64 LASSO_MESSAGE_FORMAT_ERROR LASSO_MESSAGE_FORMAT_QUERY LASSO_MESSAGE_FORMAT_SOAP LASSO_MESSAGE_FORMAT_UNKNOWN LASSO_MESSAGE_FORMAT_XML LASSO_MESSAGE_FORMAT_XSCHEMA_ERROR LASSO_METADATA_HREF LASSO_METADATA_PREFIX LASSO_NAME_IDENTIFIER_MAPPING_ERROR_FORBIDDEN_CALL_ON_THIS_SIDE LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_IDENTIFIER LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_NAMESPACE LASSO_PAOS_HREF LASSO_PAOS_PREFIX LASSO_PARAM_ERROR_BAD_TYPE_OR_NULL_OBJ LASSO_PARAM_ERROR_CHECK_FAILED LASSO_PARAM_ERROR_INVALID_VALUE LASSO_PARAM_ERROR_NON_INITIALIZED_OBJECT LASSO_PRIVATE_KEY_ATTRIBUTE LASSO_PRIVATE_KEY_PASSWORD_ATTRIBUTE LASSO_PRIVATE_STATUS_CODE_FAILED_TO_RESTORE_ARTIFACT LASSO_PROFILE_ERROR_BAD_IDENTITY_DUMP LASSO_PROFILE_ERROR_BAD_SESSION_DUMP LASSO_PROFILE_ERROR_BUILDING_MESSAGE_FAILED LASSO_PROFILE_ERROR_BUILDING_QUERY_FAILED LASSO_PROFILE_ERROR_BUILDING_REQUEST_FAILED LASSO_PROFILE_ERROR_BUILDING_RESPONSE_FAILED LASSO_PROFILE_ERROR_CANNOT_FIND_A_PROVIDER LASSO_PROFILE_ERROR_CANNOT_VERIFY_SIGNATURE LASSO_PROFILE_ERROR_FEDERATION_NOT_FOUND LASSO_PROFILE_ERROR_IDENTITY_NOT_FOUND LASSO_PROFILE_ERROR_INVALID_ARTIFACT LASSO_PROFILE_ERROR_INVALID_ASSERTION LASSO_PROFILE_ERROR_INVALID_ASSERTION_CONDITIONS LASSO_PROFILE_ERROR_INVALID_HTTP_METHOD LASSO_PROFILE_ERROR_INVALID_ISSUER LASSO_PROFILE_ERROR_INVALID_MSG LASSO_PROFILE_ERROR_INVALID_POST_MSG LASSO_PROFILE_ERROR_INVALID_PROTOCOLPROFILE LASSO_PROFILE_ERROR_INVALID_QUERY LASSO_PROFILE_ERROR_INVALID_REQUEST LASSO_PROFILE_ERROR_INVALID_RESPONSE LASSO_PROFILE_ERROR_INVALID_SOAP_MSG LASSO_PROFILE_ERROR_ISSUER_IS_NOT_AN_IDP LASSO_PROFILE_ERROR_MISSING_ARTIFACT LASSO_PROFILE_ERROR_MISSING_ASSERTION LASSO_PROFILE_ERROR_MISSING_ENCRYPTION_PRIVATE_KEY LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE_ADDRESS LASSO_PROFILE_ERROR_MISSING_ISSUER LASSO_PROFILE_ERROR_MISSING_NAME_IDENTIFIER LASSO_PROFILE_ERROR_MISSING_REMOTE_PROVIDERID LASSO_PROFILE_ERROR_MISSING_REQUEST LASSO_PROFILE_ERROR_MISSING_RESOURCE_OFFERING LASSO_PROFILE_ERROR_MISSING_RESPONSE LASSO_PROFILE_ERROR_MISSING_SERVER LASSO_PROFILE_ERROR_MISSING_SERVICE_DESCRIPTION LASSO_PROFILE_ERROR_MISSING_SERVICE_INSTANCE LASSO_PROFILE_ERROR_MISSING_SERVICE_TYPE LASSO_PROFILE_ERROR_MISSING_STATUS_CODE LASSO_PROFILE_ERROR_MISSING_SUBJECT LASSO_PROFILE_ERROR_NAME_IDENTIFIER_NOT_FOUND LASSO_PROFILE_ERROR_RESPONSE_DOES_NOT_MATCH_REQUEST LASSO_PROFILE_ERROR_SESSION_NOT_FOUND LASSO_PROFILE_ERROR_STATUS_NOT_SUCCESS LASSO_PROFILE_ERROR_UNKNOWN_ISSUER LASSO_PROFILE_ERROR_UNKNOWN_PROFILE_URL LASSO_PROFILE_ERROR_UNKNOWN_PROVIDER LASSO_PROFILE_ERROR_UNSUPPORTED_BINDING LASSO_PROFILE_ERROR_UNSUPPORTED_PROFILE LASSO_PROFILE_SIGNATURE_HINT_FORBID LASSO_PROFILE_SIGNATURE_HINT_FORCE LASSO_PROFILE_SIGNATURE_HINT_MAYBE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_FORCE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_IGNORE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_LAST LASSO_PROFILE_SIGNATURE_VERIFY_HINT_MAYBE LASSO_PROTOCOL_LIBERTY_1_0 LASSO_PROTOCOL_LIBERTY_1_1 LASSO_PROTOCOL_LIBERTY_1_2 LASSO_PROTOCOL_NONE LASSO_PROTOCOL_SAML_2_0 LASSO_PROVIDER_ERROR_MISSING_PUBLIC_KEY LASSO_PROVIDER_ROLE_ANY LASSO_PROVIDER_ROLE_ATTRIBUTE_AUTHORITY LASSO_PROVIDER_ROLE_AUTHN_AUTHORITY LASSO_PROVIDER_ROLE_AUTHZ_AUTHORITY LASSO_PROVIDER_ROLE_BOTH LASSO_PROVIDER_ROLE_IDP LASSO_PROVIDER_ROLE_LAST LASSO_PROVIDER_ROLE_NONE LASSO_PROVIDER_ROLE_SP LASSO_PYTHON_HREF LASSO_REGISTRY_ERROR_KEY_EXISTS LASSO_REQUEST_TYPE_DEFEDERATION LASSO_REQUEST_TYPE_DISCO_MODIFY LASSO_REQUEST_TYPE_DISCO_QUERY LASSO_REQUEST_TYPE_DST_MODIFY LASSO_REQUEST_TYPE_DST_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_ASSOCIATION_ADD LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_REGISTER LASSO_REQUEST_TYPE_INVALID LASSO_REQUEST_TYPE_LECP LASSO_REQUEST_TYPE_LOGIN LASSO_REQUEST_TYPE_LOGOUT LASSO_REQUEST_TYPE_NAME_IDENTIFIER_MAPPING LASSO_REQUEST_TYPE_NAME_ID_MANAGEMENT LASSO_REQUEST_TYPE_NAME_REGISTRATION LASSO_REQUEST_TYPE_SASL_REQUEST LASSO_SAML2_ACTION_GHPP_GET LASSO_SAML2_ACTION_GHPP_HEAD LASSO_SAML2_ACTION_GHPP_POST LASSO_SAML2_ACTION_GHPP_PUT LASSO_SAML2_ACTION_NAMESPACE_GHPP LASSO_SAML2_ACTION_NAMESPACE_RWEDC LASSO_SAML2_ACTION_NAMESPACE_RWEDC_NEGATION LASSO_SAML2_ACTION_NAMESPACE_UNIX LASSO_SAML2_ACTION_RWEDC_CONTROL LASSO_SAML2_ACTION_RWEDC_DELETE LASSO_SAML2_ACTION_RWEDC_EXECUTE LASSO_SAML2_ACTION_RWEDC_NEGATION LASSO_SAML2_ACTION_RWEDC_READ LASSO_SAML2_ACTION_RWEDC_WRITE LASSO_SAML2_ASSERTION_HREF LASSO_SAML2_ASSERTION_INDETERMINATE LASSO_SAML2_ASSERTION_INVALID LASSO_SAML2_ASSERTION_PREFIX LASSO_SAML2_ASSERTION_VALID LASSO_SAML2_ATTRIBUTE_NAME_EPR LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_BASIC LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_UNSPECIFIED LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_URI LASSO_SAML2_ATTRIBUTE_PROFILE_BASIC LASSO_SAML2_ATTRIBUTE_PROFILE_DCE LASSO_SAML2_ATTRIBUTE_PROFILE_UUID LASSO_SAML2_ATTRIBUTE_PROFILE_X500 LASSO_SAML2_AUTHN_CONTEXT_AUTHENTICATED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_KERBEROS LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_NOMAD_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_PASSWORD_PROTECTED_TRANSPORT LASSO_SAML2_AUTHN_CONTEXT_PERSONALIZED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PGP LASSO_SAML2_AUTHN_CONTEXT_PREVIOUS_SESSION LASSO_SAML2_AUTHN_CONTEXT_SECURE_REMOTE_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD_PKI LASSO_SAML2_AUTHN_CONTEXT_SOFTWARE_PKI LASSO_SAML2_AUTHN_CONTEXT_SPKI LASSO_SAML2_AUTHN_CONTEXT_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_TIME_SYNC_TOKEN LASSO_SAML2_AUTHN_CONTEXT_TLS_CLIENT LASSO_SAML2_AUTHN_CONTEXT_UNSPECIFIED LASSO_SAML2_AUTHN_CONTEXT_X509 LASSO_SAML2_AUTHN_CONTEXT_XMLDSIG LASSO_SAML2_CONFIRMATION_METHOD_BEARER LASSO_SAML2_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML2_CONSENT_EXPLICIT LASSO_SAML2_CONSENT_IMPLICIT LASSO_SAML2_CONSENT_INAPPLICABLE LASSO_SAML2_CONSENT_OBTAINED LASSO_SAML2_CONSENT_PRIOR LASSO_SAML2_CONSENT_UNAVAILABLE LASSO_SAML2_DEFLATE_ENCODING LASSO_SAML2_FIELD_ARTIFACT LASSO_SAML2_FIELD_ENCODING LASSO_SAML2_FIELD_RELAYSTATE LASSO_SAML2_FIELD_REQUEST LASSO_SAML2_FIELD_RESPONSE LASSO_SAML2_FIELD_SIGALG LASSO_SAML2_FIELD_SIGNATURE LASSO_SAML2_METADATA_BINDING_ARTIFACT LASSO_SAML2_METADATA_BINDING_PAOS LASSO_SAML2_METADATA_BINDING_POST LASSO_SAML2_METADATA_BINDING_REDIRECT LASSO_SAML2_METADATA_BINDING_SOAP LASSO_SAML2_METADATA_BINDING_URI LASSO_SAML2_METADATA_HREF LASSO_SAML2_METADATA_PREFIX LASSO_SAML2_NAME_IDENTIFIER_FORMAT_EMAIL LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENTITY LASSO_SAML2_NAME_IDENTIFIER_FORMAT_KERBEROS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_PERSISTENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_TRANSIENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_UNSPECIFIED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_WINDOWS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_X509 LASSO_SAML2_PROTOCOL_HREF LASSO_SAML2_PROTOCOL_PREFIX LASSO_SAML2_STATUS_CODE_AUTHN_FAILED LASSO_SAML2_STATUS_CODE_INVALID_ATTR_NAME LASSO_SAML2_STATUS_CODE_INVALID_NAME_ID_POLICY LASSO_SAML2_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_SAML2_STATUS_CODE_NO_AVAILABLE_IDP LASSO_SAML2_STATUS_CODE_NO_PASSIVE LASSO_SAML2_STATUS_CODE_NO_SUPPORTED_IDP LASSO_SAML2_STATUS_CODE_PARTIAL_LOGOUT LASSO_SAML2_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_SAML2_STATUS_CODE_REQUESTER LASSO_SAML2_STATUS_CODE_REQUEST_DENIED LASSO_SAML2_STATUS_CODE_REQUEST_UNSUPPORTED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML2_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML2_STATUS_CODE_RESPONDER LASSO_SAML2_STATUS_CODE_SUCCESS LASSO_SAML2_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML2_STATUS_CODE_UNKNOWN_ATTR_PROFILE LASSO_SAML2_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_SAML2_STATUS_CODE_UNSUPPORTED_BINDING LASSO_SAML2_STATUS_CODE_VERSION_MISMATCH LASSO_SAML_ASSERTION_HREF LASSO_SAML_ASSERTION_PREFIX LASSO_SAML_AUTHENTICATION_METHODS_PKI LASSO_SAML_AUTHENTICATION_METHOD_HARDWARE_TOKEN LASSO_SAML_AUTHENTICATION_METHOD_KERBEROS LASSO_SAML_AUTHENTICATION_METHOD_LIBERTY LASSO_SAML_AUTHENTICATION_METHOD_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_PGP LASSO_SAML_AUTHENTICATION_METHOD_SECURE_REMOTE_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_SMARTCARD_PKI LASSO_SAML_AUTHENTICATION_METHOD_SOFTWARE_PKI LASSO_SAML_AUTHENTICATION_METHOD_UNSPECIFIED LASSO_SAML_AUTHENTICATION_METHOD_XKMS LASSO_SAML_AUTHENTICATION_METHOD_XMLD_SIG LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT01 LASSO_SAML_CONFIRMATION_METHOD_BEARER LASSO_SAML_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML_CONFIRMATION_METHOD_SENDER_VOUCHES LASSO_SAML_MAJOR_VERSION_N LASSO_SAML_MINOR_VERSION_N LASSO_SAML_PROTOCOL_HREF LASSO_SAML_PROTOCOL_PREFIX LASSO_SAML_STATUS_CODE_REQUESTER LASSO_SAML_STATUS_CODE_REQUEST_DENIED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML_STATUS_CODE_RESPONDER LASSO_SAML_STATUS_CODE_SUCCESS LASSO_SAML_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML_STATUS_CODE_VERSION_MISMATCH LASSO_SERVER_ERROR_ADD_PROVIDER_FAILED LASSO_SERVER_ERROR_ADD_PROVIDER_PROTOCOL_MISMATCH LASSO_SERVER_ERROR_INVALID_XML LASSO_SERVER_ERROR_PROVIDER_NOT_FOUND LASSO_SERVER_ERROR_SET_ENCRYPTION_PRIVATE_KEY_FAILED LASSO_SIGNATURE_METHOD_ATTRIBUTE LASSO_SIGNATURE_METHOD_DSA_SHA1 LASSO_SIGNATURE_METHOD_LAST LASSO_SIGNATURE_METHOD_RSA_SHA1 LASSO_SIGNATURE_TYPE_ATTRIBUTE LASSO_SIGNATURE_TYPE_LAST LASSO_SIGNATURE_TYPE_NONE LASSO_SIGNATURE_TYPE_SIMPLE LASSO_SIGNATURE_TYPE_WITHX509 LASSO_SOAP_ENV_ACTOR LASSO_SOAP_ENV_HREF LASSO_SOAP_ENV_PREFIX LASSO_SOAP_ERROR_MISSING_BODY LASSO_SOAP_ERROR_MISSING_ENVELOPE LASSO_SOAP_ERROR_MISSING_HEADER LASSO_SOAP_ERROR_MISSING_SOAP_FAULT_DETAIL LASSO_SOAP_ERROR_REDIRECT_REQUEST_FAULT LASSO_SOAP_FAULT_CODE_CLIENT LASSO_SOAP_FAULT_CODE_MUST_UNDERSTAND LASSO_SOAP_FAULT_CODE_SERVER LASSO_SOAP_FAULT_CODE_VERSION_MISMATCH LASSO_SOAP_FAULT_REDIRECT_REQUEST LASSO_WSF_ENABLED LASSO_WSF_PROFILE_ERROR_INVALID_OR_MISSING_REFERENCE_TO_MESSAGE_ID LASSO_WSF_PROFILE_ERROR_MISSING_ASSERTION_ID LASSO_WSF_PROFILE_ERROR_MISSING_CORRELATION LASSO_WSF_PROFILE_ERROR_MISSING_CREDENTIAL_REF LASSO_WSF_PROFILE_ERROR_MISSING_DESCRIPTION LASSO_WSF_PROFILE_ERROR_MISSING_ENDPOINT LASSO_WSF_PROFILE_ERROR_MISSING_RESOURCE_ID LASSO_WSF_PROFILE_ERROR_MISSING_SECURITY LASSO_WSF_PROFILE_ERROR_MISSING_SENDER_ID LASSO_WSF_PROFILE_ERROR_REDIRECT_REQUEST LASSO_WSF_PROFILE_ERROR_REDIRECT_REQUEST_UNSUPPORTED_BY_REQUESTER LASSO_WSF_PROFILE_ERROR_SECURITY_MECHANISM_CHECK_FAILED LASSO_WSF_PROFILE_ERROR_SERVER_INTERACTION_REQUIRED LASSO_WSF_PROFILE_ERROR_SERVER_INTERACTION_REQUIRED_FOR_DATA LASSO_WSF_PROFILE_ERROR_SOAP_FAULT LASSO_WSF_PROFILE_ERROR_UNKNOWN_STATUS_CODE LASSO_WSF_PROFILE_ERROR_UNSUPPORTED_SECURITY_MECHANISM LASSO_WSSEC_ERROR_BAD_PASSWORD LASSO_WSSEC_ERROR_MISSING_SECURITY_TOKEN LASSO_WSUTIL1_HREF LASSO_WSUTIL1_PREFIX LASSO_XML_ERROR_ATTR_NOT_FOUND LASSO_XML_ERROR_ATTR_VALUE_NOT_FOUND LASSO_XML_ERROR_INVALID_FILE LASSO_XML_ERROR_MISSING_NAMESPACE LASSO_XML_ERROR_NODE_CONTENT_NOT_FOUND LASSO_XML_ERROR_NODE_NOT_FOUND LASSO_XML_ERROR_OBJECT_CONSTRUCTION_FAILED LASSO_XML_ERROR_SCHEMA_INVALID_FRAGMENT LASSO_XSI_HREF LASSO_XSI_PREFIX struct LassoAssertionQuery { LassoAssertionQueryPrivate* private_data } LassoAssertionQueryRequestType LassoCheckVersionMode struct LassoDefederation { } struct LassoDsKeyInfo { LassoDsKeyValue* KeyValue } struct LassoDsKeyValue { LassoDsRsaKeyValue* RSAKeyValue } struct LassoDsRsaKeyValue { char* Modulus, char* Exponent } struct LassoEcp { gchar* assertionConsumerURL, LassoEcpPrivate* private_data } LassoEncryptionMode LassoEncryptionSymKeyType struct LassoFederation { gchar* remote_providerID, LassoNode* local_nameIdentifier, LassoNode* remote_nameIdentifier, LassoFederationPrivate* private_data } LassoHttpMethod struct LassoIdentity { GHashTable* federations, gboolean is_dirty, LassoIdentityPrivate* private_data } struct LassoLecp { LassoLibAuthnRequestEnvelope* authnRequestEnvelope, LassoLibAuthnResponseEnvelope* authnResponseEnvelope, char* assertionConsumerServiceURL } struct LassoLibAssertion { char* InResponseTo } struct LassoLibAuthenticationStatement { LassoLibAuthnContext* AuthnContext, char* ReauthenticateOnOrAfter, char* SessionIndex } struct LassoLibAuthnContext { char* AuthnContextClassRef, char* AuthnContextStatementRef } struct LassoLibAuthnRequest { GList* Extension, char* ProviderID, char* AffiliationID, char* NameIDPolicy, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolProfile, char* AssertionConsumerServiceID, LassoLibRequestAuthnContext* RequestAuthnContext, char* RelayState, LassoLibScoping* Scoping, char* consent } struct LassoLibAuthnRequestEnvelope { GList* Extension, LassoLibAuthnRequest* AuthnRequest, char* ProviderID, char* ProviderName, char* AssertionConsumerServiceURL, LassoLibIDPList* IDPList, gboolean IsPassive } struct LassoLibAuthnResponse { GList* Extension, char* ProviderID, char* RelayState, char* consent } struct LassoLibAuthnResponseEnvelope { GList* Extension, LassoLibAuthnResponse* AuthnResponse, char* AssertionConsumerServiceURL } struct LassoLibFederationTerminationNotification { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* consent, char* RelayState } struct LassoLibIDPEntries { GList* IDPEntry } struct LassoLibIDPEntry { char* ProviderID, char* ProviderName, char* Loc } struct LassoLibIDPList { LassoLibIDPEntries* IDPEntries, char* GetComplete } struct LassoLibLogoutRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* SessionIndex, char* RelayState, char* consent, char* NotOnOrAfter } struct LassoLibLogoutResponse { } struct LassoLibNameIdentifierMappingRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* TargetNamespace, char* consent } struct LassoLibNameIdentifierMappingResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, LassoSamlNameIdentifier* NameIdentifier } struct LassoLibRegisterNameIdentifierRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* IDPProvidedNameIdentifier, LassoSamlNameIdentifier* SPProvidedNameIdentifier, LassoSamlNameIdentifier* OldProvidedNameIdentifier, char* RelayState } struct LassoLibRegisterNameIdentifierResponse { } struct LassoLibRequestAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextStatementRef, char* AuthnContextComparison } struct LassoLibScoping { int ProxyCount, LassoLibIDPList* IDPList } struct LassoLibStatusResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, char* RelayState } struct LassoLibSubject { LassoSamlNameIdentifier* IDPProvidedNameIdentifier } struct LassoLogin { LassoLoginProtocolProfile protocolProfile, gchar* assertionArtifact, LassoSamlAssertion* assertion, gchar* nameIDPolicy, LassoHttpMethod http_method, LassoLoginPrivate* private_data } LassoLoginProtocolProfile struct LassoLogout { LassoNode* initial_request, LassoNode* initial_response, gchar* initial_remote_providerID, gint providerID_index, LassoHttpMethod initial_http_request_method, LassoLogoutPrivate* private_data } LassoMdProtocolType LassoMessageFormat struct LassoMiscTextNode { char* content, char* name, char* ns_href, char* ns_prefix, gboolean text_child } struct LassoNameIdManagement { } struct LassoNameIdentifierMapping { gchar* targetNameIdentifier } struct LassoNameRegistration { LassoSamlNameIdentifier* oldNameIdentifier } struct LassoNode { } struct LassoProfile { LassoServer* server, LassoNode* request, LassoNode* response, LassoNode* nameIdentifier, gchar* remote_providerID, gchar* msg_url, gchar* msg_body, gchar* msg_relayState, LassoIdentity* identity, LassoSession* session, LassoHttpMethod http_request_method, gint signature_status, LassoProfilePrivate* private_data } LassoProfileSignatureHint LassoProfileSignatureVerifyHint LassoProtocolConformance struct LassoProvider { gchar* ProviderID, LassoProviderRole role, char* metadata_filename, gchar* public_key, gchar* ca_cert_chain, LassoProviderPrivate* private_data } LassoProviderRole LassoRequestType struct LassoSaml2Action { char* content, char* Namespace } struct LassoSaml2Advice { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2Assertion { LassoSaml2NameID* Issuer, LassoSaml2Subject* Subject, LassoSaml2Conditions* Conditions, LassoSaml2Advice* Advice, GList* Statement, GList* AuthnStatement, GList* AuthzDecisionStatement, GList* AttributeStatement, char* Version, char* ID, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file, gboolean encryption_activated, char* encryption_public_key_str, LassoEncryptionSymKeyType encryption_sym_key_type } LassoSaml2AssertionValidationState struct LassoSaml2Attribute { GList* AttributeValue, char* Name, char* NameFormat, char* FriendlyName } struct LassoSaml2AttributeStatement { GList* Attribute, GList* EncryptedAttribute } struct LassoSaml2AttributeValue { GList* any } struct LassoSaml2AudienceRestriction { char* Audience } struct LassoSaml2AuthnContext { char* AuthnContextClassRef, char* AuthnContextDeclRef, char* AuthenticatingAuthority } struct LassoSaml2AuthnStatement { LassoSaml2SubjectLocality* SubjectLocality, LassoSaml2AuthnContext* AuthnContext, char* AuthnInstant, char* SessionIndex, char* SessionNotOnOrAfter } struct LassoSaml2AuthzDecisionStatement { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource, char* Decision } struct LassoSaml2BaseIDAbstract { char* NameQualifier, char* SPNameQualifier } struct LassoSaml2ConditionAbstract { } struct LassoSaml2Conditions { GList* Condition, GList* AudienceRestriction, GList* OneTimeUse, GList* ProxyRestriction, char* NotBefore, char* NotOnOrAfter } struct LassoSaml2EncryptedElement { xmlNode* EncryptedData, GList* EncryptedKey, LassoNode* original_data } struct LassoSaml2Evidence { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2KeyInfoConfirmationData { } struct LassoSaml2NameID { char* content, char* Format, char* SPProvidedID, char* NameQualifier, char* SPNameQualifier } struct LassoSaml2OneTimeUse { } struct LassoSaml2ProxyRestriction { char* Audience, char* Count } struct LassoSaml2StatementAbstract { } struct LassoSaml2Subject { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmation* SubjectConfirmation } struct LassoSaml2SubjectConfirmation { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmationData* SubjectConfirmationData, char* Method } struct LassoSaml2SubjectConfirmationData { char* NotBefore, char* NotOnOrAfter, char* Recipient, char* InResponseTo, char* Address } struct LassoSaml2SubjectLocality { char* Address, char* DNSName } struct LassoSamlAdvice { GList* AssertionIDReference, LassoNode* Assertion } struct LassoSamlAssertion { LassoSamlConditions* Conditions, LassoSamlAdvice* Advice, LassoSamlSubjectStatement* SubjectStatement, LassoSamlAuthenticationStatement* AuthenticationStatement, LassoSamlAttributeStatement* AttributeStatement, int MajorVersion, int MinorVersion, char* AssertionID, char* Issuer, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlAttribute { gchar* attributeName, gchar* attributeNameSpace, GList* AttributeValue } struct LassoSamlAttributeDesignator { char* AttributeName, char* AttributeNamespace } struct LassoSamlAttributeStatement { GList* Attribute } struct LassoSamlAttributeValue { GList* any } struct LassoSamlAudienceRestrictionCondition { GList* Audience } struct LassoSamlAuthenticationStatement { LassoSamlSubjectLocality* SubjectLocality, GList* AuthorityBinding, char* AuthenticationMethod, char* AuthenticationInstant } struct LassoSamlAuthorityBinding { char* AuthorityKind, char* Location, char* Binding } struct LassoSamlConditionAbstract { } struct LassoSamlConditions { GList* Condition, GList* AudienceRestrictionCondition, char* NotBefore, char* NotOnOrAfter } struct LassoSamlNameIdentifier { char* NameQualifier, char* Format, char* content } struct LassoSamlStatementAbstract { } struct LassoSamlSubject { LassoSamlNameIdentifier* NameIdentifier, LassoSamlSubjectConfirmation* SubjectConfirmation, LassoSaml2EncryptedElement* EncryptedNameIdentifier } struct LassoSamlSubjectConfirmation { GList* ConfirmationMethod, char* SubjectConfirmationData, LassoDsKeyInfo* KeyInfo } struct LassoSamlSubjectLocality { char* IPAddress, char* DNSAddress } struct LassoSamlSubjectStatement { } struct LassoSamlSubjectStatementAbstract { LassoSamlSubject* Subject } struct LassoSamlp2ArtifactResolve { char* Artifact } struct LassoSamlp2ArtifactResponse { LassoNode* any } struct LassoSamlp2AssertionIDRequest { char* AssertionIDRef } struct LassoSamlp2AttributeQuery { GList* Attribute } struct LassoSamlp2AuthnQuery { LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, char* SessionIndex } struct LassoSamlp2AuthnRequest { LassoSaml2Subject* Subject, LassoSamlp2NameIDPolicy* NameIDPolicy, LassoSaml2Conditions* Conditions, LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, LassoSamlp2Scoping* Scoping, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolBinding, int AssertionConsumerServiceIndex, char* AssertionConsumerServiceURL, int AttributeConsumingServiceIndex, char* ProviderName, G_GNUC_DEPRECATED char } struct LassoSamlp2AuthzDecisionQuery { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource } struct LassoSamlp2Extensions { } struct LassoSamlp2IDPEntry { char* ProviderID, char* Name, char* Loc } struct LassoSamlp2IDPList { LassoSamlp2IDPEntry* IDPEntry, char* GetComplete } struct LassoSamlp2LogoutRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* SessionIndex, char* Reason, char* NotOnOrAfter, G_GNUC_DEPRECATED char } struct LassoSamlp2LogoutResponse { G_GNUC_DEPRECATED char } struct LassoSamlp2ManageNameIDRequest { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* NewID, LassoSaml2EncryptedElement* NewEncryptedID, LassoSamlp2Terminate* Terminate } struct LassoSamlp2ManageNameIDResponse { } struct LassoSamlp2NameIDMappingRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSamlp2NameIDPolicy* NameIDPolicy } struct LassoSamlp2NameIDMappingResponse { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID } struct LassoSamlp2NameIDPolicy { char* Format, char* SPNameQualifier, gboolean AllowCreate } struct LassoSamlp2RequestAbstract { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, char* ID, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2RequestedAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextDeclRef, char* Comparison } struct LassoSamlp2Response { GList* Assertion, GList* EncryptedAssertion } struct LassoSamlp2Scoping { LassoSamlp2IDPList* IDPList, char* RequesterID, char* ProxyCount } struct LassoSamlp2Status { LassoSamlp2StatusCode* StatusCode, char* StatusMessage, LassoSamlp2StatusDetail* StatusDetail } struct LassoSamlp2StatusCode { LassoSamlp2StatusCode* StatusCode, char* Value } struct LassoSamlp2StatusDetail { } struct LassoSamlp2StatusResponse { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, LassoSamlp2Status* Status, char* ID, char* InResponseTo, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2SubjectQueryAbstract { LassoSaml2Subject* Subject } struct LassoSamlp2Terminate { } struct LassoSamlpRequest { char* AssertionArtifact } struct LassoSamlpRequestAbstract { GList* RespondWith, char* RequestID, int MajorVersion, int MinorVersion, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpResponse { LassoSamlpStatus* Status, GList* Assertion } struct LassoSamlpResponseAbstract { char* ResponseID, char* InResponseTo, int MajorVersion, int MinorVersion, char* IssueInstant, char* Recipient, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpStatus { LassoSamlpStatusCode* StatusCode, char* StatusMessage } struct LassoSamlpStatusCode { LassoSamlpStatusCode* StatusCode, char* Value } struct LassoServer { GHashTable* providers, GHashTable* services, gchar* private_key, gchar* private_key_password, gchar* certificate, LassoSignatureMethod signature_method, LassoServerPrivate* private_data } struct LassoSession { GHashTable* assertions, gboolean is_dirty, LassoSessionPrivate* private_data } LassoSignatureMethod LassoSignatureType struct LassoSoapBody { GList* any, gchar* Id } struct LassoSoapDetail { GList* any } struct LassoSoapEnvelope { LassoSoapHeader* Header, LassoSoapBody* Body } struct LassoSoapFault { gchar* faultcode, gchar* faultstring, GList* faultactor, LassoSoapDetail* Detail } struct LassoSoapHeader { GList* Other } lasso_error_t lasso_assertion_query_add_attribute_request ( LassoAssertionQuery* assertion_query, char* format, char* name ) lasso_error_t lasso_assertion_query_build_request_msg ( LassoAssertionQuery* assertion_query ) lasso_error_t lasso_assertion_query_build_response_msg ( LassoAssertionQuery* assertion_query ) None lasso_assertion_query_destroy ( LassoAssertionQuery* assertion_query ) LassoAssertionQueryRequestType lasso_assertion_query_get_request_type ( LassoAssertionQuery* assertion_query ) GType lasso_assertion_query_get_type ( ) lasso_error_t lasso_assertion_query_init_request ( LassoAssertionQuery* assertion_query, char* remote_provider_id, LassoHttpMethod http_method, LassoAssertionQueryRequestType query_request_type ) LassoAssertionQuery* lasso_assertion_query_new ( LassoServer* server ) lasso_error_t lasso_assertion_query_process_request_msg ( LassoAssertionQuery* assertion_query, gchar* request_msg ) lasso_error_t lasso_assertion_query_process_response_msg ( LassoAssertionQuery* assertion_query, gchar* response_msg ) lasso_error_t lasso_assertion_query_validate_request ( LassoAssertionQuery* assertion_query ) char* lasso_build_unique_id ( unsigned int size ) int lasso_check_version ( int major, int minor, int subminor, LassoCheckVersionMode mode ) lasso_error_t lasso_defederation_build_notification_msg ( LassoDefederation* defederation ) None lasso_defederation_destroy ( LassoDefederation* defederation ) GType lasso_defederation_get_type ( ) lasso_error_t lasso_defederation_init_notification ( LassoDefederation* defederation, gchar* remote_providerID, LassoHttpMethod http_method ) LassoDefederation* lasso_defederation_new ( LassoServer* server ) lasso_error_t lasso_defederation_process_notification_msg ( LassoDefederation* defederation, gchar* notification_msg ) lasso_error_t lasso_defederation_validate_notification ( LassoDefederation* defederation ) GType lasso_ds_key_info_get_type ( ) LassoDsKeyInfo* lasso_ds_key_info_new ( ) GType lasso_ds_key_value_get_type ( ) LassoDsKeyValue* lasso_ds_key_value_new ( ) GType lasso_ds_rsa_key_value_get_type ( ) LassoDsRsaKeyValue* lasso_ds_rsa_key_value_new ( ) None lasso_ecp_destroy ( LassoEcp* ecp ) GType lasso_ecp_get_type ( ) LassoEcp* lasso_ecp_new ( LassoServer* server ) lasso_error_t lasso_ecp_process_authn_request_msg ( LassoEcp* ecp, const char* authn_request_msg ) lasso_error_t lasso_ecp_process_response_msg ( LassoEcp* ecp, const char* response_msg ) None lasso_federation_build_local_name_identifier ( LassoFederation* federation, const gchar* nameQualifier, const gchar* format, const gchar* content ) None lasso_federation_destroy ( LassoFederation* federation ) GType lasso_federation_get_type ( ) LassoFederation* lasso_federation_new ( const gchar* remote_providerID ) gboolean lasso_federation_verify_name_identifier ( LassoFederation* federation, LassoNode* name_identifier ) char* lasso_get_prefix_for_dst_service_href ( const char* href ) gchar* lasso_get_prefix_for_idwsf2_dst_service_href ( const gchar* href ) None lasso_identity_destroy ( LassoIdentity* identity ) gchar* lasso_identity_dump ( LassoIdentity* identity ) LassoFederation* lasso_identity_get_federation ( LassoIdentity* identity, const char* providerID ) GType lasso_identity_get_type ( ) LassoIdentity* lasso_identity_new ( ) LassoIdentity* lasso_identity_new_from_dump ( const gchar* dump ) lasso_error_t lasso_init ( ) lasso_error_t lasso_lecp_build_authn_request_envelope_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_request_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_response_envelope_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_response_msg ( LassoLecp* lecp ) None lasso_lecp_destroy ( LassoLecp* lecp ) GType lasso_lecp_get_type ( ) lasso_error_t lasso_lecp_init_authn_request ( LassoLecp* lecp, const char* remote_providerID ) LassoLecp* lasso_lecp_new ( LassoServer* server ) lasso_error_t lasso_lecp_process_authn_request_envelope_msg ( LassoLecp* lecp, const char* request_msg ) lasso_error_t lasso_lecp_process_authn_request_msg ( LassoLecp* lecp, const char* authn_request_msg ) lasso_error_t lasso_lecp_process_authn_response_envelope_msg ( LassoLecp* lecp, const char* response_msg ) GType lasso_lib_assertion_get_type ( ) LassoLibAssertion* lasso_lib_assertion_new ( ) LassoLibAssertion* lasso_lib_assertion_new_full ( const char* issuer, const char* requestID, const char* audience, const char* notBefore, const char* notOnOrAfter ) GType lasso_lib_authentication_statement_get_type ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new_full ( const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, LassoSamlNameIdentifier* sp_identifier, LassoSamlNameIdentifier* idp_identifier ) GType lasso_lib_authn_context_get_type ( ) LassoNode* lasso_lib_authn_context_new ( ) GType lasso_lib_authn_request_envelope_get_type ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new_full ( LassoLibAuthnRequest* authnRequest, char* providerID, char* assertionConsumerServiceURL ) GType lasso_lib_authn_request_get_type ( ) LassoLibAuthnRequest* lasso_lib_authn_request_new ( ) GType lasso_lib_authn_response_envelope_get_type ( ) LassoLibAuthnResponseEnvelope* lasso_lib_authn_response_envelope_new ( LassoLibAuthnResponse* response, char* assertionConsumerServiceURL ) GType lasso_lib_authn_response_get_type ( ) LassoNode* lasso_lib_authn_response_new ( char* providerID, LassoLibAuthnRequest* request ) GType lasso_lib_federation_termination_notification_get_type ( ) LassoNode* lasso_lib_federation_termination_notification_new ( ) LassoNode* lasso_lib_federation_termination_notification_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_idp_entries_get_type ( ) LassoNode* lasso_lib_idp_entries_new ( ) GType lasso_lib_idp_entry_get_type ( ) LassoNode* lasso_lib_idp_entry_new ( ) GType lasso_lib_idp_list_get_type ( ) LassoNode* lasso_lib_idp_list_new ( ) GType lasso_lib_logout_request_get_type ( ) LassoNode* lasso_lib_logout_request_new ( ) LassoNode* lasso_lib_logout_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_logout_response_get_type ( ) LassoNode* lasso_lib_logout_response_new ( ) LassoNode* lasso_lib_logout_response_new_full ( char* providerID, const char* statusCodeValue, LassoLibLogoutRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_request_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, const char* targetNamespace, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_response_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new_full ( char* provideRID, const char* statusCodeValue, LassoLibNameIdentifierMappingRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_request_get_type ( ) LassoNode* lasso_lib_register_name_identifier_request_new ( ) LassoNode* lasso_lib_register_name_identifier_request_new_full ( const char* providerID, LassoSamlNameIdentifier* idpNameIdentifier, LassoSamlNameIdentifier* spNameIdentifier, LassoSamlNameIdentifier* oldNameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_response_get_type ( ) LassoNode* lasso_lib_register_name_identifier_response_new ( ) LassoNode* lasso_lib_register_name_identifier_response_new_full ( const char* providerID, const char* statusCodeValue, LassoLibRegisterNameIdentifierRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_request_authn_context_get_type ( ) LassoLibRequestAuthnContext* lasso_lib_request_authn_context_new ( ) GType lasso_lib_scoping_get_type ( ) LassoLibScoping* lasso_lib_scoping_new ( ) GType lasso_lib_status_response_get_type ( ) LassoNode* lasso_lib_status_response_new ( ) GType lasso_lib_subject_get_type ( ) LassoLibSubject* lasso_lib_subject_new ( ) lasso_error_t lasso_login_accept_sso ( LassoLogin* login ) lasso_error_t lasso_login_build_artifact_msg ( LassoLogin* login, LassoHttpMethod http_method ) lasso_error_t lasso_login_build_assertion ( LassoLogin* login, const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, const char* notBefore, const char* notOnOrAfter ) lasso_error_t lasso_login_build_authn_request_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_authn_response_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_request_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_response_msg ( LassoLogin* login, gchar* remote_providerID ) None lasso_login_destroy ( LassoLogin* login ) gchar* lasso_login_dump ( LassoLogin* login ) LassoNode* lasso_login_get_assertion ( LassoLogin* login ) GType lasso_login_get_type ( ) lasso_error_t lasso_login_init_authn_request ( LassoLogin* login, const gchar* remote_providerID, LassoHttpMethod http_method ) lasso_error_t lasso_login_init_idp_initiated_authn_request ( LassoLogin* login, const gchar* remote_providerID ) lasso_error_t lasso_login_init_request ( LassoLogin* login, gchar* response_msg, LassoHttpMethod response_http_method ) gboolean lasso_login_must_ask_for_consent ( LassoLogin* login ) gboolean lasso_login_must_authenticate ( LassoLogin* login ) LassoLogin* lasso_login_new ( LassoServer* server ) LassoLogin* lasso_login_new_from_dump ( LassoServer* server, const gchar* dump ) lasso_error_t lasso_login_process_authn_request_msg ( LassoLogin* login, const char* authn_request_msg ) lasso_error_t lasso_login_process_authn_response_msg ( LassoLogin* login, gchar* authn_response_msg ) lasso_error_t lasso_login_process_paos_response_msg ( LassoLogin* login, gchar* msg ) lasso_error_t lasso_login_process_request_msg ( LassoLogin* login, gchar* request_msg ) lasso_error_t lasso_login_process_response_msg ( LassoLogin* login, gchar* response_msg ) lasso_error_t lasso_login_validate_request_msg ( LassoLogin* login, gboolean authentication_result, gboolean is_consent_obtained ) lasso_error_t lasso_logout_build_request_msg ( LassoLogout* logout ) lasso_error_t lasso_logout_build_response_msg ( LassoLogout* logout ) None lasso_logout_destroy ( LassoLogout* logout ) gchar* lasso_logout_dump ( LassoLogout* logout ) gchar* lasso_logout_get_next_providerID ( LassoLogout* logout ) GType lasso_logout_get_type ( ) lasso_error_t lasso_logout_init_request ( LassoLogout* logout, gchar* remote_providerID, LassoHttpMethod request_method ) LassoLogout* lasso_logout_new ( LassoServer* server ) LassoLogout* lasso_logout_new_from_dump ( LassoServer* server, const gchar* dump ) lasso_error_t lasso_logout_process_request_msg ( LassoLogout* logout, gchar* request_msg ) lasso_error_t lasso_logout_process_response_msg ( LassoLogout* logout, gchar* response_msg ) lasso_error_t lasso_logout_reset_providerID_index ( LassoLogout* logout ) lasso_error_t lasso_logout_validate_request ( LassoLogout* logout ) GType lasso_misc_text_node_get_type ( ) xmlNode* lasso_misc_text_node_get_xml_content ( LassoMiscTextNode* misc_text_node ) LassoNode* lasso_misc_text_node_new ( ) LassoMiscTextNode* lasso_misc_text_node_new_with_string ( const char* content ) LassoMiscTextNode* lasso_misc_text_node_new_with_xml_node ( xmlNode* xml_node ) None lasso_misc_text_node_set_xml_content ( LassoMiscTextNode* misc_text_node, xmlNode* node ) lasso_error_t lasso_name_id_management_build_request_msg ( LassoNameIdManagement* name_id_management ) lasso_error_t lasso_name_id_management_build_response_msg ( LassoNameIdManagement* name_id_management ) None lasso_name_id_management_destroy ( LassoNameIdManagement* name_id_management ) char* lasso_name_id_management_dump ( LassoNameIdManagement* name_id_management ) GType lasso_name_id_management_get_type ( ) lasso_error_t lasso_name_id_management_init_request ( LassoNameIdManagement* name_id_management, char* remote_provider_id, char* new_name_id, LassoHttpMethod http_method ) LassoNameIdManagement* lasso_name_id_management_new ( LassoServer* server ) LassoNameIdManagement* lasso_name_id_management_new_from_dump ( LassoServer* server, const char* dump ) lasso_error_t lasso_name_id_management_process_request_msg ( LassoNameIdManagement* name_id_management, gchar* request_msg ) lasso_error_t lasso_name_id_management_process_response_msg ( LassoNameIdManagement* name_id_management, gchar* response_msg ) lasso_error_t lasso_name_id_management_validate_request ( LassoNameIdManagement* name_id_management ) lasso_error_t lasso_name_identifier_mapping_build_request_msg ( LassoNameIdentifierMapping* mapping ) lasso_error_t lasso_name_identifier_mapping_build_response_msg ( LassoNameIdentifierMapping* mapping ) None lasso_name_identifier_mapping_destroy ( LassoNameIdentifierMapping* mapping ) GType lasso_name_identifier_mapping_get_type ( ) lasso_error_t lasso_name_identifier_mapping_init_request ( LassoNameIdentifierMapping* mapping, gchar* targetNamespace, gchar* remote_providerID ) LassoNameIdentifierMapping* lasso_name_identifier_mapping_new ( LassoServer* server ) lasso_error_t lasso_name_identifier_mapping_process_request_msg ( LassoNameIdentifierMapping* mapping, gchar* request_msg ) lasso_error_t lasso_name_identifier_mapping_process_response_msg ( LassoNameIdentifierMapping* mapping, gchar* response_msg ) lasso_error_t lasso_name_identifier_mapping_validate_request ( LassoNameIdentifierMapping* mapping ) lasso_error_t lasso_name_registration_build_request_msg ( LassoNameRegistration* name_registration ) lasso_error_t lasso_name_registration_build_response_msg ( LassoNameRegistration* name_registration ) None lasso_name_registration_destroy ( LassoNameRegistration* name_registration ) gchar* lasso_name_registration_dump ( LassoNameRegistration* name_registration ) GType lasso_name_registration_get_type ( ) lasso_error_t lasso_name_registration_init_request ( LassoNameRegistration* name_registration, char* remote_providerID, LassoHttpMethod http_method ) LassoNameRegistration* lasso_name_registration_new ( LassoServer* server ) LassoNameRegistration* lasso_name_registration_new_from_dump ( LassoServer* server, const char* dump ) lasso_error_t lasso_name_registration_process_request_msg ( LassoNameRegistration* name_registration, gchar* request_msg ) lasso_error_t lasso_name_registration_process_response_msg ( LassoNameRegistration* name_registration, gchar* response_msg ) lasso_error_t lasso_name_registration_validate_request ( LassoNameRegistration* name_registration ) None lasso_node_cleanup_original_xmlnodes ( LassoNode* node ) char* lasso_node_debug ( LassoNode* node, int level ) None lasso_node_destroy ( LassoNode* node ) char* lasso_node_dump ( LassoNode* node ) char* lasso_node_export_to_base64 ( LassoNode* node ) char* lasso_node_export_to_ecp_soap_response ( LassoNode* node, const char* assertionConsumerURL ) char* lasso_node_export_to_paos_request ( LassoNode* node, const char* issuer, const char* responseConsumerURL, const char* relay_state ) char* lasso_node_export_to_query ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file ) char* lasso_node_export_to_query_with_password ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file, const char* private_key_file_password ) char* lasso_node_export_to_soap ( LassoNode* node ) gchar* lasso_node_export_to_xml ( LassoNode* node ) const char* lasso_node_get_name ( LassoNode* node ) const char* lasso_node_get_namespace ( LassoNode* node ) xmlNode* lasso_node_get_original_xmlnode ( LassoNode* node ) GType lasso_node_get_type ( ) xmlNode* lasso_node_get_xmlNode ( LassoNode* node, gboolean lasso_dump ) LassoMessageFormat lasso_node_init_from_message ( LassoNode* node, const char* message ) gboolean lasso_node_init_from_query ( LassoNode* node, const char* query ) lasso_error_t lasso_node_init_from_xml ( LassoNode* node, xmlNode* xmlnode ) LassoNode* lasso_node_new ( ) LassoNode* lasso_node_new_from_dump ( const char* dump ) LassoNode* lasso_node_new_from_soap ( const char* soap ) LassoNode* lasso_node_new_from_xmlNode ( xmlNode* node ) None lasso_node_set_custom_namespace ( LassoNode* node, const char* prefix, const char* href ) None lasso_node_set_custom_nodename ( LassoNode* node, const char* nodename ) None lasso_node_set_original_xmlnode ( LassoNode* node, xmlNode* xmlnode ) char* lasso_profile_get_artifact ( LassoProfile* profile ) char* lasso_profile_get_artifact_message ( LassoProfile* profile ) LassoIdentity* lasso_profile_get_identity ( LassoProfile* profile ) LassoNode* lasso_profile_get_nameIdentifier ( LassoProfile* profile ) LassoRequestType lasso_profile_get_request_type_from_soap_msg ( const gchar* soap ) LassoSession* lasso_profile_get_session ( LassoProfile* profile ) LassoProfileSignatureHint lasso_profile_get_signature_hint ( LassoProfile* profile ) lasso_error_t lasso_profile_get_signature_status ( LassoProfile* profile ) LassoProfileSignatureVerifyHint lasso_profile_get_signature_verify_hint ( LassoProfile* profile ) GType lasso_profile_get_type ( ) gboolean lasso_profile_is_identity_dirty ( LassoProfile* profile ) gboolean lasso_profile_is_liberty_query ( const gchar* query ) gboolean lasso_profile_is_saml_query ( const gchar* query ) gboolean lasso_profile_is_session_dirty ( LassoProfile* profile ) None lasso_profile_set_artifact_message ( LassoProfile* profile, const char* message ) lasso_error_t lasso_profile_set_identity_from_dump ( LassoProfile* profile, const gchar* dump ) lasso_error_t lasso_profile_set_session_from_dump ( LassoProfile* profile, const gchar* dump ) None lasso_profile_set_signature_hint ( LassoProfile* profile, LassoProfileSignatureHint signature_hint ) None lasso_profile_set_signature_verify_hint ( LassoProfile* profile, LassoProfileSignatureVerifyHint signature_verify_hint ) lasso_error_t lasso_profile_set_soap_fault_response ( LassoProfile* profile, const char* faultcode, const char* faultstring, GList* details ) LassoProviderRole lasso_profile_sso_role_with ( LassoProfile* profile, const char* remote_provider_id ) gboolean lasso_provider_accept_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type, LassoHttpMethod http_method, gboolean initiate_profile ) gchar* lasso_provider_get_assertion_consumer_service_url ( LassoProvider* provider, const char* service_id ) gchar* lasso_provider_get_base64_succinct_id ( const LassoProvider* provider ) char* lasso_provider_get_cache_duration ( LassoProvider* provider ) gchar* lasso_provider_get_default_name_id_format ( LassoProvider* provider ) LassoEncryptionMode lasso_provider_get_encryption_mode ( LassoProvider* provider ) LassoHttpMethod lasso_provider_get_first_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type ) GList* lasso_provider_get_idp_supported_attributes ( LassoProvider* provider ) GList* lasso_provider_get_metadata_keys_for_role ( LassoProvider* provider, LassoProviderRole role ) GList* lasso_provider_get_metadata_list ( LassoProvider* provider, const char* name ) GList* lasso_provider_get_metadata_list_for_role ( const LassoProvider* provider, LassoProviderRole role, const char* name ) gchar* lasso_provider_get_metadata_one ( LassoProvider* provider, const char* name ) char* lasso_provider_get_metadata_one_for_role ( LassoProvider* provider, LassoProviderRole role, const char* name ) xmlNode* lasso_provider_get_organization ( const LassoProvider* provider ) LassoProtocolConformance lasso_provider_get_protocol_conformance ( const LassoProvider* provider ) LassoProviderRole lasso_provider_get_roles ( LassoProvider* provider ) const char* lasso_provider_get_sp_name_qualifier ( LassoProvider* provider ) GType lasso_provider_get_type ( ) char* lasso_provider_get_valid_until ( LassoProvider* provider ) gboolean lasso_provider_has_protocol_profile ( LassoProvider* provider, LassoMdProtocolType protocol_type, const char* protocol_profile ) gboolean lasso_provider_match_conformance ( LassoProvider* provider, LassoProvider* another_provider ) LassoProvider* lasso_provider_new ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_buffer ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_dump ( const gchar* dump ) LassoSaml2EncryptedElement* lasso_provider_saml2_node_encrypt ( const LassoProvider* provider, LassoNode* lasso_node ) None lasso_provider_set_encryption_mode ( LassoProvider* provider, LassoEncryptionMode encryption_mode ) None lasso_provider_set_encryption_sym_key_type ( LassoProvider* provider, LassoEncryptionSymKeyType encryption_sym_key_type ) lasso_error_t lasso_provider_verify_single_node_signature ( LassoProvider* provider, LassoNode* node, const char* id_attr_name ) None lasso_register_dst_service ( const char* prefix, const char* href ) None lasso_register_idwsf2_dst_service ( const gchar* prefix, const gchar* href ) GType lasso_saml2_action_get_type ( ) LassoNode* lasso_saml2_action_new ( ) LassoNode* lasso_saml2_action_new_with_string ( char* content ) GType lasso_saml2_advice_get_type ( ) LassoNode* lasso_saml2_advice_new ( ) lasso_error_t lasso_saml2_assertion_add_attribute_with_node ( LassoSaml2Assertion* assertion, const char* name, const char* nameformat, LassoNode* content ) None lasso_saml2_assertion_add_audience_restriction ( LassoSaml2Assertion* saml2_assertion, const char* providerID ) None lasso_saml2_assertion_add_proxy_limit ( LassoSaml2Assertion* saml2_assertion, int proxy_count, GList* proxy_audiences ) LassoSaml2AssertionValidationState lasso_saml2_assertion_allows_proxying ( LassoSaml2Assertion* saml2_assertion ) LassoSaml2AssertionValidationState lasso_saml2_assertion_allows_proxying_to ( LassoSaml2Assertion* saml2_assertion, const char* audience ) lasso_error_t lasso_saml2_assertion_decrypt_subject ( LassoSaml2Assertion* assertion, LassoServer* server ) const char* lasso_saml2_assertion_get_in_response_to ( LassoSaml2Assertion* assertion ) LassoProvider* lasso_saml2_assertion_get_issuer_provider ( const LassoSaml2Assertion* saml2_assertion, const LassoServer* server ) LassoSaml2SubjectConfirmationData* lasso_saml2_assertion_get_subject_confirmation_data ( LassoSaml2Assertion* saml2_assertion, gboolean create ) GType lasso_saml2_assertion_get_type ( ) gboolean lasso_saml2_assertion_has_audience_restriction ( LassoSaml2Assertion* saml2_assertion ) gboolean lasso_saml2_assertion_has_one_time_use ( LassoSaml2Assertion* saml2_assertion ) gboolean lasso_saml2_assertion_is_audience_restricted ( LassoSaml2Assertion* saml2_assertion, char* providerID ) LassoNode* lasso_saml2_assertion_new ( ) None lasso_saml2_assertion_set_basic_conditions ( LassoSaml2Assertion* saml2_assertion, time_t tolerance, time_t length, gboolean one_time_use ) None lasso_saml2_assertion_set_one_time_use ( LassoSaml2Assertion* saml2_assertion, gboolean one_time_use ) None lasso_saml2_assertion_set_subject_confirmation_data ( LassoSaml2Assertion* saml2_assertion, time_t tolerance, time_t length, const char* Recipient, const char* InResponseTo, const char* Address ) None lasso_saml2_assertion_set_subject_confirmation_name_id ( LassoSaml2Assertion* saml2_assertion, LassoNode* node ) None lasso_saml2_assertion_set_subject_name_id ( LassoSaml2Assertion* saml2_assertion, LassoNode* node ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_audience ( LassoSaml2Assertion* saml2_assertion, const gchar* audience ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_conditions ( LassoSaml2Assertion* saml2_assertion, const char* relaying_party_providerID ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_time_checks ( LassoSaml2Assertion* saml2_assertion, unsigned int tolerance, time_t now ) GType lasso_saml2_attribute_get_type ( ) LassoNode* lasso_saml2_attribute_new ( ) GType lasso_saml2_attribute_statement_get_type ( ) LassoNode* lasso_saml2_attribute_statement_new ( ) GType lasso_saml2_attribute_value_get_type ( ) LassoSaml2AttributeValue* lasso_saml2_attribute_value_new ( ) GType lasso_saml2_audience_restriction_get_type ( ) LassoNode* lasso_saml2_audience_restriction_new ( ) GType lasso_saml2_authn_context_get_type ( ) LassoNode* lasso_saml2_authn_context_new ( ) GType lasso_saml2_authn_statement_get_type ( ) LassoNode* lasso_saml2_authn_statement_new ( ) GType lasso_saml2_authz_decision_statement_get_type ( ) LassoNode* lasso_saml2_authz_decision_statement_new ( ) GType lasso_saml2_base_idabstract_get_type ( ) LassoNode* lasso_saml2_base_idabstract_new ( ) GType lasso_saml2_condition_abstract_get_type ( ) LassoNode* lasso_saml2_condition_abstract_new ( ) GType lasso_saml2_conditions_get_type ( ) LassoNode* lasso_saml2_conditions_new ( ) LassoSaml2EncryptedElement* lasso_saml2_encrypted_element_build_encrypted_persistent_name_id ( const char* id, const char* idpID, const LassoProvider* provider ) GType lasso_saml2_encrypted_element_get_type ( ) LassoNode* lasso_saml2_encrypted_element_new ( ) lasso_error_t lasso_saml2_encrypted_element_server_decrypt ( LassoSaml2EncryptedElement* encrypted_element, LassoServer* server, LassoNode** decrypted_node ) GType lasso_saml2_evidence_get_type ( ) LassoNode* lasso_saml2_evidence_new ( ) GType lasso_saml2_key_info_confirmation_data_get_type ( ) LassoNode* lasso_saml2_key_info_confirmation_data_new ( ) LassoSaml2NameID* lasso_saml2_name_id_build_persistent ( const char* id, const char* idpID, const char* providerID ) gboolean lasso_saml2_name_id_equals ( LassoSaml2NameID* name_id, LassoSaml2NameID* other_name_id ) GType lasso_saml2_name_id_get_type ( ) LassoNode* lasso_saml2_name_id_new ( ) LassoSaml2NameID* lasso_saml2_name_id_new_with_persistent_format ( const char* id, const char* idpID, const char* providerID ) LassoNode* lasso_saml2_name_id_new_with_string ( char* content ) GType lasso_saml2_one_time_use_get_type ( ) LassoNode* lasso_saml2_one_time_use_new ( ) GType lasso_saml2_proxy_restriction_get_type ( ) LassoNode* lasso_saml2_proxy_restriction_new ( ) GType lasso_saml2_statement_abstract_get_type ( ) LassoNode* lasso_saml2_statement_abstract_new ( ) GType lasso_saml2_subject_confirmation_data_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_data_new ( ) GType lasso_saml2_subject_confirmation_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_new ( ) GType lasso_saml2_subject_get_type ( ) GType lasso_saml2_subject_locality_get_type ( ) LassoNode* lasso_saml2_subject_locality_new ( ) LassoNode* lasso_saml2_subject_new ( ) GType lasso_saml_advice_get_type ( ) LassoNode* lasso_saml_advice_new ( ) GType lasso_saml_assertion_get_type ( ) LassoSamlAssertion* lasso_saml_assertion_new ( ) GType lasso_saml_attribute_designator_get_type ( ) LassoNode* lasso_saml_attribute_designator_new ( ) GType lasso_saml_attribute_get_type ( ) LassoSamlAttribute* lasso_saml_attribute_new ( ) GType lasso_saml_attribute_statement_get_type ( ) LassoSamlAttributeStatement* lasso_saml_attribute_statement_new ( ) GType lasso_saml_attribute_value_get_type ( ) LassoSamlAttributeValue* lasso_saml_attribute_value_new ( ) GType lasso_saml_audience_restriction_condition_get_type ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new_full ( const char* audience ) GType lasso_saml_authentication_statement_get_type ( ) LassoNode* lasso_saml_authentication_statement_new ( ) GType lasso_saml_authority_binding_get_type ( ) LassoNode* lasso_saml_authority_binding_new ( ) GType lasso_saml_condition_abstract_get_type ( ) GType lasso_saml_conditions_get_type ( ) LassoSamlConditions* lasso_saml_conditions_new ( ) GType lasso_saml_name_identifier_get_type ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new_from_xmlNode ( xmlNode* xmlnode ) GType lasso_saml_statement_abstract_get_type ( ) GType lasso_saml_subject_confirmation_get_type ( ) LassoSamlSubjectConfirmation* lasso_saml_subject_confirmation_new ( ) GType lasso_saml_subject_get_type ( ) GType lasso_saml_subject_locality_get_type ( ) LassoNode* lasso_saml_subject_locality_new ( ) LassoNode* lasso_saml_subject_new ( ) GType lasso_saml_subject_statement_abstract_get_type ( ) GType lasso_saml_subject_statement_get_type ( ) LassoNode* lasso_saml_subject_statement_new ( ) GType lasso_samlp2_artifact_resolve_get_type ( ) LassoNode* lasso_samlp2_artifact_resolve_new ( ) GType lasso_samlp2_artifact_response_get_type ( ) LassoNode* lasso_samlp2_artifact_response_new ( ) GType lasso_samlp2_assertion_id_request_get_type ( ) LassoNode* lasso_samlp2_assertion_id_request_new ( ) GType lasso_samlp2_attribute_query_get_type ( ) LassoNode* lasso_samlp2_attribute_query_new ( ) GType lasso_samlp2_authn_query_get_type ( ) LassoNode* lasso_samlp2_authn_query_new ( ) GType lasso_samlp2_authn_request_get_type ( ) LassoNode* lasso_samlp2_authn_request_new ( ) GType lasso_samlp2_authz_decision_query_get_type ( ) LassoNode* lasso_samlp2_authz_decision_query_new ( ) GType lasso_samlp2_extensions_get_type ( ) LassoNode* lasso_samlp2_extensions_new ( ) GType lasso_samlp2_idp_entry_get_type ( ) LassoNode* lasso_samlp2_idp_entry_new ( ) GType lasso_samlp2_idp_list_get_type ( ) LassoNode* lasso_samlp2_idp_list_new ( ) GList* lasso_samlp2_logout_request_get_session_indexes ( LassoSamlp2LogoutRequest* logout_request ) GType lasso_samlp2_logout_request_get_type ( ) LassoNode* lasso_samlp2_logout_request_new ( ) None lasso_samlp2_logout_request_set_session_indexes ( LassoSamlp2LogoutRequest* logout_request, GList* session_index ) GType lasso_samlp2_logout_response_get_type ( ) LassoNode* lasso_samlp2_logout_response_new ( ) GType lasso_samlp2_manage_name_id_request_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_request_new ( ) GType lasso_samlp2_manage_name_id_response_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_response_new ( ) GType lasso_samlp2_name_id_mapping_request_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_request_new ( ) GType lasso_samlp2_name_id_mapping_response_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_response_new ( ) GType lasso_samlp2_name_id_policy_get_type ( ) LassoNode* lasso_samlp2_name_id_policy_new ( ) GType lasso_samlp2_request_abstract_get_type ( ) LassoNode* lasso_samlp2_request_abstract_new ( ) GType lasso_samlp2_requested_authn_context_get_type ( ) LassoNode* lasso_samlp2_requested_authn_context_new ( ) GType lasso_samlp2_response_get_type ( ) LassoNode* lasso_samlp2_response_new ( ) GType lasso_samlp2_scoping_get_type ( ) LassoNode* lasso_samlp2_scoping_new ( ) GType lasso_samlp2_status_code_get_type ( ) LassoNode* lasso_samlp2_status_code_new ( ) GType lasso_samlp2_status_detail_get_type ( ) LassoNode* lasso_samlp2_status_detail_new ( ) GType lasso_samlp2_status_get_type ( ) LassoNode* lasso_samlp2_status_new ( ) GType lasso_samlp2_status_response_get_type ( ) LassoNode* lasso_samlp2_status_response_new ( ) GType lasso_samlp2_subject_query_abstract_get_type ( ) LassoNode* lasso_samlp2_subject_query_abstract_new ( ) GType lasso_samlp2_terminate_get_type ( ) LassoNode* lasso_samlp2_terminate_new ( ) GType lasso_samlp_request_abstract_get_type ( ) GType lasso_samlp_request_get_type ( ) LassoNode* lasso_samlp_request_new ( ) None lasso_samlp_response_abstract_fill ( LassoSamlpResponseAbstract* response, const char* InResponseTo, const char* Recipient ) GType lasso_samlp_response_abstract_get_type ( ) GType lasso_samlp_response_get_type ( ) LassoNode* lasso_samlp_response_new ( ) GType lasso_samlp_status_code_get_type ( ) LassoSamlpStatusCode* lasso_samlp_status_code_new ( ) GType lasso_samlp_status_get_type ( ) LassoSamlpStatus* lasso_samlp_status_new ( ) lasso_error_t lasso_server_add_provider ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) lasso_error_t lasso_server_add_provider_from_buffer ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) None lasso_server_destroy ( LassoServer* server ) gchar* lasso_server_dump ( LassoServer* server ) LassoProvider* lasso_server_get_provider ( const LassoServer* server, const gchar* providerID ) GType lasso_server_get_type ( ) lasso_error_t lasso_server_load_affiliation ( LassoServer* server, const gchar* filename ) LassoServer* lasso_server_new ( const gchar* metadata, const gchar* private_key, const gchar* private_key_password, const gchar* certificate ) LassoServer* lasso_server_new_from_buffers ( const gchar* metadata, const gchar* private_key_content, const gchar* private_key_password, const gchar* certificate_content ) LassoServer* lasso_server_new_from_dump ( const gchar* dump ) lasso_error_t lasso_server_saml2_assertion_setup_signature ( LassoServer* server, LassoSaml2Assertion* saml2_assertion ) lasso_error_t lasso_server_set_encryption_private_key ( LassoServer* server, const gchar* filename_or_buffer ) lasso_error_t lasso_server_set_encryption_private_key_with_password ( LassoServer* server, const gchar* filename_or_buffer, const gchar* password ) lasso_error_t lasso_session_add_assertion ( LassoSession* session, const char* providerID, LassoNode* assertion ) None lasso_session_destroy ( LassoSession* session ) gchar* lasso_session_dump ( LassoSession* session ) LassoNode* lasso_session_get_assertion ( LassoSession* session, const gchar* providerID ) GList* lasso_session_get_assertions ( LassoSession* session, const char* provider_id ) gchar* lasso_session_get_provider_index ( LassoSession* session, gint index ) GType lasso_session_get_type ( ) gboolean lasso_session_is_empty ( LassoSession* session ) LassoSession* lasso_session_new ( ) LassoSession* lasso_session_new_from_dump ( const gchar* dump ) lasso_error_t lasso_session_remove_assertion ( LassoSession* session, const gchar* providerID ) None lasso_set_flag ( char* flag ) lasso_error_t lasso_shutdown ( ) GType lasso_soap_body_get_type ( ) LassoSoapBody* lasso_soap_body_new ( ) LassoSoapBody* lasso_soap_body_new_from_message ( const gchar* message ) GType lasso_soap_detail_get_type ( ) LassoSoapDetail* lasso_soap_detail_new ( ) LassoSoapDetail* lasso_soap_detail_new_from_message ( const gchar* message ) GType lasso_soap_envelope_get_type ( ) LassoSoapEnvelope* lasso_soap_envelope_new ( LassoSoapBody* body ) LassoSoapEnvelope* lasso_soap_envelope_new_from_message ( const gchar* message ) GType lasso_soap_fault_get_type ( ) LassoSoapFault* lasso_soap_fault_new ( ) LassoSoapFault* lasso_soap_fault_new_from_message ( const gchar* message ) LassoSoapFault* lasso_soap_fault_new_full ( const char* faultcode, const char* faultstring ) GType lasso_soap_header_get_type ( ) LassoSoapHeader* lasso_soap_header_new ( ) LassoSoapHeader* lasso_soap_header_new_from_message ( const gchar* message ) const char* lasso_strerror ( int error_code ) lasso-2.9.0/abi/PaxHeaders/abi-2.2.20000644000000000000000000000013013766621500013575 xustar0029 mtime=1608196928.71889494 30 atime=1754992978.145544976 29 ctime=1754993575.20113351 lasso-2.9.0/abi/abi-2.2.20000644000175000017500000016625713766621500015630 0ustar00bdauvergnebdauvergneLASSO_ASSERTION_QUERY_REQUEST_TYPE_ASSERTION_ID LASSO_ASSERTION_QUERY_REQUEST_TYPE_ATTRIBUTE LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHN LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHZ_DECISION LASSO_ASSERTION_QUERY_REQUEST_TYPE_UNSET LASSO_CHECK_VERSIONABI_COMPATIBLE LASSO_CHECK_VERSION_EXACT LASSO_CHECK_VERSION_NUMERIC LASSO_DATA_SERVICE_ERROR_UNREGISTERED_DST LASSO_DEFEDERATION_ERROR_MISSING_NAME_IDENTIFIER LASSO_DISCOVERY_ERROR_FAILED_TO_BUILD_ENDPOINT_REFERENCE LASSO_DISCOVERY_ERROR_MISSING_REQUESTED_SERVICE LASSO_DISCOVERY_ERROR_SVC_METADATA_ASSOCIATION_ADD_FAILED LASSO_DISCOVERY_ERROR_SVC_METADATA_REGISTER_FAILED LASSO_DISCO_HREF LASSO_DISCO_PREFIX LASSO_DISCO_STATUS_CODE_DIRECTIVES LASSO_DISCO_STATUS_CODE_DISCO_OK LASSO_DISCO_STATUS_CODE_FAILED LASSO_DISCO_STATUS_CODE_FORBIDDEN LASSO_DISCO_STATUS_CODE_NO_RESULTS LASSO_DISCO_STATUS_CODE_OK LASSO_DISCO_STATUS_CODE_REMOVE_ENTRY LASSO_DST_ERROR_MISSING_SERVICE_DATA LASSO_DST_ERROR_MODIFY_FAILED LASSO_DST_ERROR_MODIFY_PARTIALLY_FAILED LASSO_DST_ERROR_NEW_DATA_MISSING LASSO_DST_ERROR_QUERY_FAILED LASSO_DST_ERROR_QUERY_PARTIALLY_FAILED LASSO_DST_STATUS_CODE_ACTION_NOT_AUTHORIZED LASSO_DST_STATUS_CODE_ACTION_NOT_SUPPORTED LASSO_DST_STATUS_CODE_ALL_RETURNED LASSO_DST_STATUS_CODE_CHANGED_SINCE_RETURNS_ALL LASSO_DST_STATUS_CODE_CHANGE_HISTORY_NOT_SUPPORTED LASSO_DST_STATUS_CODE_DATA_TOO_LONG LASSO_DST_STATUS_CODE_EXISTS_ALREADY LASSO_DST_STATUS_CODE_EXTENSION_NOT_SUPPORTED LASSO_DST_STATUS_CODE_FAILED LASSO_DST_STATUS_CODE_INVALID_DATA LASSO_DST_STATUS_CODE_INVALID_RESOURCE_ID LASSO_DST_STATUS_CODE_INVALID_SELECT LASSO_DST_STATUS_CODE_MISSING_NEW_DATA_ELEMENT LASSO_DST_STATUS_CODE_MISSING_RESOURCE_ID_ELEMENT LASSO_DST_STATUS_CODE_MISSING_SELECT LASSO_DST_STATUS_CODE_MODIFIED_SINCE LASSO_DST_STATUS_CODE_NO_MORE_ELEMENTS LASSO_DST_STATUS_CODE_NO_MULTIPLE_ALLOWED LASSO_DST_STATUS_CODE_NO_MULTIPLE_RESOURCES LASSO_DST_STATUS_CODE_OK LASSO_DST_STATUS_CODE_PARTIAL LASSO_DST_STATUS_CODE_TIME_OUT LASSO_DST_STATUS_CODE_UNEXPECTED_ERROR LASSO_DS_ERROR_CA_CERT_CHAIN_LOAD_FAILED LASSO_DS_ERROR_CERTIFICATE_LOAD_FAILED LASSO_DS_ERROR_CONTEXT_CREATION_FAILED LASSO_DS_ERROR_DECRYPTION_FAILED LASSO_DS_ERROR_DIGEST_COMPUTE_FAILED LASSO_DS_ERROR_INVALID_REFERENCE_FOR_SAML LASSO_DS_ERROR_INVALID_SIGALG LASSO_DS_ERROR_INVALID_SIGNATURE LASSO_DS_ERROR_KEYS_MNGR_CREATION_FAILED LASSO_DS_ERROR_KEYS_MNGR_INIT_FAILED LASSO_DS_ERROR_PRIVATE_KEY_LOAD_FAILED LASSO_DS_ERROR_PUBLIC_KEY_LOAD_FAILED LASSO_DS_ERROR_SIGNATURE_FAILED LASSO_DS_ERROR_SIGNATURE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TEMPLATE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TMPL_CREATION_FAILED LASSO_DS_ERROR_SIGNATURE_VERIFICATION_FAILED LASSO_DS_ERROR_TOO_MUCH_REFERENCES LASSO_DS_HREF LASSO_DS_PREFIX LASSO_ECP_HREF LASSO_ECP_PREFIX LASSO_ENCRYPTION_MODE_ASSERTION LASSO_ENCRYPTION_MODE_NAMEID LASSO_ENCRYPTION_MODE_NONE LASSO_ENCRYPTION_SYM_KEY_TYPE_3DES LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_128 LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_256 LASSO_ENCRYPTION_SYM_KEY_TYPE_DEFAULT LASSO_EP_HREF LASSO_EP_PREFIX LASSO_ERROR_OUT_OF_MEMORY LASSO_ERROR_UNDEFINED LASSO_ERROR_UNIMPLEMENTED LASSO_GOBJECT_NAMESPACE LASSO_HTTP_METHOD_ANY LASSO_HTTP_METHOD_ARTIFACT_GET LASSO_HTTP_METHOD_ARTIFACT_POST LASSO_HTTP_METHOD_GET LASSO_HTTP_METHOD_IDP_INITIATED LASSO_HTTP_METHOD_LAST LASSO_HTTP_METHOD_NONE LASSO_HTTP_METHOD_POST LASSO_HTTP_METHOD_REDIRECT LASSO_HTTP_METHOD_SOAP LASSO_IDWSF2_DISCO_HREF LASSO_IDWSF2_DISCO_PREFIX LASSO_IDWSF2_DSTREF_HREF LASSO_IDWSF2_DSTREF_PREFIX LASSO_IDWSF2_DST_HREF LASSO_IDWSF2_DST_PREFIX LASSO_IDWSF2_IMS_HREF LASSO_IDWSF2_IMS_PREFIX LASSO_IDWSF2_IS_HREF LASSO_IDWSF2_IS_PREFIX LASSO_IDWSF2_PS_HREF LASSO_IDWSF2_PS_PREFIX LASSO_IDWSF2_SB2_HREF LASSO_IDWSF2_SB2_PREFIX LASSO_IDWSF2_SBF_HREF LASSO_IDWSF2_SBF_PREFIX LASSO_IDWSF2_SEC_HREF LASSO_IDWSF2_SEC_PREFIX LASSO_IDWSF2_SUBSREF_HREF LASSO_IDWSF2_SUBSREF_PREFIX LASSO_IDWSF2_SUBS_HREF LASSO_IDWSF2_SUBS_PREFIX LASSO_IDWSF2_UTIL_HREF LASSO_IDWSF2_UTIL_PREFIX LASSO_IS_HREF LASSO_IS_INTERACT_ATTR_DO_NOT_INTERACT LASSO_IS_INTERACT_ATTR_DO_NOT_INTERACT_FOR_DATA LASSO_IS_INTERACT_ATTR_INTERACT_IF_NEEDED LASSO_IS_PREFIX LASSO_LASSO_HREF LASSO_LASSO_PREFIX LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD_PROTECTED_TRANSPORT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PREVIOUS_SESSION LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SOFTWARE_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_TIME_SYNC_TOKEN LASSO_LIB_AUTHN_CONTEXT_COMPARISON_BETTER LASSO_LIB_AUTHN_CONTEXT_COMPARISON_EXACT LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MAXIMUM LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MINIMUM LASSO_LIB_CONSENT_INAPPLICABLE LASSO_LIB_CONSENT_OBTAINED LASSO_LIB_CONSENT_OBTAINED_CURRENT_EXPLICIT LASSO_LIB_CONSENT_OBTAINED_CURRENT_IMPLICIT LASSO_LIB_CONSENT_OBTAINED_PRIOR LASSO_LIB_CONSENT_UNAVAILABLE LASSO_LIB_HREF LASSO_LIB_MAJOR_VERSION_N LASSO_LIB_MINOR_VERSION_N LASSO_LIB_NAMEID_POLICY_TYPE_ANY LASSO_LIB_NAMEID_POLICY_TYPE_FEDERATED LASSO_LIB_NAMEID_POLICY_TYPE_NONE LASSO_LIB_NAMEID_POLICY_TYPE_ONE_TIME LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENTITYID LASSO_LIB_NAME_IDENTIFIER_FORMAT_FEDERATED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ONE_TIME LASSO_LIB_PREFIX LASSO_LIB_PROTOCOL_PROFILE_BRWS_ART LASSO_LIB_PROTOCOL_PROFILE_BRWS_LECP LASSO_LIB_PROTOCOL_PROFILE_BRWS_POST LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_NIM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_SOAP LASSO_LIB_STATUS_CODE_FEDERATION_DOES_NOT_EXIST LASSO_LIB_STATUS_CODE_INVALID_ASSERTION_CONSUMER_SERVICE_INDEX LASSO_LIB_STATUS_CODE_INVALID_SIGNATURE LASSO_LIB_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_LIB_STATUS_CODE_NO_AVAILABLEIDP LASSO_LIB_STATUS_CODE_NO_PASSIVE LASSO_LIB_STATUS_CODE_NO_SUPPORTEDIDP LASSO_LIB_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_LIB_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_LIB_STATUS_CODE_UNSIGNED_AUTHN_REQUEST LASSO_LIB_STATUS_CODE_UNSUPPORTED_PROFILE LASSO_LOGIN_ERROR_ASSERTION_DOES_NOT_MATCH_REQUEST_ID LASSO_LOGIN_ERROR_ASSERTION_REPLAY LASSO_LOGIN_ERROR_CONSENT_NOT_OBTAINED LASSO_LOGIN_ERROR_FEDERATION_NOT_FOUND LASSO_LOGIN_ERROR_INVALID_NAMEIDPOLICY LASSO_LOGIN_ERROR_INVALID_SIGNATURE LASSO_LOGIN_ERROR_NO_DEFAULT_ENDPOINT LASSO_LOGIN_ERROR_REQUEST_DENIED LASSO_LOGIN_ERROR_STATUS_NOT_SUCCESS LASSO_LOGIN_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGIN_ERROR_UNSIGNED_AUTHN_REQUEST LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_ART LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_LECP LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_POST LASSO_LOGIN_PROTOCOL_PROFILE_REDIRECT LASSO_LOGOUT_ERROR_FEDERATION_NOT_FOUND LASSO_LOGOUT_ERROR_REQUEST_DENIED LASSO_LOGOUT_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGOUT_ERROR_UNSUPPORTED_PROFILE LASSO_MD_PROTOCOL_TYPE_ARTIFACT_RESOLUTION LASSO_MD_PROTOCOL_TYPE_ASSERTION_ID_REQUEST LASSO_MD_PROTOCOL_TYPE_FEDERATION_TERMINATION LASSO_MD_PROTOCOL_TYPE_MANAGE_NAME_ID LASSO_MD_PROTOCOL_TYPE_NAME_IDENTIFIER_MAPPING LASSO_MD_PROTOCOL_TYPE_REGISTER_NAME_IDENTIFIER LASSO_MD_PROTOCOL_TYPE_SINGLE_LOGOUT LASSO_MD_PROTOCOL_TYPE_SINGLE_SIGN_ON LASSO_MESSAGE_FORMAT_BASE64 LASSO_MESSAGE_FORMAT_ERROR LASSO_MESSAGE_FORMAT_QUERY LASSO_MESSAGE_FORMAT_SOAP LASSO_MESSAGE_FORMAT_UNKNOWN LASSO_MESSAGE_FORMAT_XML LASSO_MESSAGE_FORMAT_XSCHEMA_ERROR LASSO_METADATA_HREF LASSO_METADATA_PREFIX LASSO_NAME_IDENTIFIER_MAPPING_ERROR_FORBIDDEN_CALL_ON_THIS_SIDE LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_IDENTIFIER LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_NAMESPACE LASSO_PAOS_HREF LASSO_PAOS_PREFIX LASSO_PARAM_ERROR_BAD_TYPE_OR_NULL_OBJ LASSO_PARAM_ERROR_CHECK_FAILED LASSO_PARAM_ERROR_INVALID_VALUE LASSO_PARAM_ERROR_NON_INITIALIZED_OBJECT LASSO_PP_HREF LASSO_PP_PREFIX LASSO_PROFILE_ERROR_BAD_IDENTITY_DUMP LASSO_PROFILE_ERROR_BAD_SESSION_DUMP LASSO_PROFILE_ERROR_BUILDING_MESSAGE_FAILED LASSO_PROFILE_ERROR_BUILDING_QUERY_FAILED LASSO_PROFILE_ERROR_BUILDING_REQUEST_FAILED LASSO_PROFILE_ERROR_BUILDING_RESPONSE_FAILED LASSO_PROFILE_ERROR_CANNOT_FIND_A_PROVIDER LASSO_PROFILE_ERROR_CANNOT_VERIFY_SIGNATURE LASSO_PROFILE_ERROR_FEDERATION_NOT_FOUND LASSO_PROFILE_ERROR_IDENTITY_NOT_FOUND LASSO_PROFILE_ERROR_INVALID_ARTIFACT LASSO_PROFILE_ERROR_INVALID_HTTP_METHOD LASSO_PROFILE_ERROR_INVALID_ISSUER LASSO_PROFILE_ERROR_INVALID_MSG LASSO_PROFILE_ERROR_INVALID_POST_MSG LASSO_PROFILE_ERROR_INVALID_PROTOCOLPROFILE LASSO_PROFILE_ERROR_INVALID_QUERY LASSO_PROFILE_ERROR_INVALID_SOAP_MSG LASSO_PROFILE_ERROR_MISSING_ARTIFACT LASSO_PROFILE_ERROR_MISSING_ASSERTION LASSO_PROFILE_ERROR_MISSING_ENCRYPTION_PRIVATE_KEY LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE_ADDRESS LASSO_PROFILE_ERROR_MISSING_ISSUER LASSO_PROFILE_ERROR_MISSING_NAME_IDENTIFIER LASSO_PROFILE_ERROR_MISSING_REMOTE_PROVIDERID LASSO_PROFILE_ERROR_MISSING_REQUEST LASSO_PROFILE_ERROR_MISSING_RESOURCE_OFFERING LASSO_PROFILE_ERROR_MISSING_RESPONSE LASSO_PROFILE_ERROR_MISSING_SERVER LASSO_PROFILE_ERROR_MISSING_SERVICE_DESCRIPTION LASSO_PROFILE_ERROR_MISSING_SERVICE_INSTANCE LASSO_PROFILE_ERROR_MISSING_SERVICE_TYPE LASSO_PROFILE_ERROR_MISSING_STATUS_CODE LASSO_PROFILE_ERROR_MISSING_SUBJECT LASSO_PROFILE_ERROR_NAME_IDENTIFIER_NOT_FOUND LASSO_PROFILE_ERROR_RESPONSE_DOES_NOT_MATCH_REQUEST LASSO_PROFILE_ERROR_SESSION_NOT_FOUND LASSO_PROFILE_ERROR_STATUS_NOT_SUCCESS LASSO_PROFILE_ERROR_UNKNOWN_PROFILE_URL LASSO_PROFILE_ERROR_UNKNOWN_PROVIDER LASSO_PROFILE_ERROR_UNSUPPORTED_PROFILE LASSO_PROTOCOL_LIBERTY_1_0 LASSO_PROTOCOL_LIBERTY_1_1 LASSO_PROTOCOL_LIBERTY_1_2 LASSO_PROTOCOL_NONE LASSO_PROTOCOL_SAML_2_0 LASSO_PROVIDER_ERROR_MISSING_PUBLIC_KEY LASSO_PROVIDER_ROLE_IDP LASSO_PROVIDER_ROLE_NONE LASSO_PROVIDER_ROLE_SP LASSO_PYTHON_HREF LASSO_PYTHON_NAMESPACE LASSO_REGISTRY_ERROR_KEY_EXISTS LASSO_REQUEST_TYPE_DEFEDERATION LASSO_REQUEST_TYPE_DISCO_MODIFY LASSO_REQUEST_TYPE_DISCO_QUERY LASSO_REQUEST_TYPE_DST_MODIFY LASSO_REQUEST_TYPE_DST_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_ASSOCIATION_ADD LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_REGISTER LASSO_REQUEST_TYPE_INVALID LASSO_REQUEST_TYPE_LECP LASSO_REQUEST_TYPE_LOGIN LASSO_REQUEST_TYPE_LOGOUT LASSO_REQUEST_TYPE_NAME_IDENTIFIER_MAPPING LASSO_REQUEST_TYPE_NAME_ID_MANAGEMENT LASSO_REQUEST_TYPE_NAME_REGISTRATION LASSO_REQUEST_TYPE_SASL_REQUEST LASSO_SAML2_ASSERTION_HREF LASSO_SAML2_ASSERTION_PREFIX LASSO_SAML2_ATTRIBUTE_NAME_EPR LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_URI LASSO_SAML2_AUTHN_CONTEXT_AUTHENTICATED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_KERBEROS LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_NOMAD_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_PASSWORD_PROTECTED_TRANSPORT LASSO_SAML2_AUTHN_CONTEXT_PERSONALIZED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PGP LASSO_SAML2_AUTHN_CONTEXT_PREVIOUS_SESSION LASSO_SAML2_AUTHN_CONTEXT_SECURE_REMOTE_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD_PKI LASSO_SAML2_AUTHN_CONTEXT_SOFTWARE_PKI LASSO_SAML2_AUTHN_CONTEXT_SPKI LASSO_SAML2_AUTHN_CONTEXT_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_TIME_SYNC_TOKEN LASSO_SAML2_AUTHN_CONTEXT_TLS_CLIENT LASSO_SAML2_AUTHN_CONTEXT_X509 LASSO_SAML2_AUTHN_CONTEXT_XMLDSIG LASSO_SAML2_CONFIRMATION_METHOD_BEARER LASSO_SAML2_CONSENT_EXPLICIT LASSO_SAML2_CONSENT_IMPLICIT LASSO_SAML2_CONSENT_INAPPLICABLE LASSO_SAML2_CONSENT_OBTAINED LASSO_SAML2_CONSENT_PRIOR LASSO_SAML2_CONSENT_UNAVAILABLE LASSO_SAML2_DEFLATE_ENCODING LASSO_SAML2_METADATA_BINDING_ARTIFACT LASSO_SAML2_METADATA_BINDING_PAOS LASSO_SAML2_METADATA_BINDING_POST LASSO_SAML2_METADATA_BINDING_REDIRECT LASSO_SAML2_METADATA_BINDING_SOAP LASSO_SAML2_METADATA_HREF LASSO_SAML2_NAME_IDENTIFIER_FORMAT_EMAIL LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENTITY LASSO_SAML2_NAME_IDENTIFIER_FORMAT_KERBEROS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_PERSISTENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_TRANSIENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_UNSPECIFIED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_WINDOWS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_X509 LASSO_SAML2_PROTOCOL_HREF LASSO_SAML2_PROTOCOL_PREFIX LASSO_SAML2_STATUS_CODE_AUTHN_FAILED LASSO_SAML2_STATUS_CODE_INVALID_ATTR_NAME LASSO_SAML2_STATUS_CODE_INVALID_NAME_ID_POLICY LASSO_SAML2_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_SAML2_STATUS_CODE_NO_AVAILABLE_IDP LASSO_SAML2_STATUS_CODE_NO_PASSIVE LASSO_SAML2_STATUS_CODE_NO_SUPPORTED_IDP LASSO_SAML2_STATUS_CODE_PARTIAL_LOGOUT LASSO_SAML2_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_SAML2_STATUS_CODE_REQUESTER LASSO_SAML2_STATUS_CODE_REQUEST_DENIED LASSO_SAML2_STATUS_CODE_REQUEST_UNSUPPORTED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML2_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML2_STATUS_CODE_RESPONDER LASSO_SAML2_STATUS_CODE_SUCCESS LASSO_SAML2_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML2_STATUS_CODE_UNKNOWN_ATTR_PROFILE LASSO_SAML2_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_SAML2_STATUS_CODE_UNSUPPORTED_BINDING LASSO_SAML2_STATUS_CODE_VERSION_MISMATCH LASSO_SAML_ASSERTION_HREF LASSO_SAML_ASSERTION_PREFIX LASSO_SAML_AUTHENTICATION_METHODS_PKI LASSO_SAML_AUTHENTICATION_METHOD_HARDWARE_TOKEN LASSO_SAML_AUTHENTICATION_METHOD_KERBEROS LASSO_SAML_AUTHENTICATION_METHOD_LIBERTY LASSO_SAML_AUTHENTICATION_METHOD_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_PGP LASSO_SAML_AUTHENTICATION_METHOD_SECURE_REMOTE_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_SMARTCARD_PKI LASSO_SAML_AUTHENTICATION_METHOD_SOFTWARE_PKI LASSO_SAML_AUTHENTICATION_METHOD_UNSPECIFIED LASSO_SAML_AUTHENTICATION_METHOD_XKMS LASSO_SAML_AUTHENTICATION_METHOD_XMLD_SIG LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT01 LASSO_SAML_CONFIRMATION_METHOD_BEARER LASSO_SAML_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML_CONFIRMATION_METHOD_SENDER_VOUCHES LASSO_SAML_MAJOR_VERSION_N LASSO_SAML_MINOR_VERSION_N LASSO_SAML_PROTOCOL_HREF LASSO_SAML_PROTOCOL_PREFIX LASSO_SAML_STATUS_CODE_REQUESTER LASSO_SAML_STATUS_CODE_REQUEST_DENIED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML_STATUS_CODE_RESPONDER LASSO_SAML_STATUS_CODE_SUCCESS LASSO_SAML_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML_STATUS_CODE_VERSION_MISMATCH LASSO_SA_HREF LASSO_SA_PREFIX LASSO_SA_SASL_SERVICE_NAME LASSO_SA_STATUS_CODE_ABORT LASSO_SA_STATUS_CODE_CONTINUE LASSO_SA_STATUS_CODE_OK LASSO_SECURITY11_MECH_BEARER LASSO_SECURITY11_MECH_SAML LASSO_SECURITY11_MECH_TLS_BEARER LASSO_SECURITY11_MECH_TLS_SAML LASSO_SECURITY11_MECH_TLS_X509 LASSO_SECURITY11_MECH_X509 LASSO_SECURITY_MECH_BEARER LASSO_SECURITY_MECH_CLIENT_TLS LASSO_SECURITY_MECH_CLIENT_TLS_BEARER LASSO_SECURITY_MECH_CLIENT_TLS_SAML LASSO_SECURITY_MECH_CLIENT_TLS_X509 LASSO_SECURITY_MECH_NULL LASSO_SECURITY_MECH_SAML LASSO_SECURITY_MECH_TLS LASSO_SECURITY_MECH_TLS_BEARER LASSO_SECURITY_MECH_TLS_SAML LASSO_SECURITY_MECH_TLS_X509 LASSO_SECURITY_MECH_X509 LASSO_SEC_HREF LASSO_SEC_PREFIX LASSO_SERVER_ERROR_ADD_PROVIDER_FAILED LASSO_SERVER_ERROR_ADD_PROVIDER_PROTOCOL_MISMATCH LASSO_SERVER_ERROR_PROVIDER_NOT_FOUND LASSO_SERVER_ERROR_SET_ENCRYPTION_PRIVATE_KEY_FAILED LASSO_SIGNATURE_METHOD_DSA_SHA1 LASSO_SIGNATURE_METHOD_RSA_SHA1 LASSO_SIGNATURE_TYPE_NONE LASSO_SIGNATURE_TYPE_SIMPLE LASSO_SIGNATURE_TYPE_WITHX509 LASSO_SOAP_BINDING_EXT_HREF LASSO_SOAP_BINDING_EXT_PREFIX LASSO_SOAP_BINDING_HREF LASSO_SOAP_BINDING_PREFIX LASSO_SOAP_BINDING_PROCESS_CONTEXT_PRINCIPAL_OFFLINE LASSO_SOAP_BINDING_PROCESS_CONTEXT_PRINCIPAL_ONLINE LASSO_SOAP_BINDING_PROCESS_CONTEXT_SIMULATE LASSO_SOAP_ENV_ACTOR LASSO_SOAP_ENV_HREF LASSO_SOAP_ENV_PREFIX LASSO_SOAP_ERROR_MISSING_BODY LASSO_SOAP_ERROR_MISSING_ENVELOPE LASSO_SOAP_ERROR_MISSING_HEADER LASSO_SOAP_ERROR_MISSING_SOAP_FAULT_DETAIL LASSO_SOAP_FAULT_CODE_SERVER LASSO_WSA_HREF LASSO_WSA_PREFIX LASSO_WSF_ENABLED LASSO_WSF_PROFILE_ERROR_MISSING_ASSERTION_ID LASSO_WSF_PROFILE_ERROR_MISSING_CORRELATION LASSO_WSF_PROFILE_ERROR_MISSING_CREDENTIAL_REF LASSO_WSF_PROFILE_ERROR_MISSING_DESCRIPTION LASSO_WSF_PROFILE_ERROR_MISSING_ENDPOINT LASSO_WSF_PROFILE_ERROR_MISSING_RESOURCE_ID LASSO_WSF_PROFILE_ERROR_MISSING_SECURITY LASSO_WSF_PROFILE_ERROR_SOAP_FAULT LASSO_WSF_PROFILE_ERROR_UNSUPPORTED_SECURITY_MECHANISM LASSO_WSSE1_HREF LASSO_WSSE1_PREFIX LASSO_WSSE_200401_HREF LASSO_WSSE_200401_PREFIX LASSO_WSSE_HREF LASSO_WSSE_PREFIX LASSO_WSUTIL1_HREF LASSO_WSUTIL1_PREFIX LASSO_WSU_HREF LASSO_WSU_PREFIX LASSO_XML_ERROR_ATTR_NOT_FOUND LASSO_XML_ERROR_ATTR_VALUE_NOT_FOUND LASSO_XML_ERROR_INVALID_FILE LASSO_XML_ERROR_MISSING_NAMESPACE LASSO_XML_ERROR_NODE_CONTENT_NOT_FOUND LASSO_XML_ERROR_NODE_NOT_FOUND LASSO_XML_ERROR_OBJECT_CONSTRUCTION_FAILED LASSO_XSI_HREF LASSO_XSI_PREFIX struct LassoAssertionQuery { LassoAssertionQueryPrivate* private_data } LassoAssertionQueryRequestType LassoCheckVersionMode struct LassoDefederation { void* private_data } struct LassoDsKeyInfo { LassoDsKeyValue* KeyValue } struct LassoDsKeyValue { LassoDsRsaKeyValue* RSAKeyValue } struct LassoDsRsaKeyValue { char* Modulus, char* Exponent } struct LassoEcp { gchar* assertionConsumerURL, LassoEcpPrivate* private_data } LassoEncryptionMode LassoEncryptionSymKeyType struct LassoFederation { gchar* remote_providerID, LassoNode* local_nameIdentifier, LassoNode* remote_nameIdentifier, LassoFederationPrivate* private_data } LassoHttpMethod struct LassoIdentity { GHashTable* federations, gboolean is_dirty, LassoIdentityPrivate* private_data } struct LassoLecp { LassoLibAuthnRequestEnvelope* authnRequestEnvelope, LassoLibAuthnResponseEnvelope* authnResponseEnvelope, char* assertionConsumerServiceURL, void* private_data } struct LassoLibAssertion { char* InResponseTo } struct LassoLibAuthenticationStatement { LassoLibAuthnContext* AuthnContext, char* ReauthenticateOnOrAfter, char* SessionIndex } struct LassoLibAuthnContext { char* AuthnContextClassRef, char* AuthnContextStatementRef, void* AuthenticationContextStatement } struct LassoLibAuthnRequest { GList* Extension, char* ProviderID, char* AffiliationID, char* NameIDPolicy, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolProfile, char* AssertionConsumerServiceID, LassoLibRequestAuthnContext* RequestAuthnContext, char* RelayState, LassoLibScoping* Scoping, char* consent } struct LassoLibAuthnRequestEnvelope { GList* Extension, LassoLibAuthnRequest* AuthnRequest, char* ProviderID, char* ProviderName, char* AssertionConsumerServiceURL, LassoLibIDPList* IDPList, gboolean IsPassive } struct LassoLibAuthnResponse { GList* Extension, char* ProviderID, char* RelayState, char* consent } struct LassoLibAuthnResponseEnvelope { GList* Extension, LassoLibAuthnResponse* AuthnResponse, char* AssertionConsumerServiceURL } struct LassoLibFederationTerminationNotification { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* consent, char* RelayState } struct LassoLibIDPEntries { GList* IDPEntry } struct LassoLibIDPEntry { char* ProviderID, char* ProviderName, char* Loc } struct LassoLibIDPList { LassoLibIDPEntries* IDPEntries, char* GetComplete } struct LassoLibLogoutRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* SessionIndex, char* RelayState, char* consent, char* NotOnOrAfter } struct LassoLibLogoutResponse { } struct LassoLibNameIdentifierMappingRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* TargetNamespace, char* consent } struct LassoLibNameIdentifierMappingResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, LassoSamlNameIdentifier* NameIdentifier } struct LassoLibRegisterNameIdentifierRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* IDPProvidedNameIdentifier, LassoSamlNameIdentifier* SPProvidedNameIdentifier, LassoSamlNameIdentifier* OldProvidedNameIdentifier, char* RelayState } struct LassoLibRegisterNameIdentifierResponse { } struct LassoLibRequestAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextStatementRef, char* AuthnContextComparison } struct LassoLibScoping { int ProxyCount, LassoLibIDPList* IDPList } struct LassoLibStatusResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, char* RelayState } struct LassoLibSubject { LassoSamlNameIdentifier* IDPProvidedNameIdentifier } struct LassoLogin { LassoLoginProtocolProfile protocolProfile, gchar* assertionArtifact, LassoSamlAssertion* assertion, gchar* nameIDPolicy, LassoHttpMethod http_method, LassoLoginPrivate* private_data } LassoLoginProtocolProfile struct LassoLogout { LassoNode* initial_request, LassoNode* initial_response, gchar* initial_remote_providerID, gint providerID_index, LassoHttpMethod initial_http_request_method, LassoLogoutPrivate* private_data } LassoMdProtocolType LassoMessageFormat struct LassoMiscTextNode { char* content, char* name, char* ns_href, char* ns_prefix, gboolean text_child } struct LassoNameIdManagement { void* private_data } struct LassoNameIdentifierMapping { gchar* targetNameIdentifier, void* private_data } struct LassoNameRegistration { LassoSamlNameIdentifier* oldNameIdentifier, void* private_data } struct LassoNode { } struct LassoProfile { LassoServer* server, LassoNode* request, LassoNode* response, LassoNode* nameIdentifier, gchar* remote_providerID, gchar* msg_url, gchar* msg_body, gchar* msg_relayState, LassoIdentity* identity, LassoSession* session, LassoHttpMethod http_request_method, gint signature_status, LassoProfilePrivate* private_data } LassoProtocolConformance struct LassoProvider { gchar* ProviderID, LassoProviderRole role, char* metadata_filename, gchar* public_key, gchar* ca_cert_chain, LassoProviderPrivate* private_data } LassoProviderRole LassoRequestType struct LassoSaml2Action { char* content, char* Namespace } struct LassoSaml2Advice { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2Assertion { LassoSaml2NameID* Issuer, LassoSaml2Subject* Subject, LassoSaml2Conditions* Conditions, LassoSaml2Advice* Advice, GList* Statement, GList* AuthnStatement, GList* AuthzDecisionStatement, GList* AttributeStatement, char* Version, char* ID, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file, gboolean encryption_activated, char* encryption_public_key_str, LassoEncryptionSymKeyType encryption_sym_key_type } struct LassoSaml2Attribute { GList* AttributeValue, char* Name, char* NameFormat, char* FriendlyName } struct LassoSaml2AttributeStatement { GList* Attribute, GList* EncryptedAttribute } struct LassoSaml2AttributeValue { GList* any } struct LassoSaml2AudienceRestriction { char* Audience } struct LassoSaml2AuthnContext { char* AuthnContextClassRef, char* AuthnContextDeclRef, char* AuthenticatingAuthority } struct LassoSaml2AuthnStatement { LassoSaml2SubjectLocality* SubjectLocality, LassoSaml2AuthnContext* AuthnContext, char* AuthnInstant, char* SessionIndex, char* SessionNotOnOrAfter } struct LassoSaml2AuthzDecisionStatement { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource, char* Decision } struct LassoSaml2BaseIDAbstract { char* NameQualifier, char* SPNameQualifier } struct LassoSaml2ConditionAbstract { } struct LassoSaml2Conditions { GList* Condition, GList* AudienceRestriction, GList* OneTimeUse, GList* ProxyRestriction, char* NotBefore, char* NotOnOrAfter } struct LassoSaml2EncryptedElement { xmlNode* EncryptedData, GList* EncryptedKey, LassoNode* original_data } struct LassoSaml2Evidence { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2KeyInfoConfirmationData { } struct LassoSaml2NameID { char* content, char* Format, char* SPProvidedID, char* NameQualifier, char* SPNameQualifier } struct LassoSaml2OneTimeUse { } struct LassoSaml2ProxyRestriction { char* Audience, char* Count } struct LassoSaml2StatementAbstract { } struct LassoSaml2Subject { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmation* SubjectConfirmation } struct LassoSaml2SubjectConfirmation { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmationData* SubjectConfirmationData, char* Method } struct LassoSaml2SubjectConfirmationData { char* NotBefore, char* NotOnOrAfter, char* Recipient, char* InResponseTo, char* Address } struct LassoSaml2SubjectLocality { char* Address, char* DNSName } struct LassoSamlAdvice { GList* any } struct LassoSamlAssertion { LassoSamlConditions* Conditions, LassoSamlAdvice* Advice, void* Statement, LassoSamlSubjectStatement* SubjectStatement, LassoSamlAuthenticationStatement* AuthenticationStatement, void* AuthorizationDecisionStatement, LassoSamlAttributeStatement* AttributeStatement, int MajorVersion, int MinorVersion, char* AssertionID, char* Issuer, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlAttribute { gchar* attributeName, gchar* attributeNameSpace, GList* AttributeValue } struct LassoSamlAttributeDesignator { char* AttributeName, char* AttributeNamespace } struct LassoSamlAttributeStatement { GList* Attribute } struct LassoSamlAttributeValue { GList* any } struct LassoSamlAudienceRestrictionCondition { GList* Audience } struct LassoSamlAuthenticationStatement { LassoSamlSubjectLocality* SubjectLocality, GList* AuthorityBinding, char* AuthenticationMethod, char* AuthenticationInstant } struct LassoSamlAuthorityBinding { char* AuthorityKind, char* Location, char* Binding } struct LassoSamlConditionAbstract { } struct LassoSamlConditions { GList* Condition, GList* AudienceRestrictionCondition, char* NotBefore, char* NotOnOrAfter } struct LassoSamlNameIdentifier { char* NameQualifier, char* Format, char* content } struct LassoSamlStatementAbstract { } struct LassoSamlSubject { LassoSamlNameIdentifier* NameIdentifier, LassoSamlSubjectConfirmation* SubjectConfirmation, LassoSaml2EncryptedElement* EncryptedNameIdentifier } struct LassoSamlSubjectConfirmation { GList* ConfirmationMethod, char* SubjectConfirmationData, LassoDsKeyInfo* KeyInfo } struct LassoSamlSubjectLocality { char* IPAddress, char* DNSAddress } struct LassoSamlSubjectStatement { } struct LassoSamlSubjectStatementAbstract { LassoSamlSubject* Subject } struct LassoSamlp2ArtifactResolve { char* Artifact } struct LassoSamlp2ArtifactResponse { LassoNode* any } struct LassoSamlp2AssertionIDRequest { char* AssertionIDRef } struct LassoSamlp2AttributeQuery { GList* Attribute } struct LassoSamlp2AuthnQuery { LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, char* SessionIndex } struct LassoSamlp2AuthnRequest { LassoSaml2Subject* Subject, LassoSamlp2NameIDPolicy* NameIDPolicy, LassoSaml2Conditions* Conditions, LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, LassoSamlp2Scoping* Scoping, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolBinding, int AssertionConsumerServiceIndex, char* AssertionConsumerServiceURL, int AttributeConsumingServiceIndex, char* ProviderName, G_GNUC_DEPRECATED char } struct LassoSamlp2AuthzDecisionQuery { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource } struct LassoSamlp2Extensions { } struct LassoSamlp2IDPEntry { char* ProviderID, char* Name, char* Loc } struct LassoSamlp2IDPList { LassoSamlp2IDPEntry* IDPEntry, char* GetComplete } struct LassoSamlp2LogoutRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* SessionIndex, char* Reason, char* NotOnOrAfter, G_GNUC_DEPRECATED char } struct LassoSamlp2LogoutResponse { G_GNUC_DEPRECATED char } struct LassoSamlp2ManageNameIDRequest { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* NewID, LassoSaml2EncryptedElement* NewEncryptedID, LassoSamlp2Terminate* Terminate } struct LassoSamlp2ManageNameIDResponse { } struct LassoSamlp2NameIDMappingRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSamlp2NameIDPolicy* NameIDPolicy } struct LassoSamlp2NameIDMappingResponse { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID } struct LassoSamlp2NameIDPolicy { char* Format, char* SPNameQualifier, gboolean AllowCreate } struct LassoSamlp2RequestAbstract { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, char* ID, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2RequestedAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextDeclRef, char* Comparison } struct LassoSamlp2Response { GList* Assertion, GList* EncryptedAssertion } struct LassoSamlp2Scoping { LassoSamlp2IDPList* IDPList, char* RequesterID, char* ProxyCount } struct LassoSamlp2Status { LassoSamlp2StatusCode* StatusCode, char* StatusMessage, LassoSamlp2StatusDetail* StatusDetail } struct LassoSamlp2StatusCode { LassoSamlp2StatusCode* StatusCode, char* Value } struct LassoSamlp2StatusDetail { } struct LassoSamlp2StatusResponse { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, LassoSamlp2Status* Status, char* ID, char* InResponseTo, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2SubjectQueryAbstract { LassoSaml2Subject* Subject } struct LassoSamlp2Terminate { } struct LassoSamlpRequest { char* AssertionArtifact } struct LassoSamlpRequestAbstract { GList* RespondWith, char* RequestID, int MajorVersion, int MinorVersion, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpResponse { LassoSamlpStatus* Status, GList* Assertion } struct LassoSamlpResponseAbstract { char* ResponseID, char* InResponseTo, int MajorVersion, int MinorVersion, char* IssueInstant, char* Recipient, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpStatus { LassoSamlpStatusCode* StatusCode, char* StatusMessage } struct LassoSamlpStatusCode { LassoSamlpStatusCode* StatusCode, char* Value } struct LassoServer { GHashTable* providers, GHashTable* services, gchar* private_key, gchar* private_key_password, gchar* certificate, LassoSignatureMethod signature_method, LassoServerPrivate* private_data } struct LassoSession { GHashTable* assertions, gboolean is_dirty, LassoSessionPrivate* private_data } LassoSignatureMethod LassoSignatureType GList* OFTYPE ( LassoNode) lasso_session_get_assertions( LassoSession* session, const char* provider_id ) gint lasso_assertion_query_build_request_msg ( LassoAssertionQuery* assertion_query ) int lasso_assertion_query_build_response_msg ( LassoAssertionQuery* assertion_query ) None lasso_assertion_query_destroy ( LassoAssertionQuery* assertion_query ) GType lasso_assertion_query_get_type ( ) gint lasso_assertion_query_init_request ( LassoAssertionQuery* assertion_query, char* remote_provider_id, LassoHttpMethod http_method, LassoAssertionQueryRequestType query_request_type ) LassoAssertionQuery* lasso_assertion_query_new ( LassoServer* server ) gint lasso_assertion_query_process_request_msg ( LassoAssertionQuery* assertion_query, gchar* request_msg ) gint lasso_assertion_query_process_response_msg ( LassoAssertionQuery* assertion_query, gchar* response_msg ) gint lasso_assertion_query_validate_request ( LassoAssertionQuery* assertion_query ) int lasso_check_version ( int major, int minor, int subminor, LassoCheckVersionMode mode ) gint lasso_defederation_build_notification_msg ( LassoDefederation* defederation ) None lasso_defederation_destroy ( LassoDefederation* defederation ) GType lasso_defederation_get_type ( ) gint lasso_defederation_init_notification ( LassoDefederation* defederation, gchar* remote_providerID, LassoHttpMethod http_method ) LassoDefederation* lasso_defederation_new ( LassoServer* server ) gint lasso_defederation_process_notification_msg ( LassoDefederation* defederation, gchar* notification_msg ) gint lasso_defederation_validate_notification ( LassoDefederation* defederation ) GType lasso_ds_key_info_get_type ( ) LassoDsKeyInfo* lasso_ds_key_info_new ( ) GType lasso_ds_key_value_get_type ( ) LassoDsKeyValue* lasso_ds_key_value_new ( ) GType lasso_ds_rsa_key_value_get_type ( ) LassoDsRsaKeyValue* lasso_ds_rsa_key_value_new ( ) None lasso_ecp_destroy ( LassoEcp* ecp ) GType lasso_ecp_get_type ( ) LassoEcp* lasso_ecp_new ( LassoServer* server ) int lasso_ecp_process_authn_request_msg ( LassoEcp* ecp, const char* authn_request_msg ) int lasso_ecp_process_response_msg ( LassoEcp* ecp, const char* response_msg ) None lasso_federation_build_local_name_identifier ( LassoFederation* federation, const gchar* nameQualifier, const gchar* format, const gchar* content ) None lasso_federation_destroy ( LassoFederation* federation ) GType lasso_federation_get_type ( ) LassoFederation* lasso_federation_new ( gchar* remote_providerID ) gboolean lasso_federation_verify_name_identifier ( LassoFederation* federation, LassoNode* name_identifier ) char* lasso_get_prefix_for_dst_service_href ( const char* href ) gchar* lasso_get_prefix_for_idwsf2_dst_service_href ( const gchar* href ) None lasso_identity_destroy ( LassoIdentity* identity ) gchar* lasso_identity_dump ( LassoIdentity* identity ) LassoFederation* lasso_identity_get_federation ( LassoIdentity* identity, const char* providerID ) GType lasso_identity_get_type ( ) LassoIdentity* lasso_identity_new ( ) LassoIdentity* lasso_identity_new_from_dump ( const gchar* dump ) int lasso_init ( ) int lasso_lecp_build_authn_request_envelope_msg ( LassoLecp* lecp ) int lasso_lecp_build_authn_request_msg ( LassoLecp* lecp ) int lasso_lecp_build_authn_response_envelope_msg ( LassoLecp* lecp ) int lasso_lecp_build_authn_response_msg ( LassoLecp* lecp ) None lasso_lecp_destroy ( LassoLecp* lecp ) GType lasso_lecp_get_type ( ) int lasso_lecp_init_authn_request ( LassoLecp* lecp, const char* remote_providerID ) LassoLecp* lasso_lecp_new ( LassoServer* server ) int lasso_lecp_process_authn_request_envelope_msg ( LassoLecp* lecp, const char* request_msg ) int lasso_lecp_process_authn_request_msg ( LassoLecp* lecp, const char* authn_request_msg ) int lasso_lecp_process_authn_response_envelope_msg ( LassoLecp* lecp, const char* response_msg ) GType lasso_lib_assertion_get_type ( ) LassoLibAssertion* lasso_lib_assertion_new ( ) LassoLibAssertion* lasso_lib_assertion_new_full ( const char* issuer, const char* requestID, const char* audience, const char* notBefore, const char* notOnOrAfter ) GType lasso_lib_authentication_statement_get_type ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new_full ( const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, LassoSamlNameIdentifier* sp_identifier, LassoSamlNameIdentifier* idp_identifier ) GType lasso_lib_authn_context_get_type ( ) LassoNode* lasso_lib_authn_context_new ( ) GType lasso_lib_authn_request_envelope_get_type ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new_full ( LassoLibAuthnRequest* authnRequest, char* providerID, char* assertionConsumerServiceURL ) GType lasso_lib_authn_request_get_type ( ) LassoLibAuthnRequest* lasso_lib_authn_request_new ( ) GType lasso_lib_authn_response_envelope_get_type ( ) LassoLibAuthnResponseEnvelope* lasso_lib_authn_response_envelope_new ( LassoLibAuthnResponse* response, char* assertionConsumerServiceURL ) GType lasso_lib_authn_response_get_type ( ) LassoNode* lasso_lib_authn_response_new ( char* providerID, LassoLibAuthnRequest* request ) GType lasso_lib_federation_termination_notification_get_type ( ) LassoNode* lasso_lib_federation_termination_notification_new ( ) LassoLibFederationTerminationNotification* lasso_lib_federation_termination_notification_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_idp_entries_get_type ( ) LassoNode* lasso_lib_idp_entries_new ( ) GType lasso_lib_idp_entry_get_type ( ) LassoNode* lasso_lib_idp_entry_new ( ) GType lasso_lib_idp_list_get_type ( ) LassoNode* lasso_lib_idp_list_new ( ) GType lasso_lib_logout_request_get_type ( ) LassoNode* lasso_lib_logout_request_new ( ) LassoLibLogoutRequest* lasso_lib_logout_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_logout_response_get_type ( ) LassoNode* lasso_lib_logout_response_new ( ) LassoLibLogoutResponse* lasso_lib_logout_response_new_full ( char* providerID, const char* statusCodeValue, LassoLibLogoutRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_request_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new ( ) LassoLibNameIdentifierMappingRequest* lasso_lib_name_identifier_mapping_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, const char* targetNamespace, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_response_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new ( ) LassoLibNameIdentifierMappingResponse* lasso_lib_name_identifier_mapping_response_new_full ( char* provideRID, const char* statusCodeValue, LassoLibNameIdentifierMappingRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_request_get_type ( ) LassoNode* lasso_lib_register_name_identifier_request_new ( ) LassoLibRegisterNameIdentifierRequest* lasso_lib_register_name_identifier_request_new_full ( const char* providerID, LassoSamlNameIdentifier* idpNameIdentifier, LassoSamlNameIdentifier* spNameIdentifier, LassoSamlNameIdentifier* oldNameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_response_get_type ( ) LassoNode* lasso_lib_register_name_identifier_response_new ( ) LassoLibRegisterNameIdentifierResponse* lasso_lib_register_name_identifier_response_new_full ( const char* providerID, const char* statusCodeValue, LassoLibRegisterNameIdentifierRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_request_authn_context_get_type ( ) LassoLibRequestAuthnContext* lasso_lib_request_authn_context_new ( ) GType lasso_lib_scoping_get_type ( ) LassoLibScoping* lasso_lib_scoping_new ( ) GType lasso_lib_status_response_get_type ( ) LassoNode* lasso_lib_status_response_new ( ) GType lasso_lib_subject_get_type ( ) LassoLibSubject* lasso_lib_subject_new ( ) gint lasso_login_accept_sso ( LassoLogin* login ) gint lasso_login_build_artifact_msg ( LassoLogin* login, LassoHttpMethod http_method ) int lasso_login_build_assertion ( LassoLogin* login, const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, const char* notBefore, const char* notOnOrAfter ) gint lasso_login_build_authn_request_msg ( LassoLogin* login ) gint lasso_login_build_authn_response_msg ( LassoLogin* login ) gint lasso_login_build_request_msg ( LassoLogin* login ) gint lasso_login_build_response_msg ( LassoLogin* login, gchar* remote_providerID ) None lasso_login_destroy ( LassoLogin* login ) gchar* lasso_login_dump ( LassoLogin* login ) GType lasso_login_get_type ( ) gint lasso_login_init_authn_request ( LassoLogin* login, const gchar* remote_providerID, LassoHttpMethod http_method ) gint lasso_login_init_idp_initiated_authn_request ( LassoLogin* login, const gchar* remote_providerID ) gint lasso_login_init_request ( LassoLogin* login, gchar* response_msg, LassoHttpMethod response_http_method ) gboolean lasso_login_must_ask_for_consent ( LassoLogin* login ) gboolean lasso_login_must_authenticate ( LassoLogin* login ) LassoLogin* lasso_login_new ( LassoServer* server ) LassoLogin* lasso_login_new_from_dump ( LassoServer* server, const gchar* dump ) int lasso_login_process_authn_request_msg ( LassoLogin* login, const char* authn_request_msg ) gint lasso_login_process_authn_response_msg ( LassoLogin* login, gchar* authn_response_msg ) int lasso_login_process_paos_response_msg ( LassoLogin* login, gchar* msg ) gint lasso_login_process_request_msg ( LassoLogin* login, gchar* request_msg ) gint lasso_login_process_response_msg ( LassoLogin* login, gchar* response_msg ) int lasso_login_set_resourceId ( LassoLogin* login, const char* content ) int lasso_login_validate_request_msg ( LassoLogin* login, gboolean authentication_result, gboolean is_consent_obtained ) gint lasso_logout_build_request_msg ( LassoLogout* logout ) gint lasso_logout_build_response_msg ( LassoLogout* logout ) None lasso_logout_destroy ( LassoLogout* logout ) gchar* lasso_logout_dump ( LassoLogout* logout ) gchar* lasso_logout_get_next_providerID ( LassoLogout* logout ) GType lasso_logout_get_type ( ) gint lasso_logout_init_request ( LassoLogout* logout, gchar* remote_providerID, LassoHttpMethod request_method ) LassoLogout* lasso_logout_new ( LassoServer* server ) LassoLogout* lasso_logout_new_from_dump ( LassoServer* server, const gchar* dump ) gint lasso_logout_process_request_msg ( LassoLogout* logout, gchar* request_msg ) gint lasso_logout_process_response_msg ( LassoLogout* logout, gchar* response_msg ) gint lasso_logout_reset_providerID_index ( LassoLogout* logout ) gint lasso_logout_validate_request ( LassoLogout* logout ) GType lasso_misc_text_node_get_type ( ) LassoNode* lasso_misc_text_node_new ( ) LassoMiscTextNode* lasso_misc_text_node_new_with_string ( char* content ) gint lasso_name_id_management_build_request_msg ( LassoNameIdManagement* name_id_management ) int lasso_name_id_management_build_response_msg ( LassoNameIdManagement* name_id_management ) None lasso_name_id_management_destroy ( LassoNameIdManagement* name_id_management ) char* lasso_name_id_management_dump ( LassoNameIdManagement* name_id_management ) GType lasso_name_id_management_get_type ( ) gint lasso_name_id_management_init_request ( LassoNameIdManagement* name_id_management, char* remote_provider_id, char* new_name_id, LassoHttpMethod http_method ) LassoNameIdManagement* lasso_name_id_management_new ( LassoServer* server ) LassoNameIdManagement* lasso_name_id_management_new_from_dump ( LassoServer* server, const char* dump ) gint lasso_name_id_management_process_request_msg ( LassoNameIdManagement* name_id_management, gchar* request_msg ) gint lasso_name_id_management_process_response_msg ( LassoNameIdManagement* name_id_management, gchar* response_msg ) gint lasso_name_id_management_validate_request ( LassoNameIdManagement* name_id_management ) gint lasso_name_identifier_mapping_build_request_msg ( LassoNameIdentifierMapping* mapping ) gint lasso_name_identifier_mapping_build_response_msg ( LassoNameIdentifierMapping* mapping ) None lasso_name_identifier_mapping_destroy ( LassoNameIdentifierMapping* mapping ) GType lasso_name_identifier_mapping_get_type ( ) gint lasso_name_identifier_mapping_init_request ( LassoNameIdentifierMapping* mapping, gchar* targetNamespace, gchar* remote_providerID ) LassoNameIdentifierMapping* lasso_name_identifier_mapping_new ( LassoServer* server ) gint lasso_name_identifier_mapping_process_request_msg ( LassoNameIdentifierMapping* mapping, gchar* request_msg ) gint lasso_name_identifier_mapping_process_response_msg ( LassoNameIdentifierMapping* mapping, gchar* response_msg ) gint lasso_name_identifier_mapping_validate_request ( LassoNameIdentifierMapping* mapping ) gint lasso_name_registration_build_request_msg ( LassoNameRegistration* name_registration ) gint lasso_name_registration_build_response_msg ( LassoNameRegistration* name_registration ) None lasso_name_registration_destroy ( LassoNameRegistration* name_registration ) gchar* lasso_name_registration_dump ( LassoNameRegistration* name_registration ) GType lasso_name_registration_get_type ( ) gint lasso_name_registration_init_request ( LassoNameRegistration* name_registration, char* remote_providerID, LassoHttpMethod http_method ) LassoNameRegistration* lasso_name_registration_new ( LassoServer* server ) LassoNameRegistration* lasso_name_registration_new_from_dump ( LassoServer* server, const char* dump ) gint lasso_name_registration_process_request_msg ( LassoNameRegistration* name_registration, gchar* request_msg ) gint lasso_name_registration_process_response_msg ( LassoNameRegistration* name_registration, gchar* response_msg ) gint lasso_name_registration_validate_request ( LassoNameRegistration* name_registration ) None lasso_node_cleanup_original_xmlnodes ( LassoNode* node ) None lasso_node_destroy ( LassoNode* node ) char* lasso_node_dump ( LassoNode* node ) char* lasso_node_export_to_base64 ( LassoNode* node ) char* lasso_node_export_to_ecp_soap_response ( LassoNode* node, const char* assertionConsumerURL ) char* lasso_node_export_to_paos_request ( LassoNode* node, const char* issuer, const char* responseConsumerURL, const char* relay_state ) char* lasso_node_export_to_query ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file ) char* lasso_node_export_to_soap ( LassoNode* node ) gchar* lasso_node_export_to_xml ( LassoNode* node ) xmlNode* lasso_node_get_original_xmlnode ( LassoNode* node ) GType lasso_node_get_type ( ) xmlNode* lasso_node_get_xmlNode ( LassoNode* node, gboolean lasso_dump ) LassoMessageFormat lasso_node_init_from_message ( LassoNode* node, const char* message ) gboolean lasso_node_init_from_query ( LassoNode* node, const char* query ) int lasso_node_init_from_xml ( LassoNode* node, xmlNode* xmlnode ) LassoNode* lasso_node_new ( ) LassoNode* lasso_node_new_from_dump ( const char* dump ) LassoNode* lasso_node_new_from_soap ( const char* soap ) LassoNode* lasso_node_new_from_xmlNode ( xmlNode* node ) None lasso_node_set_original_xmlnode ( LassoNode* node, xmlNode* xmlNode ) char* lasso_profile_get_artifact ( LassoProfile* profile ) char* lasso_profile_get_artifact_message ( LassoProfile* profile ) LassoIdentity* lasso_profile_get_identity ( LassoProfile* profile ) LassoNode* lasso_profile_get_nameIdentifier ( LassoProfile* profile ) LassoRequestType lasso_profile_get_request_type_from_soap_msg ( const gchar* soap ) LassoSession* lasso_profile_get_session ( LassoProfile* profile ) GType lasso_profile_get_type ( ) gboolean lasso_profile_is_identity_dirty ( LassoProfile* profile ) gboolean lasso_profile_is_liberty_query ( const gchar* query ) gboolean lasso_profile_is_saml_query ( const gchar* query ) gboolean lasso_profile_is_session_dirty ( LassoProfile* profile ) None lasso_profile_set_artifact_message ( LassoProfile* profile, char* message ) gint lasso_profile_set_identity_from_dump ( LassoProfile* profile, const gchar* dump ) gint lasso_profile_set_session_from_dump ( LassoProfile* profile, const gchar* dump ) gboolean lasso_provider_accept_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type, LassoHttpMethod http_method, gboolean initiate_profile ) gchar* lasso_provider_get_assertion_consumer_service_url ( LassoProvider* provider, const char* service_id ) gchar* lasso_provider_get_base64_succinct_id ( LassoProvider* provider ) LassoHttpMethod lasso_provider_get_first_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type ) GList* lasso_provider_get_metadata_list ( LassoProvider* provider, const char* name ) gchar* lasso_provider_get_metadata_one ( LassoProvider* provider, const char* name ) xmlNode* lasso_provider_get_organization ( LassoProvider* provider ) LassoProtocolConformance lasso_provider_get_protocol_conformance ( LassoProvider* provider ) GType lasso_provider_get_type ( ) gboolean lasso_provider_has_protocol_profile ( LassoProvider* provider, LassoMdProtocolType protocol_type, const char* protocol_profile ) LassoProvider* lasso_provider_new ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_buffer ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_dump ( const gchar* dump ) None lasso_provider_set_encryption_mode ( LassoProvider* provider, LassoEncryptionMode encryption_mode ) None lasso_provider_set_encryption_sym_key_type ( LassoProvider* provider, LassoEncryptionSymKeyType encryption_sym_key_type ) None lasso_register_dst_service ( const char* prefix, const char* href ) None lasso_register_idwsf2_dst_service ( const gchar* prefix, const gchar* href ) GType lasso_saml2_action_get_type ( ) LassoNode* lasso_saml2_action_new ( ) LassoSaml2Action* lasso_saml2_action_new_with_string ( char* content ) GType lasso_saml2_advice_get_type ( ) LassoNode* lasso_saml2_advice_new ( ) GType lasso_saml2_assertion_get_type ( ) LassoNode* lasso_saml2_assertion_new ( ) GType lasso_saml2_attribute_get_type ( ) LassoNode* lasso_saml2_attribute_new ( ) GType lasso_saml2_attribute_statement_get_type ( ) LassoNode* lasso_saml2_attribute_statement_new ( ) GType lasso_saml2_attribute_value_get_type ( ) LassoSaml2AttributeValue* lasso_saml2_attribute_value_new ( ) GType lasso_saml2_audience_restriction_get_type ( ) LassoNode* lasso_saml2_audience_restriction_new ( ) GType lasso_saml2_authn_context_get_type ( ) LassoNode* lasso_saml2_authn_context_new ( ) GType lasso_saml2_authn_statement_get_type ( ) LassoNode* lasso_saml2_authn_statement_new ( ) GType lasso_saml2_authz_decision_statement_get_type ( ) LassoNode* lasso_saml2_authz_decision_statement_new ( ) GType lasso_saml2_base_idabstract_get_type ( ) LassoNode* lasso_saml2_base_idabstract_new ( ) GType lasso_saml2_condition_abstract_get_type ( ) LassoNode* lasso_saml2_condition_abstract_new ( ) GType lasso_saml2_conditions_get_type ( ) LassoNode* lasso_saml2_conditions_new ( ) GType lasso_saml2_encrypted_element_get_type ( ) LassoNode* lasso_saml2_encrypted_element_new ( ) GType lasso_saml2_evidence_get_type ( ) LassoNode* lasso_saml2_evidence_new ( ) GType lasso_saml2_key_info_confirmation_data_get_type ( ) LassoNode* lasso_saml2_key_info_confirmation_data_new ( ) GType lasso_saml2_name_id_get_type ( ) LassoNode* lasso_saml2_name_id_new ( ) LassoSaml2NameID* lasso_saml2_name_id_new_with_string ( char* content ) GType lasso_saml2_one_time_use_get_type ( ) LassoNode* lasso_saml2_one_time_use_new ( ) GType lasso_saml2_proxy_restriction_get_type ( ) LassoNode* lasso_saml2_proxy_restriction_new ( ) GType lasso_saml2_statement_abstract_get_type ( ) LassoNode* lasso_saml2_statement_abstract_new ( ) GType lasso_saml2_subject_confirmation_data_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_data_new ( ) GType lasso_saml2_subject_confirmation_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_new ( ) GType lasso_saml2_subject_get_type ( ) GType lasso_saml2_subject_locality_get_type ( ) LassoNode* lasso_saml2_subject_locality_new ( ) LassoNode* lasso_saml2_subject_new ( ) GType lasso_saml_advice_get_type ( ) LassoNode* lasso_saml_advice_new ( ) GType lasso_saml_assertion_get_type ( ) LassoSamlAssertion* lasso_saml_assertion_new ( ) GType lasso_saml_attribute_designator_get_type ( ) LassoNode* lasso_saml_attribute_designator_new ( ) GType lasso_saml_attribute_get_type ( ) LassoSamlAttribute* lasso_saml_attribute_new ( ) GType lasso_saml_attribute_statement_get_type ( ) LassoSamlAttributeStatement* lasso_saml_attribute_statement_new ( ) GType lasso_saml_attribute_value_get_type ( ) LassoSamlAttributeValue* lasso_saml_attribute_value_new ( ) GType lasso_saml_audience_restriction_condition_get_type ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new_full ( const char* audience ) GType lasso_saml_authentication_statement_get_type ( ) LassoNode* lasso_saml_authentication_statement_new ( ) GType lasso_saml_authority_binding_get_type ( ) LassoNode* lasso_saml_authority_binding_new ( ) GType lasso_saml_condition_abstract_get_type ( ) GType lasso_saml_conditions_get_type ( ) LassoSamlConditions* lasso_saml_conditions_new ( ) GType lasso_saml_name_identifier_get_type ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new_from_xmlNode ( xmlNode* xmlnode ) GType lasso_saml_statement_abstract_get_type ( ) GType lasso_saml_subject_confirmation_get_type ( ) LassoSamlSubjectConfirmation* lasso_saml_subject_confirmation_new ( ) GType lasso_saml_subject_get_type ( ) GType lasso_saml_subject_locality_get_type ( ) LassoNode* lasso_saml_subject_locality_new ( ) LassoNode* lasso_saml_subject_new ( ) GType lasso_saml_subject_statement_abstract_get_type ( ) GType lasso_saml_subject_statement_get_type ( ) LassoNode* lasso_saml_subject_statement_new ( ) GType lasso_samlp2_artifact_resolve_get_type ( ) LassoNode* lasso_samlp2_artifact_resolve_new ( ) GType lasso_samlp2_artifact_response_get_type ( ) LassoNode* lasso_samlp2_artifact_response_new ( ) GType lasso_samlp2_assertion_id_request_get_type ( ) LassoNode* lasso_samlp2_assertion_id_request_new ( ) GType lasso_samlp2_attribute_query_get_type ( ) LassoNode* lasso_samlp2_attribute_query_new ( ) GType lasso_samlp2_authn_query_get_type ( ) LassoNode* lasso_samlp2_authn_query_new ( ) GType lasso_samlp2_authn_request_get_type ( ) LassoNode* lasso_samlp2_authn_request_new ( ) GType lasso_samlp2_authz_decision_query_get_type ( ) LassoNode* lasso_samlp2_authz_decision_query_new ( ) GType lasso_samlp2_extensions_get_type ( ) LassoNode* lasso_samlp2_extensions_new ( ) GType lasso_samlp2_idp_entry_get_type ( ) LassoNode* lasso_samlp2_idp_entry_new ( ) GType lasso_samlp2_idp_list_get_type ( ) LassoNode* lasso_samlp2_idp_list_new ( ) GType lasso_samlp2_logout_request_get_type ( ) LassoNode* lasso_samlp2_logout_request_new ( ) GType lasso_samlp2_logout_response_get_type ( ) LassoNode* lasso_samlp2_logout_response_new ( ) GType lasso_samlp2_manage_name_id_request_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_request_new ( ) GType lasso_samlp2_manage_name_id_response_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_response_new ( ) GType lasso_samlp2_name_id_mapping_request_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_request_new ( ) GType lasso_samlp2_name_id_mapping_response_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_response_new ( ) GType lasso_samlp2_name_id_policy_get_type ( ) LassoNode* lasso_samlp2_name_id_policy_new ( ) GType lasso_samlp2_request_abstract_get_type ( ) LassoNode* lasso_samlp2_request_abstract_new ( ) GType lasso_samlp2_requested_authn_context_get_type ( ) LassoNode* lasso_samlp2_requested_authn_context_new ( ) GType lasso_samlp2_response_get_type ( ) LassoNode* lasso_samlp2_response_new ( ) GType lasso_samlp2_scoping_get_type ( ) LassoNode* lasso_samlp2_scoping_new ( ) GType lasso_samlp2_status_code_get_type ( ) LassoNode* lasso_samlp2_status_code_new ( ) GType lasso_samlp2_status_detail_get_type ( ) LassoNode* lasso_samlp2_status_detail_new ( ) GType lasso_samlp2_status_get_type ( ) LassoNode* lasso_samlp2_status_new ( ) GType lasso_samlp2_status_response_get_type ( ) LassoNode* lasso_samlp2_status_response_new ( ) GType lasso_samlp2_subject_query_abstract_get_type ( ) LassoNode* lasso_samlp2_subject_query_abstract_new ( ) GType lasso_samlp2_terminate_get_type ( ) LassoNode* lasso_samlp2_terminate_new ( ) GType lasso_samlp_request_abstract_get_type ( ) GType lasso_samlp_request_get_type ( ) LassoNode* lasso_samlp_request_new ( ) None lasso_samlp_response_abstract_fill ( LassoSamlpResponseAbstract* response, const char* InResponseTo, const char* Recipient ) GType lasso_samlp_response_abstract_get_type ( ) GType lasso_samlp_response_get_type ( ) LassoNode* lasso_samlp_response_new ( ) GType lasso_samlp_status_code_get_type ( ) LassoSamlpStatusCode* lasso_samlp_status_code_new ( ) GType lasso_samlp_status_get_type ( ) LassoSamlpStatus* lasso_samlp_status_new ( ) gint lasso_server_add_provider ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) gint lasso_server_add_provider_from_buffer ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) gint lasso_server_add_service ( LassoServer* server, LassoNode* service ) gint lasso_server_add_service_from_dump ( LassoServer* server, const gchar* dump ) None lasso_server_destroy ( LassoServer* server ) gchar* lasso_server_dump ( LassoServer* server ) LassoProvider* lasso_server_get_provider ( LassoServer* server, const gchar* providerID ) GType lasso_server_get_type ( ) int lasso_server_load_affiliation ( LassoServer* server, const gchar* filename ) LassoServer* lasso_server_new ( const gchar* metadata, const gchar* private_key, const gchar* private_key_password, const gchar* certificate ) LassoServer* lasso_server_new_from_buffers ( const gchar* metadata, const gchar* private_key, const gchar* private_key_password, const gchar* certificate ) LassoServer* lasso_server_new_from_dump ( const gchar* dump ) int lasso_server_set_encryption_private_key ( LassoServer* server, const gchar* filename ) None lasso_session_destroy ( LassoSession* session ) gchar* lasso_session_dump ( LassoSession* session ) gchar* lasso_session_get_provider_index ( LassoSession* session, gint index ) GType lasso_session_get_type ( ) gboolean lasso_session_is_empty ( LassoSession* session ) LassoSession* lasso_session_new ( ) LassoSession* lasso_session_new_from_dump ( const gchar* dump ) None lasso_set_flag ( char* flag ) int lasso_shutdown ( ) const char* lasso_strerror ( int error_code ) lasso-2.9.0/abi/PaxHeaders/abi-2.3.20000644000000000000000000000013013766621500013576 xustar0029 mtime=1608196928.71889494 30 atime=1754992978.149544894 29 ctime=1754993575.20113351 lasso-2.9.0/abi/abi-2.3.20000644000175000017500000020626113766621500015617 0ustar00bdauvergnebdauvergneBACKWARD_COMP_H LASSO_ASSERTION_QUERY_ERROR_ATTRIBUTE_REQUEST_ALREADY_EXIST LASSO_ASSERTION_QUERY_ERROR_NOT_AN_ATTRIBUTE_QUERY LASSO_ASSERTION_QUERY_REQUEST_TYPE_ASSERTION_ID LASSO_ASSERTION_QUERY_REQUEST_TYPE_ATTRIBUTE LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHN LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHZ_DECISION LASSO_ASSERTION_QUERY_REQUEST_TYPE_LAST LASSO_ASSERTION_QUERY_REQUEST_TYPE_UNSET LASSO_CERTIFICATE_ATTRIBUTE LASSO_CHECK_VERSIONABI_COMPATIBLE LASSO_CHECK_VERSION_EXACT LASSO_CHECK_VERSION_NUMERIC LASSO_DATA_SERVICE_ERROR_CANNOT_ADD_ITEM LASSO_DATA_SERVICE_ERROR_UNREGISTERED_DST LASSO_DEFEDERATION_ERROR_MISSING_NAME_IDENTIFIER LASSO_DISCOVERY_ERROR_FAILED_TO_BUILD_ENDPOINT_REFERENCE LASSO_DISCOVERY_ERROR_MISSING_REQUESTED_SERVICE LASSO_DISCOVERY_ERROR_SVC_METADATA_ASSOCIATION_ADD_FAILED LASSO_DISCOVERY_ERROR_SVC_METADATA_REGISTER_FAILED LASSO_DST_ERROR_EMPTY_REQUEST LASSO_DST_ERROR_MALFORMED_QUERY LASSO_DST_ERROR_MISSING_SERVICE_DATA LASSO_DST_ERROR_MODIFY_FAILED LASSO_DST_ERROR_MODIFY_PARTIALLY_FAILED LASSO_DST_ERROR_NEW_DATA_MISSING LASSO_DST_ERROR_NO_DATA LASSO_DST_ERROR_QUERY_FAILED LASSO_DST_ERROR_QUERY_NOT_FOUND LASSO_DST_ERROR_QUERY_PARTIALLY_FAILED LASSO_DS_ERROR_CA_CERT_CHAIN_LOAD_FAILED LASSO_DS_ERROR_CERTIFICATE_LOAD_FAILED LASSO_DS_ERROR_CONTEXT_CREATION_FAILED LASSO_DS_ERROR_DECRYPTION_FAILED LASSO_DS_ERROR_DECRYPTION_FAILED_MISSING_PRIVATE_KEY LASSO_DS_ERROR_DIGEST_COMPUTE_FAILED LASSO_DS_ERROR_ENCRYPTION_FAILED LASSO_DS_ERROR_INVALID_REFERENCE_FOR_SAML LASSO_DS_ERROR_INVALID_SIGALG LASSO_DS_ERROR_INVALID_SIGNATURE LASSO_DS_ERROR_KEYS_MNGR_CREATION_FAILED LASSO_DS_ERROR_KEYS_MNGR_INIT_FAILED LASSO_DS_ERROR_PRIVATE_KEY_LOAD_FAILED LASSO_DS_ERROR_PUBLIC_KEY_LOAD_FAILED LASSO_DS_ERROR_SIGNATURE_FAILED LASSO_DS_ERROR_SIGNATURE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TEMPLATE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TMPL_CREATION_FAILED LASSO_DS_ERROR_SIGNATURE_VERIFICATION_FAILED LASSO_DS_ERROR_TOO_MUCH_REFERENCES LASSO_DS_HREF LASSO_DS_PREFIX LASSO_DURATION_DAY LASSO_DURATION_HOUR LASSO_DURATION_MINUTE LASSO_DURATION_WEEK LASSO_ECP_HREF LASSO_ECP_PREFIX LASSO_ENCRYPTION_MODE_ASSERTION LASSO_ENCRYPTION_MODE_NAMEID LASSO_ENCRYPTION_MODE_NONE LASSO_ENCRYPTION_SYM_KEY_TYPE_3DES LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_128 LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_256 LASSO_ENCRYPTION_SYM_KEY_TYPE_DEFAULT LASSO_ERROR_CAST_FAILED LASSO_ERROR_OUT_OF_MEMORY LASSO_ERROR_UNDEFINED LASSO_ERROR_UNIMPLEMENTED LASSO_HTTP_METHOD_ANY LASSO_HTTP_METHOD_ARTIFACT_GET LASSO_HTTP_METHOD_ARTIFACT_POST LASSO_HTTP_METHOD_GET LASSO_HTTP_METHOD_IDP_INITIATED LASSO_HTTP_METHOD_LAST LASSO_HTTP_METHOD_NONE LASSO_HTTP_METHOD_PAOS LASSO_HTTP_METHOD_POST LASSO_HTTP_METHOD_REDIRECT LASSO_HTTP_METHOD_SOAP LASSO_IDWSF2_DISCOVERY_ERROR_DUPLICATE LASSO_IDWSF2_DISCOVERY_ERROR_FAILED LASSO_IDWSF2_DISCOVERY_ERROR_FORBIDDEN LASSO_IDWSF2_DISCOVERY_ERROR_LOGICAL_DUPLICATE LASSO_IDWSF2_DISCOVERY_ERROR_NOT_FOUND LASSO_IDWSF2_DISCOVERY_ERROR_NO_RESULTS LASSO_IDWSF2_DST_ERROR_DUPLICATE_ITEM LASSO_IDWSF2_DST_ERROR_ITEM_NOT_FOUND LASSO_IDWSF2_DST_ERROR_PARTIAL_FAILURE LASSO_IDWSF2_DST_ERROR_UNKNOWN_STATUS_CODE LASSO_LASSO_HREF LASSO_LASSO_PREFIX LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD_PROTECTED_TRANSPORT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PREVIOUS_SESSION LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SOFTWARE_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_TIME_SYNC_TOKEN LASSO_LIB_AUTHN_CONTEXT_COMPARISON_BETTER LASSO_LIB_AUTHN_CONTEXT_COMPARISON_EXACT LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MAXIMUM LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MINIMUM LASSO_LIB_CONSENT_INAPPLICABLE LASSO_LIB_CONSENT_OBTAINED LASSO_LIB_CONSENT_OBTAINED_CURRENT_EXPLICIT LASSO_LIB_CONSENT_OBTAINED_CURRENT_IMPLICIT LASSO_LIB_CONSENT_OBTAINED_PRIOR LASSO_LIB_CONSENT_UNAVAILABLE LASSO_LIB_HREF LASSO_LIB_MAJOR_VERSION_N LASSO_LIB_MINOR_VERSION_N LASSO_LIB_NAMEID_POLICY_TYPE_ANY LASSO_LIB_NAMEID_POLICY_TYPE_FEDERATED LASSO_LIB_NAMEID_POLICY_TYPE_NONE LASSO_LIB_NAMEID_POLICY_TYPE_ONE_TIME LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENTITYID LASSO_LIB_NAME_IDENTIFIER_FORMAT_FEDERATED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ONE_TIME LASSO_LIB_PREFIX LASSO_LIB_PROTOCOL_PROFILE_BRWS_ART LASSO_LIB_PROTOCOL_PROFILE_BRWS_LECP LASSO_LIB_PROTOCOL_PROFILE_BRWS_POST LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_NIM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_SOAP LASSO_LIB_STATUS_CODE_FEDERATION_DOES_NOT_EXIST LASSO_LIB_STATUS_CODE_INVALID_ASSERTION_CONSUMER_SERVICE_INDEX LASSO_LIB_STATUS_CODE_INVALID_SIGNATURE LASSO_LIB_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_LIB_STATUS_CODE_NO_AVAILABLEIDP LASSO_LIB_STATUS_CODE_NO_PASSIVE LASSO_LIB_STATUS_CODE_NO_SUPPORTEDIDP LASSO_LIB_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_LIB_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_LIB_STATUS_CODE_UNSIGNED_AUTHN_REQUEST LASSO_LIB_STATUS_CODE_UNSUPPORTED_PROFILE LASSO_LOGIN_ERROR_ASSERTION_DOES_NOT_MATCH_REQUEST_ID LASSO_LOGIN_ERROR_ASSERTION_REPLAY LASSO_LOGIN_ERROR_CONSENT_NOT_OBTAINED LASSO_LOGIN_ERROR_FEDERATION_NOT_FOUND LASSO_LOGIN_ERROR_INVALID_ASSERTION_SIGNATURE LASSO_LOGIN_ERROR_INVALID_NAMEIDPOLICY LASSO_LOGIN_ERROR_INVALID_SIGNATURE LASSO_LOGIN_ERROR_NO_DEFAULT_ENDPOINT LASSO_LOGIN_ERROR_REQUEST_DENIED LASSO_LOGIN_ERROR_STATUS_NOT_SUCCESS LASSO_LOGIN_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGIN_ERROR_UNSIGNED_AUTHN_REQUEST LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_ART LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_LECP LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_POST LASSO_LOGIN_PROTOCOL_PROFILE_REDIRECT LASSO_LOGOUT_ERROR_FEDERATION_NOT_FOUND LASSO_LOGOUT_ERROR_REQUEST_DENIED LASSO_LOGOUT_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGOUT_ERROR_UNSUPPORTED_PROFILE LASSO_MD_PROTOCOL_TYPE_ARTIFACT_RESOLUTION LASSO_MD_PROTOCOL_TYPE_ASSERTION_ID_REQUEST LASSO_MD_PROTOCOL_TYPE_ATTRIBUTE LASSO_MD_PROTOCOL_TYPE_AUTHN_QUERY LASSO_MD_PROTOCOL_TYPE_AUTHZ LASSO_MD_PROTOCOL_TYPE_FEDERATION_TERMINATION LASSO_MD_PROTOCOL_TYPE_LAST LASSO_MD_PROTOCOL_TYPE_MANAGE_NAME_ID LASSO_MD_PROTOCOL_TYPE_NAME_IDENTIFIER_MAPPING LASSO_MD_PROTOCOL_TYPE_REGISTER_NAME_IDENTIFIER LASSO_MD_PROTOCOL_TYPE_SINGLE_LOGOUT LASSO_MD_PROTOCOL_TYPE_SINGLE_SIGN_ON LASSO_MESSAGE_FORMAT_BASE64 LASSO_MESSAGE_FORMAT_ERROR LASSO_MESSAGE_FORMAT_QUERY LASSO_MESSAGE_FORMAT_SOAP LASSO_MESSAGE_FORMAT_UNKNOWN LASSO_MESSAGE_FORMAT_XML LASSO_MESSAGE_FORMAT_XSCHEMA_ERROR LASSO_METADATA_HREF LASSO_METADATA_PREFIX LASSO_NAME_IDENTIFIER_MAPPING_ERROR_FORBIDDEN_CALL_ON_THIS_SIDE LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_IDENTIFIER LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_NAMESPACE LASSO_PAOS_HREF LASSO_PAOS_PREFIX LASSO_PARAM_ERROR_BAD_TYPE_OR_NULL_OBJ LASSO_PARAM_ERROR_CHECK_FAILED LASSO_PARAM_ERROR_INVALID_VALUE LASSO_PARAM_ERROR_NON_INITIALIZED_OBJECT LASSO_PRIVATE_KEY_ATTRIBUTE LASSO_PRIVATE_KEY_PASSWORD_ATTRIBUTE LASSO_PRIVATE_STATUS_CODE_FAILED_TO_RESTORE_ARTIFACT LASSO_PROFILE_ERROR_BAD_IDENTITY_DUMP LASSO_PROFILE_ERROR_BAD_SESSION_DUMP LASSO_PROFILE_ERROR_BUILDING_MESSAGE_FAILED LASSO_PROFILE_ERROR_BUILDING_QUERY_FAILED LASSO_PROFILE_ERROR_BUILDING_REQUEST_FAILED LASSO_PROFILE_ERROR_BUILDING_RESPONSE_FAILED LASSO_PROFILE_ERROR_CANNOT_FIND_A_PROVIDER LASSO_PROFILE_ERROR_CANNOT_VERIFY_SIGNATURE LASSO_PROFILE_ERROR_FEDERATION_NOT_FOUND LASSO_PROFILE_ERROR_IDENTITY_NOT_FOUND LASSO_PROFILE_ERROR_INVALID_ARTIFACT LASSO_PROFILE_ERROR_INVALID_ASSERTION LASSO_PROFILE_ERROR_INVALID_ASSERTION_CONDITIONS LASSO_PROFILE_ERROR_INVALID_HTTP_METHOD LASSO_PROFILE_ERROR_INVALID_ISSUER LASSO_PROFILE_ERROR_INVALID_MSG LASSO_PROFILE_ERROR_INVALID_POST_MSG LASSO_PROFILE_ERROR_INVALID_PROTOCOLPROFILE LASSO_PROFILE_ERROR_INVALID_QUERY LASSO_PROFILE_ERROR_INVALID_REQUEST LASSO_PROFILE_ERROR_INVALID_RESPONSE LASSO_PROFILE_ERROR_INVALID_SOAP_MSG LASSO_PROFILE_ERROR_ISSUER_IS_NOT_AN_IDP LASSO_PROFILE_ERROR_MISSING_ARTIFACT LASSO_PROFILE_ERROR_MISSING_ASSERTION LASSO_PROFILE_ERROR_MISSING_ENCRYPTION_PRIVATE_KEY LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE_ADDRESS LASSO_PROFILE_ERROR_MISSING_ISSUER LASSO_PROFILE_ERROR_MISSING_NAME_IDENTIFIER LASSO_PROFILE_ERROR_MISSING_REMOTE_PROVIDERID LASSO_PROFILE_ERROR_MISSING_REQUEST LASSO_PROFILE_ERROR_MISSING_RESOURCE_OFFERING LASSO_PROFILE_ERROR_MISSING_RESPONSE LASSO_PROFILE_ERROR_MISSING_SERVER LASSO_PROFILE_ERROR_MISSING_SERVICE_DESCRIPTION LASSO_PROFILE_ERROR_MISSING_SERVICE_INSTANCE LASSO_PROFILE_ERROR_MISSING_SERVICE_TYPE LASSO_PROFILE_ERROR_MISSING_STATUS_CODE LASSO_PROFILE_ERROR_MISSING_SUBJECT LASSO_PROFILE_ERROR_NAME_IDENTIFIER_NOT_FOUND LASSO_PROFILE_ERROR_RESPONSE_DOES_NOT_MATCH_REQUEST LASSO_PROFILE_ERROR_SESSION_NOT_FOUND LASSO_PROFILE_ERROR_STATUS_NOT_SUCCESS LASSO_PROFILE_ERROR_UNKNOWN_ISSUER LASSO_PROFILE_ERROR_UNKNOWN_PROFILE_URL LASSO_PROFILE_ERROR_UNKNOWN_PROVIDER LASSO_PROFILE_ERROR_UNSUPPORTED_BINDING LASSO_PROFILE_ERROR_UNSUPPORTED_PROFILE LASSO_PROFILE_SIGNATURE_HINT_FORBID LASSO_PROFILE_SIGNATURE_HINT_FORCE LASSO_PROFILE_SIGNATURE_HINT_MAYBE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_FORCE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_IGNORE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_LAST LASSO_PROFILE_SIGNATURE_VERIFY_HINT_MAYBE LASSO_PROTOCOL_LIBERTY_1_0 LASSO_PROTOCOL_LIBERTY_1_1 LASSO_PROTOCOL_LIBERTY_1_2 LASSO_PROTOCOL_NONE LASSO_PROTOCOL_SAML_2_0 LASSO_PROVIDER_ERROR_MISSING_PUBLIC_KEY LASSO_PROVIDER_ROLE_ANY LASSO_PROVIDER_ROLE_ATTRIBUTE_AUTHORITY LASSO_PROVIDER_ROLE_AUTHN_AUTHORITY LASSO_PROVIDER_ROLE_AUTHZ_AUTHORITY LASSO_PROVIDER_ROLE_BOTH LASSO_PROVIDER_ROLE_IDP LASSO_PROVIDER_ROLE_LAST LASSO_PROVIDER_ROLE_NONE LASSO_PROVIDER_ROLE_SP LASSO_PYTHON_HREF LASSO_REGISTRY_ERROR_KEY_EXISTS LASSO_REQUEST_TYPE_DEFEDERATION LASSO_REQUEST_TYPE_DISCO_MODIFY LASSO_REQUEST_TYPE_DISCO_QUERY LASSO_REQUEST_TYPE_DST_MODIFY LASSO_REQUEST_TYPE_DST_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_ASSOCIATION_ADD LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_REGISTER LASSO_REQUEST_TYPE_INVALID LASSO_REQUEST_TYPE_LECP LASSO_REQUEST_TYPE_LOGIN LASSO_REQUEST_TYPE_LOGOUT LASSO_REQUEST_TYPE_NAME_IDENTIFIER_MAPPING LASSO_REQUEST_TYPE_NAME_ID_MANAGEMENT LASSO_REQUEST_TYPE_NAME_REGISTRATION LASSO_REQUEST_TYPE_SASL_REQUEST LASSO_SAML2_ACTION_GHPP_GET LASSO_SAML2_ACTION_GHPP_HEAD LASSO_SAML2_ACTION_GHPP_POST LASSO_SAML2_ACTION_GHPP_PUT LASSO_SAML2_ACTION_NAMESPACE_GHPP LASSO_SAML2_ACTION_NAMESPACE_RWEDC LASSO_SAML2_ACTION_NAMESPACE_RWEDC_NEGATION LASSO_SAML2_ACTION_NAMESPACE_UNIX LASSO_SAML2_ACTION_RWEDC_CONTROL LASSO_SAML2_ACTION_RWEDC_DELETE LASSO_SAML2_ACTION_RWEDC_EXECUTE LASSO_SAML2_ACTION_RWEDC_NEGATION LASSO_SAML2_ACTION_RWEDC_READ LASSO_SAML2_ACTION_RWEDC_WRITE LASSO_SAML2_ASSERTION_HREF LASSO_SAML2_ASSERTION_INDETERMINATE LASSO_SAML2_ASSERTION_INVALID LASSO_SAML2_ASSERTION_PREFIX LASSO_SAML2_ASSERTION_VALID LASSO_SAML2_ATTRIBUTE_NAME_EPR LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_BASIC LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_UNSPECIFIED LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_URI LASSO_SAML2_ATTRIBUTE_PROFILE_BASIC LASSO_SAML2_ATTRIBUTE_PROFILE_DCE LASSO_SAML2_ATTRIBUTE_PROFILE_UUID LASSO_SAML2_ATTRIBUTE_PROFILE_X500 LASSO_SAML2_AUTHN_CONTEXT_AUTHENTICATED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_KERBEROS LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_NOMAD_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_PASSWORD_PROTECTED_TRANSPORT LASSO_SAML2_AUTHN_CONTEXT_PERSONALIZED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PGP LASSO_SAML2_AUTHN_CONTEXT_PREVIOUS_SESSION LASSO_SAML2_AUTHN_CONTEXT_SECURE_REMOTE_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD_PKI LASSO_SAML2_AUTHN_CONTEXT_SOFTWARE_PKI LASSO_SAML2_AUTHN_CONTEXT_SPKI LASSO_SAML2_AUTHN_CONTEXT_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_TIME_SYNC_TOKEN LASSO_SAML2_AUTHN_CONTEXT_TLS_CLIENT LASSO_SAML2_AUTHN_CONTEXT_UNSPECIFIED LASSO_SAML2_AUTHN_CONTEXT_X509 LASSO_SAML2_AUTHN_CONTEXT_XMLDSIG LASSO_SAML2_CONFIRMATION_METHOD_BEARER LASSO_SAML2_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML2_CONSENT_EXPLICIT LASSO_SAML2_CONSENT_IMPLICIT LASSO_SAML2_CONSENT_INAPPLICABLE LASSO_SAML2_CONSENT_OBTAINED LASSO_SAML2_CONSENT_PRIOR LASSO_SAML2_CONSENT_UNAVAILABLE LASSO_SAML2_DEFLATE_ENCODING LASSO_SAML2_FIELD_ARTIFACT LASSO_SAML2_FIELD_ENCODING LASSO_SAML2_FIELD_RELAYSTATE LASSO_SAML2_FIELD_REQUEST LASSO_SAML2_FIELD_RESPONSE LASSO_SAML2_FIELD_SIGALG LASSO_SAML2_FIELD_SIGNATURE LASSO_SAML2_METADATA_BINDING_ARTIFACT LASSO_SAML2_METADATA_BINDING_PAOS LASSO_SAML2_METADATA_BINDING_POST LASSO_SAML2_METADATA_BINDING_REDIRECT LASSO_SAML2_METADATA_BINDING_SOAP LASSO_SAML2_METADATA_BINDING_URI LASSO_SAML2_METADATA_HREF LASSO_SAML2_METADATA_PREFIX LASSO_SAML2_NAME_IDENTIFIER_FORMAT_EMAIL LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENTITY LASSO_SAML2_NAME_IDENTIFIER_FORMAT_KERBEROS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_PERSISTENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_TRANSIENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_UNSPECIFIED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_WINDOWS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_X509 LASSO_SAML2_PROTOCOL_HREF LASSO_SAML2_PROTOCOL_PREFIX LASSO_SAML2_STATUS_CODE_AUTHN_FAILED LASSO_SAML2_STATUS_CODE_INVALID_ATTR_NAME LASSO_SAML2_STATUS_CODE_INVALID_NAME_ID_POLICY LASSO_SAML2_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_SAML2_STATUS_CODE_NO_AVAILABLE_IDP LASSO_SAML2_STATUS_CODE_NO_PASSIVE LASSO_SAML2_STATUS_CODE_NO_SUPPORTED_IDP LASSO_SAML2_STATUS_CODE_PARTIAL_LOGOUT LASSO_SAML2_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_SAML2_STATUS_CODE_REQUESTER LASSO_SAML2_STATUS_CODE_REQUEST_DENIED LASSO_SAML2_STATUS_CODE_REQUEST_UNSUPPORTED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML2_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML2_STATUS_CODE_RESPONDER LASSO_SAML2_STATUS_CODE_SUCCESS LASSO_SAML2_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML2_STATUS_CODE_UNKNOWN_ATTR_PROFILE LASSO_SAML2_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_SAML2_STATUS_CODE_UNSUPPORTED_BINDING LASSO_SAML2_STATUS_CODE_VERSION_MISMATCH LASSO_SAML_ASSERTION_HREF LASSO_SAML_ASSERTION_PREFIX LASSO_SAML_AUTHENTICATION_METHODS_PKI LASSO_SAML_AUTHENTICATION_METHOD_HARDWARE_TOKEN LASSO_SAML_AUTHENTICATION_METHOD_KERBEROS LASSO_SAML_AUTHENTICATION_METHOD_LIBERTY LASSO_SAML_AUTHENTICATION_METHOD_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_PGP LASSO_SAML_AUTHENTICATION_METHOD_SECURE_REMOTE_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_SMARTCARD_PKI LASSO_SAML_AUTHENTICATION_METHOD_SOFTWARE_PKI LASSO_SAML_AUTHENTICATION_METHOD_UNSPECIFIED LASSO_SAML_AUTHENTICATION_METHOD_XKMS LASSO_SAML_AUTHENTICATION_METHOD_XMLD_SIG LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT01 LASSO_SAML_CONFIRMATION_METHOD_BEARER LASSO_SAML_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML_CONFIRMATION_METHOD_SENDER_VOUCHES LASSO_SAML_MAJOR_VERSION_N LASSO_SAML_MINOR_VERSION_N LASSO_SAML_PROTOCOL_HREF LASSO_SAML_PROTOCOL_PREFIX LASSO_SAML_STATUS_CODE_REQUESTER LASSO_SAML_STATUS_CODE_REQUEST_DENIED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML_STATUS_CODE_RESPONDER LASSO_SAML_STATUS_CODE_SUCCESS LASSO_SAML_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML_STATUS_CODE_VERSION_MISMATCH LASSO_SERVER_ERROR_ADD_PROVIDER_FAILED LASSO_SERVER_ERROR_ADD_PROVIDER_PROTOCOL_MISMATCH LASSO_SERVER_ERROR_INVALID_XML LASSO_SERVER_ERROR_PROVIDER_NOT_FOUND LASSO_SERVER_ERROR_SET_ENCRYPTION_PRIVATE_KEY_FAILED LASSO_SIGNATURE_METHOD_ATTRIBUTE LASSO_SIGNATURE_METHOD_DSA_SHA1 LASSO_SIGNATURE_METHOD_LAST LASSO_SIGNATURE_METHOD_RSA_SHA1 LASSO_SIGNATURE_TYPE_ATTRIBUTE LASSO_SIGNATURE_TYPE_LAST LASSO_SIGNATURE_TYPE_NONE LASSO_SIGNATURE_TYPE_SIMPLE LASSO_SIGNATURE_TYPE_WITHX509 LASSO_SOAP_ENV_ACTOR LASSO_SOAP_ENV_HREF LASSO_SOAP_ENV_PREFIX LASSO_SOAP_ERROR_MISSING_BODY LASSO_SOAP_ERROR_MISSING_ENVELOPE LASSO_SOAP_ERROR_MISSING_HEADER LASSO_SOAP_ERROR_MISSING_SOAP_FAULT_DETAIL LASSO_SOAP_ERROR_REDIRECT_REQUEST_FAULT LASSO_SOAP_FAULT_CODE_CLIENT LASSO_SOAP_FAULT_CODE_MUST_UNDERSTAND LASSO_SOAP_FAULT_CODE_SERVER LASSO_SOAP_FAULT_CODE_VERSION_MISMATCH LASSO_SOAP_FAULT_REDIRECT_REQUEST LASSO_WSF_ENABLED LASSO_WSF_PROFILE_ERROR_INVALID_OR_MISSING_REFERENCE_TO_MESSAGE_ID LASSO_WSF_PROFILE_ERROR_MISSING_ASSERTION_ID LASSO_WSF_PROFILE_ERROR_MISSING_CORRELATION LASSO_WSF_PROFILE_ERROR_MISSING_CREDENTIAL_REF LASSO_WSF_PROFILE_ERROR_MISSING_DESCRIPTION LASSO_WSF_PROFILE_ERROR_MISSING_ENDPOINT LASSO_WSF_PROFILE_ERROR_MISSING_RESOURCE_ID LASSO_WSF_PROFILE_ERROR_MISSING_SECURITY LASSO_WSF_PROFILE_ERROR_MISSING_SENDER_ID LASSO_WSF_PROFILE_ERROR_REDIRECT_REQUEST LASSO_WSF_PROFILE_ERROR_REDIRECT_REQUEST_UNSUPPORTED_BY_REQUESTER LASSO_WSF_PROFILE_ERROR_SECURITY_MECHANISM_CHECK_FAILED LASSO_WSF_PROFILE_ERROR_SERVER_INTERACTION_REQUIRED LASSO_WSF_PROFILE_ERROR_SERVER_INTERACTION_REQUIRED_FOR_DATA LASSO_WSF_PROFILE_ERROR_SOAP_FAULT LASSO_WSF_PROFILE_ERROR_UNKNOWN_STATUS_CODE LASSO_WSF_PROFILE_ERROR_UNSUPPORTED_SECURITY_MECHANISM LASSO_WSSEC_ERROR_BAD_PASSWORD LASSO_WSSEC_ERROR_MISSING_SECURITY_TOKEN LASSO_XML_ERROR_ATTR_NOT_FOUND LASSO_XML_ERROR_ATTR_VALUE_NOT_FOUND LASSO_XML_ERROR_INVALID_FILE LASSO_XML_ERROR_MISSING_NAMESPACE LASSO_XML_ERROR_NODE_CONTENT_NOT_FOUND LASSO_XML_ERROR_NODE_NOT_FOUND LASSO_XML_ERROR_OBJECT_CONSTRUCTION_FAILED LASSO_XML_ERROR_SCHEMA_INVALID_FRAGMENT LASSO_XSI_HREF LASSO_XSI_PREFIX struct LassoAssertionQuery { LassoAssertionQueryPrivate* private_data } LassoAssertionQueryRequestType LassoCheckVersionMode struct LassoDefederation { } struct LassoDsKeyInfo { LassoDsKeyValue* KeyValue } struct LassoDsKeyValue { LassoDsRsaKeyValue* RSAKeyValue } struct LassoDsRsaKeyValue { char* Modulus, char* Exponent } struct LassoEcp { gchar* assertionConsumerURL, LassoEcpPrivate* private_data } LassoEncryptionMode LassoEncryptionSymKeyType struct LassoFederation { gchar* remote_providerID, LassoNode* local_nameIdentifier, LassoNode* remote_nameIdentifier, LassoFederationPrivate* private_data } LassoHttpMethod struct LassoIdentity { GHashTable* federations, gboolean is_dirty, LassoIdentityPrivate* private_data } struct LassoLecp { LassoLibAuthnRequestEnvelope* authnRequestEnvelope, LassoLibAuthnResponseEnvelope* authnResponseEnvelope, char* assertionConsumerServiceURL } struct LassoLibAssertion { char* InResponseTo } struct LassoLibAuthenticationStatement { LassoLibAuthnContext* AuthnContext, char* ReauthenticateOnOrAfter, char* SessionIndex } struct LassoLibAuthnContext { char* AuthnContextClassRef, char* AuthnContextStatementRef } struct LassoLibAuthnRequest { GList* Extension, char* ProviderID, char* AffiliationID, char* NameIDPolicy, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolProfile, char* AssertionConsumerServiceID, LassoLibRequestAuthnContext* RequestAuthnContext, char* RelayState, LassoLibScoping* Scoping, char* consent } struct LassoLibAuthnRequestEnvelope { GList* Extension, LassoLibAuthnRequest* AuthnRequest, char* ProviderID, char* ProviderName, char* AssertionConsumerServiceURL, LassoLibIDPList* IDPList, gboolean IsPassive } struct LassoLibAuthnResponse { GList* Extension, char* ProviderID, char* RelayState, char* consent } struct LassoLibAuthnResponseEnvelope { GList* Extension, LassoLibAuthnResponse* AuthnResponse, char* AssertionConsumerServiceURL } struct LassoLibFederationTerminationNotification { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* consent, char* RelayState } struct LassoLibIDPEntries { GList* IDPEntry } struct LassoLibIDPEntry { char* ProviderID, char* ProviderName, char* Loc } struct LassoLibIDPList { LassoLibIDPEntries* IDPEntries, char* GetComplete } struct LassoLibLogoutRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* SessionIndex, char* RelayState, char* consent, char* NotOnOrAfter } struct LassoLibLogoutResponse { } struct LassoLibNameIdentifierMappingRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* TargetNamespace, char* consent } struct LassoLibNameIdentifierMappingResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, LassoSamlNameIdentifier* NameIdentifier } struct LassoLibRegisterNameIdentifierRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* IDPProvidedNameIdentifier, LassoSamlNameIdentifier* SPProvidedNameIdentifier, LassoSamlNameIdentifier* OldProvidedNameIdentifier, char* RelayState } struct LassoLibRegisterNameIdentifierResponse { } struct LassoLibRequestAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextStatementRef, char* AuthnContextComparison } struct LassoLibScoping { int ProxyCount, LassoLibIDPList* IDPList } struct LassoLibStatusResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, char* RelayState } struct LassoLibSubject { LassoSamlNameIdentifier* IDPProvidedNameIdentifier } struct LassoLogin { LassoLoginProtocolProfile protocolProfile, gchar* assertionArtifact, LassoSamlAssertion* assertion, gchar* nameIDPolicy, LassoHttpMethod http_method, LassoLoginPrivate* private_data } LassoLoginProtocolProfile struct LassoLogout { LassoNode* initial_request, LassoNode* initial_response, gchar* initial_remote_providerID, gint providerID_index, LassoHttpMethod initial_http_request_method, LassoLogoutPrivate* private_data } LassoMdProtocolType LassoMessageFormat struct LassoMiscTextNode { char* content, char* name, char* ns_href, char* ns_prefix, gboolean text_child } struct LassoNameIdManagement { } struct LassoNameIdentifierMapping { gchar* targetNameIdentifier } struct LassoNameRegistration { LassoSamlNameIdentifier* oldNameIdentifier } struct LassoNode { } struct LassoProfile { LassoServer* server, LassoNode* request, LassoNode* response, LassoNode* nameIdentifier, gchar* remote_providerID, gchar* msg_url, gchar* msg_body, gchar* msg_relayState, LassoIdentity* identity, LassoSession* session, LassoHttpMethod http_request_method, gint signature_status, LassoProfilePrivate* private_data } LassoProfileSignatureHint LassoProfileSignatureVerifyHint LassoProtocolConformance struct LassoProvider { gchar* ProviderID, LassoProviderRole role, char* metadata_filename, gchar* public_key, gchar* ca_cert_chain, LassoProviderPrivate* private_data } LassoProviderRole LassoRequestType struct LassoSaml2Action { char* content, char* Namespace } struct LassoSaml2Advice { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2Assertion { LassoSaml2NameID* Issuer, LassoSaml2Subject* Subject, LassoSaml2Conditions* Conditions, LassoSaml2Advice* Advice, GList* Statement, GList* AuthnStatement, GList* AuthzDecisionStatement, GList* AttributeStatement, char* Version, char* ID, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file, gboolean encryption_activated, char* encryption_public_key_str, LassoEncryptionSymKeyType encryption_sym_key_type } LassoSaml2AssertionValidationState struct LassoSaml2Attribute { GList* AttributeValue, char* Name, char* NameFormat, char* FriendlyName } struct LassoSaml2AttributeStatement { GList* Attribute, GList* EncryptedAttribute } struct LassoSaml2AttributeValue { GList* any } struct LassoSaml2AudienceRestriction { char* Audience } struct LassoSaml2AuthnContext { char* AuthnContextClassRef, char* AuthnContextDeclRef, char* AuthenticatingAuthority } struct LassoSaml2AuthnStatement { LassoSaml2SubjectLocality* SubjectLocality, LassoSaml2AuthnContext* AuthnContext, char* AuthnInstant, char* SessionIndex, char* SessionNotOnOrAfter } struct LassoSaml2AuthzDecisionStatement { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource, char* Decision } struct LassoSaml2BaseIDAbstract { char* NameQualifier, char* SPNameQualifier } struct LassoSaml2ConditionAbstract { } struct LassoSaml2Conditions { GList* Condition, GList* AudienceRestriction, GList* OneTimeUse, GList* ProxyRestriction, char* NotBefore, char* NotOnOrAfter } struct LassoSaml2EncryptedElement { xmlNode* EncryptedData, GList* EncryptedKey, LassoNode* original_data } struct LassoSaml2Evidence { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2KeyInfoConfirmationData { } struct LassoSaml2NameID { char* content, char* Format, char* SPProvidedID, char* NameQualifier, char* SPNameQualifier } struct LassoSaml2OneTimeUse { } struct LassoSaml2ProxyRestriction { char* Audience, char* Count } struct LassoSaml2StatementAbstract { } struct LassoSaml2Subject { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmation* SubjectConfirmation } struct LassoSaml2SubjectConfirmation { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmationData* SubjectConfirmationData, char* Method } struct LassoSaml2SubjectConfirmationData { char* NotBefore, char* NotOnOrAfter, char* Recipient, char* InResponseTo, char* Address } struct LassoSaml2SubjectLocality { char* Address, char* DNSName } struct LassoSamlAdvice { GList* AssertionIDReference, LassoNode* Assertion } struct LassoSamlAssertion { LassoSamlConditions* Conditions, LassoSamlAdvice* Advice, LassoSamlSubjectStatement* SubjectStatement, LassoSamlAuthenticationStatement* AuthenticationStatement, LassoSamlAttributeStatement* AttributeStatement, int MajorVersion, int MinorVersion, char* AssertionID, char* Issuer, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlAttribute { gchar* attributeName, gchar* attributeNameSpace, GList* AttributeValue } struct LassoSamlAttributeDesignator { char* AttributeName, char* AttributeNamespace } struct LassoSamlAttributeStatement { GList* Attribute } struct LassoSamlAttributeValue { GList* any } struct LassoSamlAudienceRestrictionCondition { GList* Audience } struct LassoSamlAuthenticationStatement { LassoSamlSubjectLocality* SubjectLocality, GList* AuthorityBinding, char* AuthenticationMethod, char* AuthenticationInstant } struct LassoSamlAuthorityBinding { char* AuthorityKind, char* Location, char* Binding } struct LassoSamlConditionAbstract { } struct LassoSamlConditions { GList* Condition, GList* AudienceRestrictionCondition, char* NotBefore, char* NotOnOrAfter } struct LassoSamlNameIdentifier { char* NameQualifier, char* Format, char* content } struct LassoSamlStatementAbstract { } struct LassoSamlSubject { LassoSamlNameIdentifier* NameIdentifier, LassoSamlSubjectConfirmation* SubjectConfirmation, LassoSaml2EncryptedElement* EncryptedNameIdentifier } struct LassoSamlSubjectConfirmation { GList* ConfirmationMethod, char* SubjectConfirmationData, LassoDsKeyInfo* KeyInfo } struct LassoSamlSubjectLocality { char* IPAddress, char* DNSAddress } struct LassoSamlSubjectStatement { } struct LassoSamlSubjectStatementAbstract { LassoSamlSubject* Subject } struct LassoSamlp2ArtifactResolve { char* Artifact } struct LassoSamlp2ArtifactResponse { LassoNode* any } struct LassoSamlp2AssertionIDRequest { char* AssertionIDRef } struct LassoSamlp2AttributeQuery { GList* Attribute } struct LassoSamlp2AuthnQuery { LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, char* SessionIndex } struct LassoSamlp2AuthnRequest { LassoSaml2Subject* Subject, LassoSamlp2NameIDPolicy* NameIDPolicy, LassoSaml2Conditions* Conditions, LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, LassoSamlp2Scoping* Scoping, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolBinding, int AssertionConsumerServiceIndex, char* AssertionConsumerServiceURL, int AttributeConsumingServiceIndex, char* ProviderName, G_GNUC_DEPRECATED char } struct LassoSamlp2AuthzDecisionQuery { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource } struct LassoSamlp2Extensions { } struct LassoSamlp2IDPEntry { char* ProviderID, char* Name, char* Loc } struct LassoSamlp2IDPList { LassoSamlp2IDPEntry* IDPEntry, char* GetComplete } struct LassoSamlp2LogoutRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* SessionIndex, char* Reason, char* NotOnOrAfter, G_GNUC_DEPRECATED char } struct LassoSamlp2LogoutResponse { G_GNUC_DEPRECATED char } struct LassoSamlp2ManageNameIDRequest { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* NewID, LassoSaml2EncryptedElement* NewEncryptedID, LassoSamlp2Terminate* Terminate } struct LassoSamlp2ManageNameIDResponse { } struct LassoSamlp2NameIDMappingRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSamlp2NameIDPolicy* NameIDPolicy } struct LassoSamlp2NameIDMappingResponse { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID } struct LassoSamlp2NameIDPolicy { char* Format, char* SPNameQualifier, gboolean AllowCreate } struct LassoSamlp2RequestAbstract { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, char* ID, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2RequestedAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextDeclRef, char* Comparison } struct LassoSamlp2Response { GList* Assertion, GList* EncryptedAssertion } struct LassoSamlp2Scoping { LassoSamlp2IDPList* IDPList, char* RequesterID, char* ProxyCount } struct LassoSamlp2Status { LassoSamlp2StatusCode* StatusCode, char* StatusMessage, LassoSamlp2StatusDetail* StatusDetail } struct LassoSamlp2StatusCode { LassoSamlp2StatusCode* StatusCode, char* Value } struct LassoSamlp2StatusDetail { } struct LassoSamlp2StatusResponse { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, LassoSamlp2Status* Status, char* ID, char* InResponseTo, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2SubjectQueryAbstract { LassoSaml2Subject* Subject } struct LassoSamlp2Terminate { } struct LassoSamlpRequest { char* AssertionArtifact } struct LassoSamlpRequestAbstract { GList* RespondWith, char* RequestID, int MajorVersion, int MinorVersion, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpResponse { LassoSamlpStatus* Status, GList* Assertion } struct LassoSamlpResponseAbstract { char* ResponseID, char* InResponseTo, int MajorVersion, int MinorVersion, char* IssueInstant, char* Recipient, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpStatus { LassoSamlpStatusCode* StatusCode, char* StatusMessage } struct LassoSamlpStatusCode { LassoSamlpStatusCode* StatusCode, char* Value } struct LassoServer { GHashTable* providers, GHashTable* services, gchar* private_key, gchar* private_key_password, gchar* certificate, LassoSignatureMethod signature_method, LassoServerPrivate* private_data } struct LassoSession { GHashTable* assertions, gboolean is_dirty, LassoSessionPrivate* private_data } LassoSignatureMethod LassoSignatureType lasso_error_t lasso_assertion_query_add_attribute_request ( LassoAssertionQuery* assertion_query, char* format, char* name ) lasso_error_t lasso_assertion_query_build_request_msg ( LassoAssertionQuery* assertion_query ) lasso_error_t lasso_assertion_query_build_response_msg ( LassoAssertionQuery* assertion_query ) None lasso_assertion_query_destroy ( LassoAssertionQuery* assertion_query ) LassoAssertionQueryRequestType lasso_assertion_query_get_request_type ( LassoAssertionQuery* assertion_query ) GType lasso_assertion_query_get_type ( ) lasso_error_t lasso_assertion_query_init_request ( LassoAssertionQuery* assertion_query, char* remote_provider_id, LassoHttpMethod http_method, LassoAssertionQueryRequestType query_request_type ) LassoAssertionQuery* lasso_assertion_query_new ( LassoServer* server ) lasso_error_t lasso_assertion_query_process_request_msg ( LassoAssertionQuery* assertion_query, gchar* request_msg ) lasso_error_t lasso_assertion_query_process_response_msg ( LassoAssertionQuery* assertion_query, gchar* response_msg ) lasso_error_t lasso_assertion_query_validate_request ( LassoAssertionQuery* assertion_query ) char* lasso_build_unique_id ( unsigned int size ) int lasso_check_version ( int major, int minor, int subminor, LassoCheckVersionMode mode ) lasso_error_t lasso_defederation_build_notification_msg ( LassoDefederation* defederation ) None lasso_defederation_destroy ( LassoDefederation* defederation ) GType lasso_defederation_get_type ( ) lasso_error_t lasso_defederation_init_notification ( LassoDefederation* defederation, gchar* remote_providerID, LassoHttpMethod http_method ) LassoDefederation* lasso_defederation_new ( LassoServer* server ) lasso_error_t lasso_defederation_process_notification_msg ( LassoDefederation* defederation, gchar* notification_msg ) lasso_error_t lasso_defederation_validate_notification ( LassoDefederation* defederation ) GType lasso_ds_key_info_get_type ( ) LassoDsKeyInfo* lasso_ds_key_info_new ( ) GType lasso_ds_key_value_get_type ( ) LassoDsKeyValue* lasso_ds_key_value_new ( ) GType lasso_ds_rsa_key_value_get_type ( ) LassoDsRsaKeyValue* lasso_ds_rsa_key_value_new ( ) None lasso_ecp_destroy ( LassoEcp* ecp ) GType lasso_ecp_get_type ( ) LassoEcp* lasso_ecp_new ( LassoServer* server ) lasso_error_t lasso_ecp_process_authn_request_msg ( LassoEcp* ecp, const char* authn_request_msg ) lasso_error_t lasso_ecp_process_response_msg ( LassoEcp* ecp, const char* response_msg ) None lasso_federation_build_local_name_identifier ( LassoFederation* federation, const gchar* nameQualifier, const gchar* format, const gchar* content ) None lasso_federation_destroy ( LassoFederation* federation ) GType lasso_federation_get_type ( ) LassoFederation* lasso_federation_new ( const gchar* remote_providerID ) gboolean lasso_federation_verify_name_identifier ( LassoFederation* federation, LassoNode* name_identifier ) char* lasso_get_prefix_for_dst_service_href ( const char* href ) gchar* lasso_get_prefix_for_idwsf2_dst_service_href ( const gchar* href ) None lasso_identity_destroy ( LassoIdentity* identity ) gchar* lasso_identity_dump ( LassoIdentity* identity ) LassoFederation* lasso_identity_get_federation ( LassoIdentity* identity, const char* providerID ) GType lasso_identity_get_type ( ) LassoIdentity* lasso_identity_new ( ) LassoIdentity* lasso_identity_new_from_dump ( const gchar* dump ) lasso_error_t lasso_init ( ) lasso_error_t lasso_lecp_build_authn_request_envelope_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_request_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_response_envelope_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_response_msg ( LassoLecp* lecp ) None lasso_lecp_destroy ( LassoLecp* lecp ) GType lasso_lecp_get_type ( ) lasso_error_t lasso_lecp_init_authn_request ( LassoLecp* lecp, const char* remote_providerID ) LassoLecp* lasso_lecp_new ( LassoServer* server ) lasso_error_t lasso_lecp_process_authn_request_envelope_msg ( LassoLecp* lecp, const char* request_msg ) lasso_error_t lasso_lecp_process_authn_request_msg ( LassoLecp* lecp, const char* authn_request_msg ) lasso_error_t lasso_lecp_process_authn_response_envelope_msg ( LassoLecp* lecp, const char* response_msg ) GType lasso_lib_assertion_get_type ( ) LassoLibAssertion* lasso_lib_assertion_new ( ) LassoLibAssertion* lasso_lib_assertion_new_full ( const char* issuer, const char* requestID, const char* audience, const char* notBefore, const char* notOnOrAfter ) GType lasso_lib_authentication_statement_get_type ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new_full ( const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, LassoSamlNameIdentifier* sp_identifier, LassoSamlNameIdentifier* idp_identifier ) GType lasso_lib_authn_context_get_type ( ) LassoNode* lasso_lib_authn_context_new ( ) GType lasso_lib_authn_request_envelope_get_type ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new_full ( LassoLibAuthnRequest* authnRequest, char* providerID, char* assertionConsumerServiceURL ) GType lasso_lib_authn_request_get_type ( ) LassoLibAuthnRequest* lasso_lib_authn_request_new ( ) GType lasso_lib_authn_response_envelope_get_type ( ) LassoLibAuthnResponseEnvelope* lasso_lib_authn_response_envelope_new ( LassoLibAuthnResponse* response, char* assertionConsumerServiceURL ) GType lasso_lib_authn_response_get_type ( ) LassoNode* lasso_lib_authn_response_new ( char* providerID, LassoLibAuthnRequest* request ) GType lasso_lib_federation_termination_notification_get_type ( ) LassoNode* lasso_lib_federation_termination_notification_new ( ) LassoNode* lasso_lib_federation_termination_notification_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_idp_entries_get_type ( ) LassoNode* lasso_lib_idp_entries_new ( ) GType lasso_lib_idp_entry_get_type ( ) LassoNode* lasso_lib_idp_entry_new ( ) GType lasso_lib_idp_list_get_type ( ) LassoNode* lasso_lib_idp_list_new ( ) GType lasso_lib_logout_request_get_type ( ) LassoNode* lasso_lib_logout_request_new ( ) LassoNode* lasso_lib_logout_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_logout_response_get_type ( ) LassoNode* lasso_lib_logout_response_new ( ) LassoNode* lasso_lib_logout_response_new_full ( char* providerID, const char* statusCodeValue, LassoLibLogoutRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_request_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, const char* targetNamespace, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_response_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new_full ( char* provideRID, const char* statusCodeValue, LassoLibNameIdentifierMappingRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_request_get_type ( ) LassoNode* lasso_lib_register_name_identifier_request_new ( ) LassoNode* lasso_lib_register_name_identifier_request_new_full ( const char* providerID, LassoSamlNameIdentifier* idpNameIdentifier, LassoSamlNameIdentifier* spNameIdentifier, LassoSamlNameIdentifier* oldNameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_response_get_type ( ) LassoNode* lasso_lib_register_name_identifier_response_new ( ) LassoNode* lasso_lib_register_name_identifier_response_new_full ( const char* providerID, const char* statusCodeValue, LassoLibRegisterNameIdentifierRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_request_authn_context_get_type ( ) LassoLibRequestAuthnContext* lasso_lib_request_authn_context_new ( ) GType lasso_lib_scoping_get_type ( ) LassoLibScoping* lasso_lib_scoping_new ( ) GType lasso_lib_status_response_get_type ( ) LassoNode* lasso_lib_status_response_new ( ) GType lasso_lib_subject_get_type ( ) LassoLibSubject* lasso_lib_subject_new ( ) lasso_error_t lasso_login_accept_sso ( LassoLogin* login ) lasso_error_t lasso_login_build_artifact_msg ( LassoLogin* login, LassoHttpMethod http_method ) lasso_error_t lasso_login_build_assertion ( LassoLogin* login, const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, const char* notBefore, const char* notOnOrAfter ) lasso_error_t lasso_login_build_authn_request_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_authn_response_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_request_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_response_msg ( LassoLogin* login, gchar* remote_providerID ) None lasso_login_destroy ( LassoLogin* login ) gchar* lasso_login_dump ( LassoLogin* login ) LassoNode* lasso_login_get_assertion ( LassoLogin* login ) GType lasso_login_get_type ( ) lasso_error_t lasso_login_init_authn_request ( LassoLogin* login, const gchar* remote_providerID, LassoHttpMethod http_method ) lasso_error_t lasso_login_init_idp_initiated_authn_request ( LassoLogin* login, const gchar* remote_providerID ) lasso_error_t lasso_login_init_request ( LassoLogin* login, gchar* response_msg, LassoHttpMethod response_http_method ) gboolean lasso_login_must_ask_for_consent ( LassoLogin* login ) gboolean lasso_login_must_authenticate ( LassoLogin* login ) LassoLogin* lasso_login_new ( LassoServer* server ) LassoLogin* lasso_login_new_from_dump ( LassoServer* server, const gchar* dump ) lasso_error_t lasso_login_process_authn_request_msg ( LassoLogin* login, const char* authn_request_msg ) lasso_error_t lasso_login_process_authn_response_msg ( LassoLogin* login, gchar* authn_response_msg ) lasso_error_t lasso_login_process_paos_response_msg ( LassoLogin* login, gchar* msg ) lasso_error_t lasso_login_process_request_msg ( LassoLogin* login, gchar* request_msg ) lasso_error_t lasso_login_process_response_msg ( LassoLogin* login, gchar* response_msg ) lasso_error_t lasso_login_validate_request_msg ( LassoLogin* login, gboolean authentication_result, gboolean is_consent_obtained ) lasso_error_t lasso_logout_build_request_msg ( LassoLogout* logout ) lasso_error_t lasso_logout_build_response_msg ( LassoLogout* logout ) None lasso_logout_destroy ( LassoLogout* logout ) gchar* lasso_logout_dump ( LassoLogout* logout ) gchar* lasso_logout_get_next_providerID ( LassoLogout* logout ) GType lasso_logout_get_type ( ) lasso_error_t lasso_logout_init_request ( LassoLogout* logout, gchar* remote_providerID, LassoHttpMethod request_method ) LassoLogout* lasso_logout_new ( LassoServer* server ) LassoLogout* lasso_logout_new_from_dump ( LassoServer* server, const gchar* dump ) lasso_error_t lasso_logout_process_request_msg ( LassoLogout* logout, gchar* request_msg ) lasso_error_t lasso_logout_process_response_msg ( LassoLogout* logout, gchar* response_msg ) lasso_error_t lasso_logout_reset_providerID_index ( LassoLogout* logout ) lasso_error_t lasso_logout_validate_request ( LassoLogout* logout ) GType lasso_misc_text_node_get_type ( ) xmlNode* lasso_misc_text_node_get_xml_content ( LassoMiscTextNode* misc_text_node ) LassoNode* lasso_misc_text_node_new ( ) LassoMiscTextNode* lasso_misc_text_node_new_with_string ( const char* content ) LassoMiscTextNode* lasso_misc_text_node_new_with_xml_node ( xmlNode* xml_node ) None lasso_misc_text_node_set_xml_content ( LassoMiscTextNode* misc_text_node, xmlNode* node ) lasso_error_t lasso_name_id_management_build_request_msg ( LassoNameIdManagement* name_id_management ) lasso_error_t lasso_name_id_management_build_response_msg ( LassoNameIdManagement* name_id_management ) None lasso_name_id_management_destroy ( LassoNameIdManagement* name_id_management ) char* lasso_name_id_management_dump ( LassoNameIdManagement* name_id_management ) GType lasso_name_id_management_get_type ( ) lasso_error_t lasso_name_id_management_init_request ( LassoNameIdManagement* name_id_management, char* remote_provider_id, char* new_name_id, LassoHttpMethod http_method ) LassoNameIdManagement* lasso_name_id_management_new ( LassoServer* server ) LassoNameIdManagement* lasso_name_id_management_new_from_dump ( LassoServer* server, const char* dump ) lasso_error_t lasso_name_id_management_process_request_msg ( LassoNameIdManagement* name_id_management, gchar* request_msg ) lasso_error_t lasso_name_id_management_process_response_msg ( LassoNameIdManagement* name_id_management, gchar* response_msg ) lasso_error_t lasso_name_id_management_validate_request ( LassoNameIdManagement* name_id_management ) lasso_error_t lasso_name_identifier_mapping_build_request_msg ( LassoNameIdentifierMapping* mapping ) lasso_error_t lasso_name_identifier_mapping_build_response_msg ( LassoNameIdentifierMapping* mapping ) None lasso_name_identifier_mapping_destroy ( LassoNameIdentifierMapping* mapping ) GType lasso_name_identifier_mapping_get_type ( ) lasso_error_t lasso_name_identifier_mapping_init_request ( LassoNameIdentifierMapping* mapping, gchar* targetNamespace, gchar* remote_providerID ) LassoNameIdentifierMapping* lasso_name_identifier_mapping_new ( LassoServer* server ) lasso_error_t lasso_name_identifier_mapping_process_request_msg ( LassoNameIdentifierMapping* mapping, gchar* request_msg ) lasso_error_t lasso_name_identifier_mapping_process_response_msg ( LassoNameIdentifierMapping* mapping, gchar* response_msg ) lasso_error_t lasso_name_identifier_mapping_validate_request ( LassoNameIdentifierMapping* mapping ) lasso_error_t lasso_name_registration_build_request_msg ( LassoNameRegistration* name_registration ) lasso_error_t lasso_name_registration_build_response_msg ( LassoNameRegistration* name_registration ) None lasso_name_registration_destroy ( LassoNameRegistration* name_registration ) gchar* lasso_name_registration_dump ( LassoNameRegistration* name_registration ) GType lasso_name_registration_get_type ( ) lasso_error_t lasso_name_registration_init_request ( LassoNameRegistration* name_registration, char* remote_providerID, LassoHttpMethod http_method ) LassoNameRegistration* lasso_name_registration_new ( LassoServer* server ) LassoNameRegistration* lasso_name_registration_new_from_dump ( LassoServer* server, const char* dump ) lasso_error_t lasso_name_registration_process_request_msg ( LassoNameRegistration* name_registration, gchar* request_msg ) lasso_error_t lasso_name_registration_process_response_msg ( LassoNameRegistration* name_registration, gchar* response_msg ) lasso_error_t lasso_name_registration_validate_request ( LassoNameRegistration* name_registration ) None lasso_node_cleanup_original_xmlnodes ( LassoNode* node ) char* lasso_node_debug ( LassoNode* node, int level ) None lasso_node_destroy ( LassoNode* node ) char* lasso_node_dump ( LassoNode* node ) char* lasso_node_export_to_base64 ( LassoNode* node ) char* lasso_node_export_to_ecp_soap_response ( LassoNode* node, const char* assertionConsumerURL ) char* lasso_node_export_to_paos_request ( LassoNode* node, const char* issuer, const char* responseConsumerURL, const char* relay_state ) char* lasso_node_export_to_query ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file ) char* lasso_node_export_to_query_with_password ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file, const char* private_key_file_password ) char* lasso_node_export_to_soap ( LassoNode* node ) gchar* lasso_node_export_to_xml ( LassoNode* node ) const char* lasso_node_get_name ( LassoNode* node ) const char* lasso_node_get_namespace ( LassoNode* node ) xmlNode* lasso_node_get_original_xmlnode ( LassoNode* node ) GType lasso_node_get_type ( ) xmlNode* lasso_node_get_xmlNode ( LassoNode* node, gboolean lasso_dump ) LassoMessageFormat lasso_node_init_from_message ( LassoNode* node, const char* message ) gboolean lasso_node_init_from_query ( LassoNode* node, const char* query ) lasso_error_t lasso_node_init_from_xml ( LassoNode* node, xmlNode* xmlnode ) LassoNode* lasso_node_new ( ) LassoNode* lasso_node_new_from_dump ( const char* dump ) LassoNode* lasso_node_new_from_soap ( const char* soap ) LassoNode* lasso_node_new_from_xmlNode ( xmlNode* node ) None lasso_node_set_custom_namespace ( LassoNode* node, const char* prefix, const char* href ) None lasso_node_set_custom_nodename ( LassoNode* node, const char* nodename ) None lasso_node_set_original_xmlnode ( LassoNode* node, xmlNode* xmlnode ) char* lasso_profile_get_artifact ( LassoProfile* profile ) char* lasso_profile_get_artifact_message ( LassoProfile* profile ) LassoIdentity* lasso_profile_get_identity ( LassoProfile* profile ) LassoNode* lasso_profile_get_nameIdentifier ( LassoProfile* profile ) LassoRequestType lasso_profile_get_request_type_from_soap_msg ( const gchar* soap ) LassoSession* lasso_profile_get_session ( LassoProfile* profile ) LassoProfileSignatureHint lasso_profile_get_signature_hint ( LassoProfile* profile ) lasso_error_t lasso_profile_get_signature_status ( LassoProfile* profile ) LassoProfileSignatureVerifyHint lasso_profile_get_signature_verify_hint ( LassoProfile* profile ) GType lasso_profile_get_type ( ) gboolean lasso_profile_is_identity_dirty ( LassoProfile* profile ) gboolean lasso_profile_is_liberty_query ( const gchar* query ) gboolean lasso_profile_is_saml_query ( const gchar* query ) gboolean lasso_profile_is_session_dirty ( LassoProfile* profile ) None lasso_profile_set_artifact_message ( LassoProfile* profile, const char* message ) lasso_error_t lasso_profile_set_identity_from_dump ( LassoProfile* profile, const gchar* dump ) lasso_error_t lasso_profile_set_session_from_dump ( LassoProfile* profile, const gchar* dump ) None lasso_profile_set_signature_hint ( LassoProfile* profile, LassoProfileSignatureHint signature_hint ) None lasso_profile_set_signature_verify_hint ( LassoProfile* profile, LassoProfileSignatureVerifyHint signature_verify_hint ) lasso_error_t lasso_profile_set_soap_fault_response ( LassoProfile* profile, const char* faultcode, const char* faultstring, GList* details ) LassoProviderRole lasso_profile_sso_role_with ( LassoProfile* profile, const char* remote_provider_id ) gboolean lasso_provider_accept_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type, LassoHttpMethod http_method, gboolean initiate_profile ) gchar* lasso_provider_get_assertion_consumer_service_url ( LassoProvider* provider, const char* service_id ) gchar* lasso_provider_get_base64_succinct_id ( const LassoProvider* provider ) char* lasso_provider_get_cache_duration ( LassoProvider* provider ) gchar* lasso_provider_get_default_name_id_format ( LassoProvider* provider ) LassoEncryptionMode lasso_provider_get_encryption_mode ( LassoProvider* provider ) LassoHttpMethod lasso_provider_get_first_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type ) GList* lasso_provider_get_idp_supported_attributes ( LassoProvider* provider ) GList* lasso_provider_get_metadata_keys_for_role ( LassoProvider* provider, LassoProviderRole role ) GList* lasso_provider_get_metadata_list ( LassoProvider* provider, const char* name ) GList* lasso_provider_get_metadata_list_for_role ( const LassoProvider* provider, LassoProviderRole role, const char* name ) gchar* lasso_provider_get_metadata_one ( LassoProvider* provider, const char* name ) char* lasso_provider_get_metadata_one_for_role ( LassoProvider* provider, LassoProviderRole role, const char* name ) xmlNode* lasso_provider_get_organization ( const LassoProvider* provider ) LassoProtocolConformance lasso_provider_get_protocol_conformance ( const LassoProvider* provider ) LassoProviderRole lasso_provider_get_roles ( LassoProvider* provider ) const char* lasso_provider_get_sp_name_qualifier ( LassoProvider* provider ) GType lasso_provider_get_type ( ) char* lasso_provider_get_valid_until ( LassoProvider* provider ) gboolean lasso_provider_has_protocol_profile ( LassoProvider* provider, LassoMdProtocolType protocol_type, const char* protocol_profile ) gboolean lasso_provider_match_conformance ( LassoProvider* provider, LassoProvider* another_provider ) LassoProvider* lasso_provider_new ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_buffer ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_dump ( const gchar* dump ) LassoSaml2EncryptedElement* lasso_provider_saml2_node_encrypt ( const LassoProvider* provider, LassoNode* lasso_node ) None lasso_provider_set_encryption_mode ( LassoProvider* provider, LassoEncryptionMode encryption_mode ) None lasso_provider_set_encryption_sym_key_type ( LassoProvider* provider, LassoEncryptionSymKeyType encryption_sym_key_type ) lasso_error_t lasso_provider_verify_single_node_signature ( LassoProvider* provider, LassoNode* node, const char* id_attr_name ) None lasso_register_dst_service ( const char* prefix, const char* href ) None lasso_register_idwsf2_dst_service ( const gchar* prefix, const gchar* href ) GType lasso_saml2_action_get_type ( ) LassoNode* lasso_saml2_action_new ( ) LassoNode* lasso_saml2_action_new_with_string ( char* content ) GType lasso_saml2_advice_get_type ( ) LassoNode* lasso_saml2_advice_new ( ) lasso_error_t lasso_saml2_assertion_add_attribute_with_node ( LassoSaml2Assertion* assertion, const char* name, const char* nameformat, LassoNode* content ) None lasso_saml2_assertion_add_audience_restriction ( LassoSaml2Assertion* saml2_assertion, const char* providerID ) None lasso_saml2_assertion_add_proxy_limit ( LassoSaml2Assertion* saml2_assertion, int proxy_count, GList* proxy_audiences ) LassoSaml2AssertionValidationState lasso_saml2_assertion_allows_proxying ( LassoSaml2Assertion* saml2_assertion ) LassoSaml2AssertionValidationState lasso_saml2_assertion_allows_proxying_to ( LassoSaml2Assertion* saml2_assertion, const char* audience ) lasso_error_t lasso_saml2_assertion_decrypt_subject ( LassoSaml2Assertion* assertion, LassoServer* server ) const char* lasso_saml2_assertion_get_in_response_to ( LassoSaml2Assertion* assertion ) LassoProvider* lasso_saml2_assertion_get_issuer_provider ( const LassoSaml2Assertion* saml2_assertion, const LassoServer* server ) LassoSaml2SubjectConfirmationData* lasso_saml2_assertion_get_subject_confirmation_data ( LassoSaml2Assertion* saml2_assertion, gboolean create ) GType lasso_saml2_assertion_get_type ( ) gboolean lasso_saml2_assertion_has_audience_restriction ( LassoSaml2Assertion* saml2_assertion ) gboolean lasso_saml2_assertion_has_one_time_use ( LassoSaml2Assertion* saml2_assertion ) gboolean lasso_saml2_assertion_is_audience_restricted ( LassoSaml2Assertion* saml2_assertion, char* providerID ) LassoNode* lasso_saml2_assertion_new ( ) None lasso_saml2_assertion_set_basic_conditions ( LassoSaml2Assertion* saml2_assertion, time_t tolerance, time_t length, gboolean one_time_use ) None lasso_saml2_assertion_set_one_time_use ( LassoSaml2Assertion* saml2_assertion, gboolean one_time_use ) None lasso_saml2_assertion_set_subject_confirmation_data ( LassoSaml2Assertion* saml2_assertion, time_t tolerance, time_t length, const char* Recipient, const char* InResponseTo, const char* Address ) None lasso_saml2_assertion_set_subject_confirmation_name_id ( LassoSaml2Assertion* saml2_assertion, LassoNode* node ) None lasso_saml2_assertion_set_subject_name_id ( LassoSaml2Assertion* saml2_assertion, LassoNode* node ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_audience ( LassoSaml2Assertion* saml2_assertion, const gchar* audience ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_conditions ( LassoSaml2Assertion* saml2_assertion, const char* relaying_party_providerID ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_time_checks ( LassoSaml2Assertion* saml2_assertion, unsigned int tolerance, time_t now ) GType lasso_saml2_attribute_get_type ( ) LassoNode* lasso_saml2_attribute_new ( ) GType lasso_saml2_attribute_statement_get_type ( ) LassoNode* lasso_saml2_attribute_statement_new ( ) GType lasso_saml2_attribute_value_get_type ( ) LassoSaml2AttributeValue* lasso_saml2_attribute_value_new ( ) GType lasso_saml2_audience_restriction_get_type ( ) LassoNode* lasso_saml2_audience_restriction_new ( ) GType lasso_saml2_authn_context_get_type ( ) LassoNode* lasso_saml2_authn_context_new ( ) GType lasso_saml2_authn_statement_get_type ( ) LassoNode* lasso_saml2_authn_statement_new ( ) GType lasso_saml2_authz_decision_statement_get_type ( ) LassoNode* lasso_saml2_authz_decision_statement_new ( ) GType lasso_saml2_base_idabstract_get_type ( ) LassoNode* lasso_saml2_base_idabstract_new ( ) GType lasso_saml2_condition_abstract_get_type ( ) LassoNode* lasso_saml2_condition_abstract_new ( ) GType lasso_saml2_conditions_get_type ( ) LassoNode* lasso_saml2_conditions_new ( ) LassoSaml2EncryptedElement* lasso_saml2_encrypted_element_build_encrypted_persistent_name_id ( const char* id, const char* idpID, const LassoProvider* provider ) GType lasso_saml2_encrypted_element_get_type ( ) LassoNode* lasso_saml2_encrypted_element_new ( ) lasso_error_t lasso_saml2_encrypted_element_server_decrypt ( LassoSaml2EncryptedElement* encrypted_element, LassoServer* server, LassoNode** decrypted_node ) GType lasso_saml2_evidence_get_type ( ) LassoNode* lasso_saml2_evidence_new ( ) GType lasso_saml2_key_info_confirmation_data_get_type ( ) LassoNode* lasso_saml2_key_info_confirmation_data_new ( ) LassoSaml2NameID* lasso_saml2_name_id_build_persistent ( const char* id, const char* idpID, const char* providerID ) gboolean lasso_saml2_name_id_equals ( LassoSaml2NameID* name_id, LassoSaml2NameID* other_name_id ) GType lasso_saml2_name_id_get_type ( ) LassoNode* lasso_saml2_name_id_new ( ) LassoSaml2NameID* lasso_saml2_name_id_new_with_persistent_format ( const char* id, const char* idpID, const char* providerID ) LassoNode* lasso_saml2_name_id_new_with_string ( char* content ) GType lasso_saml2_one_time_use_get_type ( ) LassoNode* lasso_saml2_one_time_use_new ( ) GType lasso_saml2_proxy_restriction_get_type ( ) LassoNode* lasso_saml2_proxy_restriction_new ( ) GType lasso_saml2_statement_abstract_get_type ( ) LassoNode* lasso_saml2_statement_abstract_new ( ) GType lasso_saml2_subject_confirmation_data_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_data_new ( ) GType lasso_saml2_subject_confirmation_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_new ( ) GType lasso_saml2_subject_get_type ( ) GType lasso_saml2_subject_locality_get_type ( ) LassoNode* lasso_saml2_subject_locality_new ( ) LassoNode* lasso_saml2_subject_new ( ) GType lasso_saml_advice_get_type ( ) LassoNode* lasso_saml_advice_new ( ) GType lasso_saml_assertion_get_type ( ) LassoSamlAssertion* lasso_saml_assertion_new ( ) GType lasso_saml_attribute_designator_get_type ( ) LassoNode* lasso_saml_attribute_designator_new ( ) GType lasso_saml_attribute_get_type ( ) LassoSamlAttribute* lasso_saml_attribute_new ( ) GType lasso_saml_attribute_statement_get_type ( ) LassoSamlAttributeStatement* lasso_saml_attribute_statement_new ( ) GType lasso_saml_attribute_value_get_type ( ) LassoSamlAttributeValue* lasso_saml_attribute_value_new ( ) GType lasso_saml_audience_restriction_condition_get_type ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new_full ( const char* audience ) GType lasso_saml_authentication_statement_get_type ( ) LassoNode* lasso_saml_authentication_statement_new ( ) GType lasso_saml_authority_binding_get_type ( ) LassoNode* lasso_saml_authority_binding_new ( ) GType lasso_saml_condition_abstract_get_type ( ) GType lasso_saml_conditions_get_type ( ) LassoSamlConditions* lasso_saml_conditions_new ( ) GType lasso_saml_name_identifier_get_type ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new_from_xmlNode ( xmlNode* xmlnode ) GType lasso_saml_statement_abstract_get_type ( ) GType lasso_saml_subject_confirmation_get_type ( ) LassoSamlSubjectConfirmation* lasso_saml_subject_confirmation_new ( ) GType lasso_saml_subject_get_type ( ) GType lasso_saml_subject_locality_get_type ( ) LassoNode* lasso_saml_subject_locality_new ( ) LassoNode* lasso_saml_subject_new ( ) GType lasso_saml_subject_statement_abstract_get_type ( ) GType lasso_saml_subject_statement_get_type ( ) LassoNode* lasso_saml_subject_statement_new ( ) GType lasso_samlp2_artifact_resolve_get_type ( ) LassoNode* lasso_samlp2_artifact_resolve_new ( ) GType lasso_samlp2_artifact_response_get_type ( ) LassoNode* lasso_samlp2_artifact_response_new ( ) GType lasso_samlp2_assertion_id_request_get_type ( ) LassoNode* lasso_samlp2_assertion_id_request_new ( ) GType lasso_samlp2_attribute_query_get_type ( ) LassoNode* lasso_samlp2_attribute_query_new ( ) GType lasso_samlp2_authn_query_get_type ( ) LassoNode* lasso_samlp2_authn_query_new ( ) GType lasso_samlp2_authn_request_get_type ( ) LassoNode* lasso_samlp2_authn_request_new ( ) GType lasso_samlp2_authz_decision_query_get_type ( ) LassoNode* lasso_samlp2_authz_decision_query_new ( ) GType lasso_samlp2_extensions_get_type ( ) LassoNode* lasso_samlp2_extensions_new ( ) GType lasso_samlp2_idp_entry_get_type ( ) LassoNode* lasso_samlp2_idp_entry_new ( ) GType lasso_samlp2_idp_list_get_type ( ) LassoNode* lasso_samlp2_idp_list_new ( ) GList* lasso_samlp2_logout_request_get_session_indexes ( LassoSamlp2LogoutRequest* logout_request ) GType lasso_samlp2_logout_request_get_type ( ) LassoNode* lasso_samlp2_logout_request_new ( ) None lasso_samlp2_logout_request_set_session_indexes ( LassoSamlp2LogoutRequest* logout_request, GList* session_index ) GType lasso_samlp2_logout_response_get_type ( ) LassoNode* lasso_samlp2_logout_response_new ( ) GType lasso_samlp2_manage_name_id_request_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_request_new ( ) GType lasso_samlp2_manage_name_id_response_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_response_new ( ) GType lasso_samlp2_name_id_mapping_request_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_request_new ( ) GType lasso_samlp2_name_id_mapping_response_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_response_new ( ) GType lasso_samlp2_name_id_policy_get_type ( ) LassoNode* lasso_samlp2_name_id_policy_new ( ) GType lasso_samlp2_request_abstract_get_type ( ) LassoNode* lasso_samlp2_request_abstract_new ( ) GType lasso_samlp2_requested_authn_context_get_type ( ) LassoNode* lasso_samlp2_requested_authn_context_new ( ) GType lasso_samlp2_response_get_type ( ) LassoNode* lasso_samlp2_response_new ( ) GType lasso_samlp2_scoping_get_type ( ) LassoNode* lasso_samlp2_scoping_new ( ) GType lasso_samlp2_status_code_get_type ( ) LassoNode* lasso_samlp2_status_code_new ( ) GType lasso_samlp2_status_detail_get_type ( ) LassoNode* lasso_samlp2_status_detail_new ( ) GType lasso_samlp2_status_get_type ( ) LassoNode* lasso_samlp2_status_new ( ) GType lasso_samlp2_status_response_get_type ( ) LassoNode* lasso_samlp2_status_response_new ( ) GType lasso_samlp2_subject_query_abstract_get_type ( ) LassoNode* lasso_samlp2_subject_query_abstract_new ( ) GType lasso_samlp2_terminate_get_type ( ) LassoNode* lasso_samlp2_terminate_new ( ) GType lasso_samlp_request_abstract_get_type ( ) GType lasso_samlp_request_get_type ( ) LassoNode* lasso_samlp_request_new ( ) None lasso_samlp_response_abstract_fill ( LassoSamlpResponseAbstract* response, const char* InResponseTo, const char* Recipient ) GType lasso_samlp_response_abstract_get_type ( ) GType lasso_samlp_response_get_type ( ) LassoNode* lasso_samlp_response_new ( ) GType lasso_samlp_status_code_get_type ( ) LassoSamlpStatusCode* lasso_samlp_status_code_new ( ) GType lasso_samlp_status_get_type ( ) LassoSamlpStatus* lasso_samlp_status_new ( ) lasso_error_t lasso_server_add_provider ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) lasso_error_t lasso_server_add_provider_from_buffer ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) None lasso_server_destroy ( LassoServer* server ) gchar* lasso_server_dump ( LassoServer* server ) LassoProvider* lasso_server_get_provider ( const LassoServer* server, const gchar* providerID ) GType lasso_server_get_type ( ) lasso_error_t lasso_server_load_affiliation ( LassoServer* server, const gchar* filename ) LassoServer* lasso_server_new ( const gchar* metadata, const gchar* private_key, const gchar* private_key_password, const gchar* certificate ) LassoServer* lasso_server_new_from_buffers ( const gchar* metadata, const gchar* private_key_content, const gchar* private_key_password, const gchar* certificate_content ) LassoServer* lasso_server_new_from_dump ( const gchar* dump ) lasso_error_t lasso_server_saml2_assertion_setup_signature ( LassoServer* server, LassoSaml2Assertion* saml2_assertion ) lasso_error_t lasso_server_set_encryption_private_key ( LassoServer* server, const gchar* filename_or_buffer ) lasso_error_t lasso_server_set_encryption_private_key_with_password ( LassoServer* server, const gchar* filename_or_buffer, const gchar* password ) lasso_error_t lasso_session_add_assertion ( LassoSession* session, const char* providerID, LassoNode* assertion ) None lasso_session_destroy ( LassoSession* session ) gchar* lasso_session_dump ( LassoSession* session ) LassoNode* lasso_session_get_assertion ( LassoSession* session, const gchar* providerID ) GList* lasso_session_get_assertions ( LassoSession* session, const char* provider_id ) gchar* lasso_session_get_provider_index ( LassoSession* session, gint index ) GType lasso_session_get_type ( ) gboolean lasso_session_is_empty ( LassoSession* session ) LassoSession* lasso_session_new ( ) LassoSession* lasso_session_new_from_dump ( const gchar* dump ) lasso_error_t lasso_session_remove_assertion ( LassoSession* session, const gchar* providerID ) None lasso_set_flag ( char* flag ) lasso_error_t lasso_shutdown ( ) const char* lasso_strerror ( int error_code ) lasso-2.9.0/abi/PaxHeaders/abi-2.3.30000644000000000000000000000013013766621500013577 xustar0029 mtime=1608196928.71889494 30 atime=1754992978.149544894 29 ctime=1754993575.20113351 lasso-2.9.0/abi/abi-2.3.30000644000175000017500000021067313766621500015622 0ustar00bdauvergnebdauvergneBACKWARD_COMP_H LASSO_ASSERTION_QUERY_ERROR_ATTRIBUTE_REQUEST_ALREADY_EXIST LASSO_ASSERTION_QUERY_ERROR_NOT_AN_ATTRIBUTE_QUERY LASSO_ASSERTION_QUERY_REQUEST_TYPE_ASSERTION_ID LASSO_ASSERTION_QUERY_REQUEST_TYPE_ATTRIBUTE LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHN LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHZ_DECISION LASSO_ASSERTION_QUERY_REQUEST_TYPE_LAST LASSO_ASSERTION_QUERY_REQUEST_TYPE_UNSET LASSO_CERTIFICATE_ATTRIBUTE LASSO_CHECK_VERSIONABI_COMPATIBLE LASSO_CHECK_VERSION_EXACT LASSO_CHECK_VERSION_NUMERIC LASSO_DATA_SERVICE_ERROR_CANNOT_ADD_ITEM LASSO_DATA_SERVICE_ERROR_UNREGISTERED_DST LASSO_DEFEDERATION_ERROR_MISSING_NAME_IDENTIFIER LASSO_DISCOVERY_ERROR_FAILED_TO_BUILD_ENDPOINT_REFERENCE LASSO_DISCOVERY_ERROR_MISSING_REQUESTED_SERVICE LASSO_DISCOVERY_ERROR_SVC_METADATA_ASSOCIATION_ADD_FAILED LASSO_DISCOVERY_ERROR_SVC_METADATA_REGISTER_FAILED LASSO_DST_ERROR_EMPTY_REQUEST LASSO_DST_ERROR_MALFORMED_QUERY LASSO_DST_ERROR_MISSING_SERVICE_DATA LASSO_DST_ERROR_MODIFY_FAILED LASSO_DST_ERROR_MODIFY_PARTIALLY_FAILED LASSO_DST_ERROR_NEW_DATA_MISSING LASSO_DST_ERROR_NO_DATA LASSO_DST_ERROR_QUERY_FAILED LASSO_DST_ERROR_QUERY_NOT_FOUND LASSO_DST_ERROR_QUERY_PARTIALLY_FAILED LASSO_DS_ERROR_CA_CERT_CHAIN_LOAD_FAILED LASSO_DS_ERROR_CERTIFICATE_LOAD_FAILED LASSO_DS_ERROR_CONTEXT_CREATION_FAILED LASSO_DS_ERROR_DECRYPTION_FAILED LASSO_DS_ERROR_DECRYPTION_FAILED_MISSING_PRIVATE_KEY LASSO_DS_ERROR_DIGEST_COMPUTE_FAILED LASSO_DS_ERROR_ENCRYPTION_FAILED LASSO_DS_ERROR_INVALID_REFERENCE_FOR_SAML LASSO_DS_ERROR_INVALID_SIGALG LASSO_DS_ERROR_INVALID_SIGNATURE LASSO_DS_ERROR_KEYS_MNGR_CREATION_FAILED LASSO_DS_ERROR_KEYS_MNGR_INIT_FAILED LASSO_DS_ERROR_PRIVATE_KEY_LOAD_FAILED LASSO_DS_ERROR_PUBLIC_KEY_LOAD_FAILED LASSO_DS_ERROR_SIGNATURE_FAILED LASSO_DS_ERROR_SIGNATURE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TEMPLATE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TMPL_CREATION_FAILED LASSO_DS_ERROR_SIGNATURE_VERIFICATION_FAILED LASSO_DS_ERROR_TOO_MUCH_REFERENCES LASSO_DS_HREF LASSO_DS_PREFIX LASSO_DURATION_DAY LASSO_DURATION_HOUR LASSO_DURATION_MINUTE LASSO_DURATION_WEEK LASSO_ECP_HREF LASSO_ECP_PREFIX LASSO_ENCRYPTION_MODE_ASSERTION LASSO_ENCRYPTION_MODE_NAMEID LASSO_ENCRYPTION_MODE_NONE LASSO_ENCRYPTION_SYM_KEY_TYPE_3DES LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_128 LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_256 LASSO_ENCRYPTION_SYM_KEY_TYPE_DEFAULT LASSO_ERROR_CAST_FAILED LASSO_ERROR_OUT_OF_MEMORY LASSO_ERROR_UNDEFINED LASSO_ERROR_UNIMPLEMENTED LASSO_HTTP_METHOD_ANY LASSO_HTTP_METHOD_ARTIFACT_GET LASSO_HTTP_METHOD_ARTIFACT_POST LASSO_HTTP_METHOD_GET LASSO_HTTP_METHOD_IDP_INITIATED LASSO_HTTP_METHOD_LAST LASSO_HTTP_METHOD_NONE LASSO_HTTP_METHOD_PAOS LASSO_HTTP_METHOD_POST LASSO_HTTP_METHOD_REDIRECT LASSO_HTTP_METHOD_SOAP LASSO_IDWSF2_DISCOVERY_ERROR_DUPLICATE LASSO_IDWSF2_DISCOVERY_ERROR_FAILED LASSO_IDWSF2_DISCOVERY_ERROR_FORBIDDEN LASSO_IDWSF2_DISCOVERY_ERROR_LOGICAL_DUPLICATE LASSO_IDWSF2_DISCOVERY_ERROR_NOT_FOUND LASSO_IDWSF2_DISCOVERY_ERROR_NO_RESULTS LASSO_IDWSF2_DST_ERROR_DUPLICATE_ITEM LASSO_IDWSF2_DST_ERROR_ITEM_NOT_FOUND LASSO_IDWSF2_DST_ERROR_PARTIAL_FAILURE LASSO_IDWSF2_DST_ERROR_UNKNOWN_STATUS_CODE LASSO_LASSO_HREF LASSO_LASSO_PREFIX LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD_PROTECTED_TRANSPORT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PREVIOUS_SESSION LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SOFTWARE_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_TIME_SYNC_TOKEN LASSO_LIB_AUTHN_CONTEXT_COMPARISON_BETTER LASSO_LIB_AUTHN_CONTEXT_COMPARISON_EXACT LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MAXIMUM LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MINIMUM LASSO_LIB_CONSENT_INAPPLICABLE LASSO_LIB_CONSENT_OBTAINED LASSO_LIB_CONSENT_OBTAINED_CURRENT_EXPLICIT LASSO_LIB_CONSENT_OBTAINED_CURRENT_IMPLICIT LASSO_LIB_CONSENT_OBTAINED_PRIOR LASSO_LIB_CONSENT_UNAVAILABLE LASSO_LIB_HREF LASSO_LIB_MAJOR_VERSION_N LASSO_LIB_MINOR_VERSION_N LASSO_LIB_NAMEID_POLICY_TYPE_ANY LASSO_LIB_NAMEID_POLICY_TYPE_FEDERATED LASSO_LIB_NAMEID_POLICY_TYPE_NONE LASSO_LIB_NAMEID_POLICY_TYPE_ONE_TIME LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENTITYID LASSO_LIB_NAME_IDENTIFIER_FORMAT_FEDERATED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ONE_TIME LASSO_LIB_PREFIX LASSO_LIB_PROTOCOL_PROFILE_BRWS_ART LASSO_LIB_PROTOCOL_PROFILE_BRWS_LECP LASSO_LIB_PROTOCOL_PROFILE_BRWS_POST LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_NIM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_SOAP LASSO_LIB_STATUS_CODE_FEDERATION_DOES_NOT_EXIST LASSO_LIB_STATUS_CODE_INVALID_ASSERTION_CONSUMER_SERVICE_INDEX LASSO_LIB_STATUS_CODE_INVALID_SIGNATURE LASSO_LIB_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_LIB_STATUS_CODE_NO_AVAILABLEIDP LASSO_LIB_STATUS_CODE_NO_PASSIVE LASSO_LIB_STATUS_CODE_NO_SUPPORTEDIDP LASSO_LIB_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_LIB_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_LIB_STATUS_CODE_UNSIGNED_AUTHN_REQUEST LASSO_LIB_STATUS_CODE_UNSUPPORTED_PROFILE LASSO_LOGIN_ERROR_ASSERTION_DOES_NOT_MATCH_REQUEST_ID LASSO_LOGIN_ERROR_ASSERTION_REPLAY LASSO_LOGIN_ERROR_CONSENT_NOT_OBTAINED LASSO_LOGIN_ERROR_FEDERATION_NOT_FOUND LASSO_LOGIN_ERROR_INVALID_ASSERTION_SIGNATURE LASSO_LOGIN_ERROR_INVALID_NAMEIDPOLICY LASSO_LOGIN_ERROR_INVALID_SIGNATURE LASSO_LOGIN_ERROR_NO_DEFAULT_ENDPOINT LASSO_LOGIN_ERROR_REQUEST_DENIED LASSO_LOGIN_ERROR_STATUS_NOT_SUCCESS LASSO_LOGIN_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGIN_ERROR_UNSIGNED_AUTHN_REQUEST LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_ART LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_LECP LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_POST LASSO_LOGIN_PROTOCOL_PROFILE_REDIRECT LASSO_LOGOUT_ERROR_FEDERATION_NOT_FOUND LASSO_LOGOUT_ERROR_REQUEST_DENIED LASSO_LOGOUT_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGOUT_ERROR_UNSUPPORTED_PROFILE LASSO_MD_PROTOCOL_TYPE_ARTIFACT_RESOLUTION LASSO_MD_PROTOCOL_TYPE_ASSERTION_ID_REQUEST LASSO_MD_PROTOCOL_TYPE_ATTRIBUTE LASSO_MD_PROTOCOL_TYPE_AUTHN_QUERY LASSO_MD_PROTOCOL_TYPE_AUTHZ LASSO_MD_PROTOCOL_TYPE_FEDERATION_TERMINATION LASSO_MD_PROTOCOL_TYPE_LAST LASSO_MD_PROTOCOL_TYPE_MANAGE_NAME_ID LASSO_MD_PROTOCOL_TYPE_NAME_IDENTIFIER_MAPPING LASSO_MD_PROTOCOL_TYPE_REGISTER_NAME_IDENTIFIER LASSO_MD_PROTOCOL_TYPE_SINGLE_LOGOUT LASSO_MD_PROTOCOL_TYPE_SINGLE_SIGN_ON LASSO_MESSAGE_FORMAT_BASE64 LASSO_MESSAGE_FORMAT_ERROR LASSO_MESSAGE_FORMAT_QUERY LASSO_MESSAGE_FORMAT_SOAP LASSO_MESSAGE_FORMAT_UNKNOWN LASSO_MESSAGE_FORMAT_XML LASSO_MESSAGE_FORMAT_XSCHEMA_ERROR LASSO_METADATA_HREF LASSO_METADATA_PREFIX LASSO_NAME_IDENTIFIER_MAPPING_ERROR_FORBIDDEN_CALL_ON_THIS_SIDE LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_IDENTIFIER LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_NAMESPACE LASSO_PAOS_HREF LASSO_PAOS_PREFIX LASSO_PARAM_ERROR_BAD_TYPE_OR_NULL_OBJ LASSO_PARAM_ERROR_CHECK_FAILED LASSO_PARAM_ERROR_INVALID_VALUE LASSO_PARAM_ERROR_NON_INITIALIZED_OBJECT LASSO_PRIVATE_KEY_ATTRIBUTE LASSO_PRIVATE_KEY_PASSWORD_ATTRIBUTE LASSO_PRIVATE_STATUS_CODE_FAILED_TO_RESTORE_ARTIFACT LASSO_PROFILE_ERROR_BAD_IDENTITY_DUMP LASSO_PROFILE_ERROR_BAD_SESSION_DUMP LASSO_PROFILE_ERROR_BUILDING_MESSAGE_FAILED LASSO_PROFILE_ERROR_BUILDING_QUERY_FAILED LASSO_PROFILE_ERROR_BUILDING_REQUEST_FAILED LASSO_PROFILE_ERROR_BUILDING_RESPONSE_FAILED LASSO_PROFILE_ERROR_CANNOT_FIND_A_PROVIDER LASSO_PROFILE_ERROR_CANNOT_VERIFY_SIGNATURE LASSO_PROFILE_ERROR_FEDERATION_NOT_FOUND LASSO_PROFILE_ERROR_IDENTITY_NOT_FOUND LASSO_PROFILE_ERROR_INVALID_ARTIFACT LASSO_PROFILE_ERROR_INVALID_ASSERTION LASSO_PROFILE_ERROR_INVALID_ASSERTION_CONDITIONS LASSO_PROFILE_ERROR_INVALID_HTTP_METHOD LASSO_PROFILE_ERROR_INVALID_ISSUER LASSO_PROFILE_ERROR_INVALID_MSG LASSO_PROFILE_ERROR_INVALID_POST_MSG LASSO_PROFILE_ERROR_INVALID_PROTOCOLPROFILE LASSO_PROFILE_ERROR_INVALID_QUERY LASSO_PROFILE_ERROR_INVALID_REQUEST LASSO_PROFILE_ERROR_INVALID_RESPONSE LASSO_PROFILE_ERROR_INVALID_SOAP_MSG LASSO_PROFILE_ERROR_ISSUER_IS_NOT_AN_IDP LASSO_PROFILE_ERROR_MISSING_ARTIFACT LASSO_PROFILE_ERROR_MISSING_ASSERTION LASSO_PROFILE_ERROR_MISSING_ENCRYPTION_PRIVATE_KEY LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE_ADDRESS LASSO_PROFILE_ERROR_MISSING_ISSUER LASSO_PROFILE_ERROR_MISSING_NAME_IDENTIFIER LASSO_PROFILE_ERROR_MISSING_REMOTE_PROVIDERID LASSO_PROFILE_ERROR_MISSING_REQUEST LASSO_PROFILE_ERROR_MISSING_RESOURCE_OFFERING LASSO_PROFILE_ERROR_MISSING_RESPONSE LASSO_PROFILE_ERROR_MISSING_SERVER LASSO_PROFILE_ERROR_MISSING_SERVICE_DESCRIPTION LASSO_PROFILE_ERROR_MISSING_SERVICE_INSTANCE LASSO_PROFILE_ERROR_MISSING_SERVICE_TYPE LASSO_PROFILE_ERROR_MISSING_STATUS_CODE LASSO_PROFILE_ERROR_MISSING_SUBJECT LASSO_PROFILE_ERROR_NAME_IDENTIFIER_NOT_FOUND LASSO_PROFILE_ERROR_RESPONSE_DOES_NOT_MATCH_REQUEST LASSO_PROFILE_ERROR_SESSION_NOT_FOUND LASSO_PROFILE_ERROR_STATUS_NOT_SUCCESS LASSO_PROFILE_ERROR_UNKNOWN_ISSUER LASSO_PROFILE_ERROR_UNKNOWN_PROFILE_URL LASSO_PROFILE_ERROR_UNKNOWN_PROVIDER LASSO_PROFILE_ERROR_UNSUPPORTED_BINDING LASSO_PROFILE_ERROR_UNSUPPORTED_PROFILE LASSO_PROFILE_SIGNATURE_HINT_FORBID LASSO_PROFILE_SIGNATURE_HINT_FORCE LASSO_PROFILE_SIGNATURE_HINT_MAYBE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_FORCE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_IGNORE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_LAST LASSO_PROFILE_SIGNATURE_VERIFY_HINT_MAYBE LASSO_PROTOCOL_LIBERTY_1_0 LASSO_PROTOCOL_LIBERTY_1_1 LASSO_PROTOCOL_LIBERTY_1_2 LASSO_PROTOCOL_NONE LASSO_PROTOCOL_SAML_2_0 LASSO_PROVIDER_ERROR_MISSING_PUBLIC_KEY LASSO_PROVIDER_ROLE_ANY LASSO_PROVIDER_ROLE_ATTRIBUTE_AUTHORITY LASSO_PROVIDER_ROLE_AUTHN_AUTHORITY LASSO_PROVIDER_ROLE_AUTHZ_AUTHORITY LASSO_PROVIDER_ROLE_BOTH LASSO_PROVIDER_ROLE_IDP LASSO_PROVIDER_ROLE_LAST LASSO_PROVIDER_ROLE_NONE LASSO_PROVIDER_ROLE_SP LASSO_PYTHON_HREF LASSO_REGISTRY_ERROR_KEY_EXISTS LASSO_REQUEST_TYPE_DEFEDERATION LASSO_REQUEST_TYPE_DISCO_MODIFY LASSO_REQUEST_TYPE_DISCO_QUERY LASSO_REQUEST_TYPE_DST_MODIFY LASSO_REQUEST_TYPE_DST_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_ASSOCIATION_ADD LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_REGISTER LASSO_REQUEST_TYPE_INVALID LASSO_REQUEST_TYPE_LECP LASSO_REQUEST_TYPE_LOGIN LASSO_REQUEST_TYPE_LOGOUT LASSO_REQUEST_TYPE_NAME_IDENTIFIER_MAPPING LASSO_REQUEST_TYPE_NAME_ID_MANAGEMENT LASSO_REQUEST_TYPE_NAME_REGISTRATION LASSO_REQUEST_TYPE_SASL_REQUEST LASSO_SAML2_ACTION_GHPP_GET LASSO_SAML2_ACTION_GHPP_HEAD LASSO_SAML2_ACTION_GHPP_POST LASSO_SAML2_ACTION_GHPP_PUT LASSO_SAML2_ACTION_NAMESPACE_GHPP LASSO_SAML2_ACTION_NAMESPACE_RWEDC LASSO_SAML2_ACTION_NAMESPACE_RWEDC_NEGATION LASSO_SAML2_ACTION_NAMESPACE_UNIX LASSO_SAML2_ACTION_RWEDC_CONTROL LASSO_SAML2_ACTION_RWEDC_DELETE LASSO_SAML2_ACTION_RWEDC_EXECUTE LASSO_SAML2_ACTION_RWEDC_NEGATION LASSO_SAML2_ACTION_RWEDC_READ LASSO_SAML2_ACTION_RWEDC_WRITE LASSO_SAML2_ASSERTION_HREF LASSO_SAML2_ASSERTION_INDETERMINATE LASSO_SAML2_ASSERTION_INVALID LASSO_SAML2_ASSERTION_PREFIX LASSO_SAML2_ASSERTION_VALID LASSO_SAML2_ATTRIBUTE_NAME_EPR LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_BASIC LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_UNSPECIFIED LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_URI LASSO_SAML2_ATTRIBUTE_PROFILE_BASIC LASSO_SAML2_ATTRIBUTE_PROFILE_DCE LASSO_SAML2_ATTRIBUTE_PROFILE_UUID LASSO_SAML2_ATTRIBUTE_PROFILE_X500 LASSO_SAML2_AUTHN_CONTEXT_AUTHENTICATED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_KERBEROS LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_NOMAD_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_PASSWORD_PROTECTED_TRANSPORT LASSO_SAML2_AUTHN_CONTEXT_PERSONALIZED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PGP LASSO_SAML2_AUTHN_CONTEXT_PREVIOUS_SESSION LASSO_SAML2_AUTHN_CONTEXT_SECURE_REMOTE_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD_PKI LASSO_SAML2_AUTHN_CONTEXT_SOFTWARE_PKI LASSO_SAML2_AUTHN_CONTEXT_SPKI LASSO_SAML2_AUTHN_CONTEXT_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_TIME_SYNC_TOKEN LASSO_SAML2_AUTHN_CONTEXT_TLS_CLIENT LASSO_SAML2_AUTHN_CONTEXT_UNSPECIFIED LASSO_SAML2_AUTHN_CONTEXT_X509 LASSO_SAML2_AUTHN_CONTEXT_XMLDSIG LASSO_SAML2_CONFIRMATION_METHOD_BEARER LASSO_SAML2_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML2_CONSENT_EXPLICIT LASSO_SAML2_CONSENT_IMPLICIT LASSO_SAML2_CONSENT_INAPPLICABLE LASSO_SAML2_CONSENT_OBTAINED LASSO_SAML2_CONSENT_PRIOR LASSO_SAML2_CONSENT_UNAVAILABLE LASSO_SAML2_DEFLATE_ENCODING LASSO_SAML2_FIELD_ARTIFACT LASSO_SAML2_FIELD_ENCODING LASSO_SAML2_FIELD_RELAYSTATE LASSO_SAML2_FIELD_REQUEST LASSO_SAML2_FIELD_RESPONSE LASSO_SAML2_FIELD_SIGALG LASSO_SAML2_FIELD_SIGNATURE LASSO_SAML2_METADATA_BINDING_ARTIFACT LASSO_SAML2_METADATA_BINDING_PAOS LASSO_SAML2_METADATA_BINDING_POST LASSO_SAML2_METADATA_BINDING_REDIRECT LASSO_SAML2_METADATA_BINDING_SOAP LASSO_SAML2_METADATA_BINDING_URI LASSO_SAML2_METADATA_HREF LASSO_SAML2_METADATA_PREFIX LASSO_SAML2_NAME_IDENTIFIER_FORMAT_EMAIL LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENTITY LASSO_SAML2_NAME_IDENTIFIER_FORMAT_KERBEROS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_PERSISTENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_TRANSIENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_UNSPECIFIED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_WINDOWS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_X509 LASSO_SAML2_PROTOCOL_HREF LASSO_SAML2_PROTOCOL_PREFIX LASSO_SAML2_STATUS_CODE_AUTHN_FAILED LASSO_SAML2_STATUS_CODE_INVALID_ATTR_NAME LASSO_SAML2_STATUS_CODE_INVALID_NAME_ID_POLICY LASSO_SAML2_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_SAML2_STATUS_CODE_NO_AVAILABLE_IDP LASSO_SAML2_STATUS_CODE_NO_PASSIVE LASSO_SAML2_STATUS_CODE_NO_SUPPORTED_IDP LASSO_SAML2_STATUS_CODE_PARTIAL_LOGOUT LASSO_SAML2_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_SAML2_STATUS_CODE_REQUESTER LASSO_SAML2_STATUS_CODE_REQUEST_DENIED LASSO_SAML2_STATUS_CODE_REQUEST_UNSUPPORTED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML2_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML2_STATUS_CODE_RESPONDER LASSO_SAML2_STATUS_CODE_SUCCESS LASSO_SAML2_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML2_STATUS_CODE_UNKNOWN_ATTR_PROFILE LASSO_SAML2_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_SAML2_STATUS_CODE_UNSUPPORTED_BINDING LASSO_SAML2_STATUS_CODE_VERSION_MISMATCH LASSO_SAML_ASSERTION_HREF LASSO_SAML_ASSERTION_PREFIX LASSO_SAML_AUTHENTICATION_METHODS_PKI LASSO_SAML_AUTHENTICATION_METHOD_HARDWARE_TOKEN LASSO_SAML_AUTHENTICATION_METHOD_KERBEROS LASSO_SAML_AUTHENTICATION_METHOD_LIBERTY LASSO_SAML_AUTHENTICATION_METHOD_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_PGP LASSO_SAML_AUTHENTICATION_METHOD_SECURE_REMOTE_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_SMARTCARD_PKI LASSO_SAML_AUTHENTICATION_METHOD_SOFTWARE_PKI LASSO_SAML_AUTHENTICATION_METHOD_UNSPECIFIED LASSO_SAML_AUTHENTICATION_METHOD_XKMS LASSO_SAML_AUTHENTICATION_METHOD_XMLD_SIG LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT01 LASSO_SAML_CONFIRMATION_METHOD_BEARER LASSO_SAML_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML_CONFIRMATION_METHOD_SENDER_VOUCHES LASSO_SAML_MAJOR_VERSION_N LASSO_SAML_MINOR_VERSION_N LASSO_SAML_PROTOCOL_HREF LASSO_SAML_PROTOCOL_PREFIX LASSO_SAML_STATUS_CODE_REQUESTER LASSO_SAML_STATUS_CODE_REQUEST_DENIED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML_STATUS_CODE_RESPONDER LASSO_SAML_STATUS_CODE_SUCCESS LASSO_SAML_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML_STATUS_CODE_VERSION_MISMATCH LASSO_SERVER_ERROR_ADD_PROVIDER_FAILED LASSO_SERVER_ERROR_ADD_PROVIDER_PROTOCOL_MISMATCH LASSO_SERVER_ERROR_INVALID_XML LASSO_SERVER_ERROR_PROVIDER_NOT_FOUND LASSO_SERVER_ERROR_SET_ENCRYPTION_PRIVATE_KEY_FAILED LASSO_SIGNATURE_METHOD_ATTRIBUTE LASSO_SIGNATURE_METHOD_DSA_SHA1 LASSO_SIGNATURE_METHOD_LAST LASSO_SIGNATURE_METHOD_RSA_SHA1 LASSO_SIGNATURE_TYPE_ATTRIBUTE LASSO_SIGNATURE_TYPE_LAST LASSO_SIGNATURE_TYPE_NONE LASSO_SIGNATURE_TYPE_SIMPLE LASSO_SIGNATURE_TYPE_WITHX509 LASSO_SOAP_ENV_ACTOR LASSO_SOAP_ENV_HREF LASSO_SOAP_ENV_PREFIX LASSO_SOAP_ERROR_MISSING_BODY LASSO_SOAP_ERROR_MISSING_ENVELOPE LASSO_SOAP_ERROR_MISSING_HEADER LASSO_SOAP_ERROR_MISSING_SOAP_FAULT_DETAIL LASSO_SOAP_ERROR_REDIRECT_REQUEST_FAULT LASSO_SOAP_FAULT_CODE_CLIENT LASSO_SOAP_FAULT_CODE_MUST_UNDERSTAND LASSO_SOAP_FAULT_CODE_SERVER LASSO_SOAP_FAULT_CODE_VERSION_MISMATCH LASSO_SOAP_FAULT_REDIRECT_REQUEST LASSO_WSF_ENABLED LASSO_WSF_PROFILE_ERROR_INVALID_OR_MISSING_REFERENCE_TO_MESSAGE_ID LASSO_WSF_PROFILE_ERROR_MISSING_ASSERTION_ID LASSO_WSF_PROFILE_ERROR_MISSING_CORRELATION LASSO_WSF_PROFILE_ERROR_MISSING_CREDENTIAL_REF LASSO_WSF_PROFILE_ERROR_MISSING_DESCRIPTION LASSO_WSF_PROFILE_ERROR_MISSING_ENDPOINT LASSO_WSF_PROFILE_ERROR_MISSING_RESOURCE_ID LASSO_WSF_PROFILE_ERROR_MISSING_SECURITY LASSO_WSF_PROFILE_ERROR_MISSING_SENDER_ID LASSO_WSF_PROFILE_ERROR_REDIRECT_REQUEST LASSO_WSF_PROFILE_ERROR_REDIRECT_REQUEST_UNSUPPORTED_BY_REQUESTER LASSO_WSF_PROFILE_ERROR_SECURITY_MECHANISM_CHECK_FAILED LASSO_WSF_PROFILE_ERROR_SERVER_INTERACTION_REQUIRED LASSO_WSF_PROFILE_ERROR_SERVER_INTERACTION_REQUIRED_FOR_DATA LASSO_WSF_PROFILE_ERROR_SOAP_FAULT LASSO_WSF_PROFILE_ERROR_UNKNOWN_STATUS_CODE LASSO_WSF_PROFILE_ERROR_UNSUPPORTED_SECURITY_MECHANISM LASSO_WSSEC_ERROR_BAD_PASSWORD LASSO_WSSEC_ERROR_MISSING_SECURITY_TOKEN LASSO_WSUTIL1_HREF LASSO_WSUTIL1_PREFIX LASSO_XML_ERROR_ATTR_NOT_FOUND LASSO_XML_ERROR_ATTR_VALUE_NOT_FOUND LASSO_XML_ERROR_INVALID_FILE LASSO_XML_ERROR_MISSING_NAMESPACE LASSO_XML_ERROR_NODE_CONTENT_NOT_FOUND LASSO_XML_ERROR_NODE_NOT_FOUND LASSO_XML_ERROR_OBJECT_CONSTRUCTION_FAILED LASSO_XML_ERROR_SCHEMA_INVALID_FRAGMENT LASSO_XSI_HREF LASSO_XSI_PREFIX struct LassoAssertionQuery { LassoAssertionQueryPrivate* private_data } LassoAssertionQueryRequestType LassoCheckVersionMode struct LassoDefederation { } struct LassoDsKeyInfo { LassoDsKeyValue* KeyValue } struct LassoDsKeyValue { LassoDsRsaKeyValue* RSAKeyValue } struct LassoDsRsaKeyValue { char* Modulus, char* Exponent } struct LassoEcp { gchar* assertionConsumerURL, LassoEcpPrivate* private_data } LassoEncryptionMode LassoEncryptionSymKeyType struct LassoFederation { gchar* remote_providerID, LassoNode* local_nameIdentifier, LassoNode* remote_nameIdentifier, LassoFederationPrivate* private_data } LassoHttpMethod struct LassoIdentity { GHashTable* federations, gboolean is_dirty, LassoIdentityPrivate* private_data } struct LassoLecp { LassoLibAuthnRequestEnvelope* authnRequestEnvelope, LassoLibAuthnResponseEnvelope* authnResponseEnvelope, char* assertionConsumerServiceURL } struct LassoLibAssertion { char* InResponseTo } struct LassoLibAuthenticationStatement { LassoLibAuthnContext* AuthnContext, char* ReauthenticateOnOrAfter, char* SessionIndex } struct LassoLibAuthnContext { char* AuthnContextClassRef, char* AuthnContextStatementRef } struct LassoLibAuthnRequest { GList* Extension, char* ProviderID, char* AffiliationID, char* NameIDPolicy, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolProfile, char* AssertionConsumerServiceID, LassoLibRequestAuthnContext* RequestAuthnContext, char* RelayState, LassoLibScoping* Scoping, char* consent } struct LassoLibAuthnRequestEnvelope { GList* Extension, LassoLibAuthnRequest* AuthnRequest, char* ProviderID, char* ProviderName, char* AssertionConsumerServiceURL, LassoLibIDPList* IDPList, gboolean IsPassive } struct LassoLibAuthnResponse { GList* Extension, char* ProviderID, char* RelayState, char* consent } struct LassoLibAuthnResponseEnvelope { GList* Extension, LassoLibAuthnResponse* AuthnResponse, char* AssertionConsumerServiceURL } struct LassoLibFederationTerminationNotification { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* consent, char* RelayState } struct LassoLibIDPEntries { GList* IDPEntry } struct LassoLibIDPEntry { char* ProviderID, char* ProviderName, char* Loc } struct LassoLibIDPList { LassoLibIDPEntries* IDPEntries, char* GetComplete } struct LassoLibLogoutRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* SessionIndex, char* RelayState, char* consent, char* NotOnOrAfter } struct LassoLibLogoutResponse { } struct LassoLibNameIdentifierMappingRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* TargetNamespace, char* consent } struct LassoLibNameIdentifierMappingResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, LassoSamlNameIdentifier* NameIdentifier } struct LassoLibRegisterNameIdentifierRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* IDPProvidedNameIdentifier, LassoSamlNameIdentifier* SPProvidedNameIdentifier, LassoSamlNameIdentifier* OldProvidedNameIdentifier, char* RelayState } struct LassoLibRegisterNameIdentifierResponse { } struct LassoLibRequestAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextStatementRef, char* AuthnContextComparison } struct LassoLibScoping { int ProxyCount, LassoLibIDPList* IDPList } struct LassoLibStatusResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, char* RelayState } struct LassoLibSubject { LassoSamlNameIdentifier* IDPProvidedNameIdentifier } struct LassoLogin { LassoLoginProtocolProfile protocolProfile, gchar* assertionArtifact, LassoSamlAssertion* assertion, gchar* nameIDPolicy, LassoHttpMethod http_method, LassoLoginPrivate* private_data } LassoLoginProtocolProfile struct LassoLogout { LassoNode* initial_request, LassoNode* initial_response, gchar* initial_remote_providerID, gint providerID_index, LassoHttpMethod initial_http_request_method, LassoLogoutPrivate* private_data } LassoMdProtocolType LassoMessageFormat struct LassoMiscTextNode { char* content, char* name, char* ns_href, char* ns_prefix, gboolean text_child } struct LassoNameIdManagement { } struct LassoNameIdentifierMapping { gchar* targetNameIdentifier } struct LassoNameRegistration { LassoSamlNameIdentifier* oldNameIdentifier } struct LassoNode { } struct LassoProfile { LassoServer* server, LassoNode* request, LassoNode* response, LassoNode* nameIdentifier, gchar* remote_providerID, gchar* msg_url, gchar* msg_body, gchar* msg_relayState, LassoIdentity* identity, LassoSession* session, LassoHttpMethod http_request_method, gint signature_status, LassoProfilePrivate* private_data } LassoProfileSignatureHint LassoProfileSignatureVerifyHint LassoProtocolConformance struct LassoProvider { gchar* ProviderID, LassoProviderRole role, char* metadata_filename, gchar* public_key, gchar* ca_cert_chain, LassoProviderPrivate* private_data } LassoProviderRole LassoRequestType struct LassoSaml2Action { char* content, char* Namespace } struct LassoSaml2Advice { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2Assertion { LassoSaml2NameID* Issuer, LassoSaml2Subject* Subject, LassoSaml2Conditions* Conditions, LassoSaml2Advice* Advice, GList* Statement, GList* AuthnStatement, GList* AuthzDecisionStatement, GList* AttributeStatement, char* Version, char* ID, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file, gboolean encryption_activated, char* encryption_public_key_str, LassoEncryptionSymKeyType encryption_sym_key_type } LassoSaml2AssertionValidationState struct LassoSaml2Attribute { GList* AttributeValue, char* Name, char* NameFormat, char* FriendlyName } struct LassoSaml2AttributeStatement { GList* Attribute, GList* EncryptedAttribute } struct LassoSaml2AttributeValue { GList* any } struct LassoSaml2AudienceRestriction { char* Audience } struct LassoSaml2AuthnContext { char* AuthnContextClassRef, char* AuthnContextDeclRef, char* AuthenticatingAuthority } struct LassoSaml2AuthnStatement { LassoSaml2SubjectLocality* SubjectLocality, LassoSaml2AuthnContext* AuthnContext, char* AuthnInstant, char* SessionIndex, char* SessionNotOnOrAfter } struct LassoSaml2AuthzDecisionStatement { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource, char* Decision } struct LassoSaml2BaseIDAbstract { char* NameQualifier, char* SPNameQualifier } struct LassoSaml2ConditionAbstract { } struct LassoSaml2Conditions { GList* Condition, GList* AudienceRestriction, GList* OneTimeUse, GList* ProxyRestriction, char* NotBefore, char* NotOnOrAfter } struct LassoSaml2EncryptedElement { xmlNode* EncryptedData, GList* EncryptedKey, LassoNode* original_data } struct LassoSaml2Evidence { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2KeyInfoConfirmationData { } struct LassoSaml2NameID { char* content, char* Format, char* SPProvidedID, char* NameQualifier, char* SPNameQualifier } struct LassoSaml2OneTimeUse { } struct LassoSaml2ProxyRestriction { char* Audience, char* Count } struct LassoSaml2StatementAbstract { } struct LassoSaml2Subject { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmation* SubjectConfirmation } struct LassoSaml2SubjectConfirmation { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmationData* SubjectConfirmationData, char* Method } struct LassoSaml2SubjectConfirmationData { char* NotBefore, char* NotOnOrAfter, char* Recipient, char* InResponseTo, char* Address } struct LassoSaml2SubjectLocality { char* Address, char* DNSName } struct LassoSamlAdvice { GList* AssertionIDReference, LassoNode* Assertion } struct LassoSamlAssertion { LassoSamlConditions* Conditions, LassoSamlAdvice* Advice, LassoSamlSubjectStatement* SubjectStatement, LassoSamlAuthenticationStatement* AuthenticationStatement, LassoSamlAttributeStatement* AttributeStatement, int MajorVersion, int MinorVersion, char* AssertionID, char* Issuer, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlAttribute { gchar* attributeName, gchar* attributeNameSpace, GList* AttributeValue } struct LassoSamlAttributeDesignator { char* AttributeName, char* AttributeNamespace } struct LassoSamlAttributeStatement { GList* Attribute } struct LassoSamlAttributeValue { GList* any } struct LassoSamlAudienceRestrictionCondition { GList* Audience } struct LassoSamlAuthenticationStatement { LassoSamlSubjectLocality* SubjectLocality, GList* AuthorityBinding, char* AuthenticationMethod, char* AuthenticationInstant } struct LassoSamlAuthorityBinding { char* AuthorityKind, char* Location, char* Binding } struct LassoSamlConditionAbstract { } struct LassoSamlConditions { GList* Condition, GList* AudienceRestrictionCondition, char* NotBefore, char* NotOnOrAfter } struct LassoSamlNameIdentifier { char* NameQualifier, char* Format, char* content } struct LassoSamlStatementAbstract { } struct LassoSamlSubject { LassoSamlNameIdentifier* NameIdentifier, LassoSamlSubjectConfirmation* SubjectConfirmation, LassoSaml2EncryptedElement* EncryptedNameIdentifier } struct LassoSamlSubjectConfirmation { GList* ConfirmationMethod, char* SubjectConfirmationData, LassoDsKeyInfo* KeyInfo } struct LassoSamlSubjectLocality { char* IPAddress, char* DNSAddress } struct LassoSamlSubjectStatement { } struct LassoSamlSubjectStatementAbstract { LassoSamlSubject* Subject } struct LassoSamlp2ArtifactResolve { char* Artifact } struct LassoSamlp2ArtifactResponse { LassoNode* any } struct LassoSamlp2AssertionIDRequest { char* AssertionIDRef } struct LassoSamlp2AttributeQuery { GList* Attribute } struct LassoSamlp2AuthnQuery { LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, char* SessionIndex } struct LassoSamlp2AuthnRequest { LassoSaml2Subject* Subject, LassoSamlp2NameIDPolicy* NameIDPolicy, LassoSaml2Conditions* Conditions, LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, LassoSamlp2Scoping* Scoping, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolBinding, int AssertionConsumerServiceIndex, char* AssertionConsumerServiceURL, int AttributeConsumingServiceIndex, char* ProviderName, G_GNUC_DEPRECATED char } struct LassoSamlp2AuthzDecisionQuery { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource } struct LassoSamlp2Extensions { } struct LassoSamlp2IDPEntry { char* ProviderID, char* Name, char* Loc } struct LassoSamlp2IDPList { LassoSamlp2IDPEntry* IDPEntry, char* GetComplete } struct LassoSamlp2LogoutRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* SessionIndex, char* Reason, char* NotOnOrAfter, G_GNUC_DEPRECATED char } struct LassoSamlp2LogoutResponse { G_GNUC_DEPRECATED char } struct LassoSamlp2ManageNameIDRequest { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* NewID, LassoSaml2EncryptedElement* NewEncryptedID, LassoSamlp2Terminate* Terminate } struct LassoSamlp2ManageNameIDResponse { } struct LassoSamlp2NameIDMappingRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSamlp2NameIDPolicy* NameIDPolicy } struct LassoSamlp2NameIDMappingResponse { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID } struct LassoSamlp2NameIDPolicy { char* Format, char* SPNameQualifier, gboolean AllowCreate } struct LassoSamlp2RequestAbstract { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, char* ID, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2RequestedAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextDeclRef, char* Comparison } struct LassoSamlp2Response { GList* Assertion, GList* EncryptedAssertion } struct LassoSamlp2Scoping { LassoSamlp2IDPList* IDPList, char* RequesterID, char* ProxyCount } struct LassoSamlp2Status { LassoSamlp2StatusCode* StatusCode, char* StatusMessage, LassoSamlp2StatusDetail* StatusDetail } struct LassoSamlp2StatusCode { LassoSamlp2StatusCode* StatusCode, char* Value } struct LassoSamlp2StatusDetail { } struct LassoSamlp2StatusResponse { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, LassoSamlp2Status* Status, char* ID, char* InResponseTo, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2SubjectQueryAbstract { LassoSaml2Subject* Subject } struct LassoSamlp2Terminate { } struct LassoSamlpRequest { char* AssertionArtifact } struct LassoSamlpRequestAbstract { GList* RespondWith, char* RequestID, int MajorVersion, int MinorVersion, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpResponse { LassoSamlpStatus* Status, GList* Assertion } struct LassoSamlpResponseAbstract { char* ResponseID, char* InResponseTo, int MajorVersion, int MinorVersion, char* IssueInstant, char* Recipient, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpStatus { LassoSamlpStatusCode* StatusCode, char* StatusMessage } struct LassoSamlpStatusCode { LassoSamlpStatusCode* StatusCode, char* Value } struct LassoServer { GHashTable* providers, GHashTable* services, gchar* private_key, gchar* private_key_password, gchar* certificate, LassoSignatureMethod signature_method, LassoServerPrivate* private_data } struct LassoSession { GHashTable* assertions, gboolean is_dirty, LassoSessionPrivate* private_data } LassoSignatureMethod LassoSignatureType struct LassoSoapBody { GList* any, gchar* Id } struct LassoSoapDetail { GList* any } struct LassoSoapEnvelope { LassoSoapHeader* Header, LassoSoapBody* Body } struct LassoSoapFault { gchar* faultcode, gchar* faultstring, GList* faultactor, LassoSoapDetail* Detail } struct LassoSoapHeader { GList* Other } lasso_error_t lasso_assertion_query_add_attribute_request ( LassoAssertionQuery* assertion_query, char* format, char* name ) lasso_error_t lasso_assertion_query_build_request_msg ( LassoAssertionQuery* assertion_query ) lasso_error_t lasso_assertion_query_build_response_msg ( LassoAssertionQuery* assertion_query ) None lasso_assertion_query_destroy ( LassoAssertionQuery* assertion_query ) LassoAssertionQueryRequestType lasso_assertion_query_get_request_type ( LassoAssertionQuery* assertion_query ) GType lasso_assertion_query_get_type ( ) lasso_error_t lasso_assertion_query_init_request ( LassoAssertionQuery* assertion_query, char* remote_provider_id, LassoHttpMethod http_method, LassoAssertionQueryRequestType query_request_type ) LassoAssertionQuery* lasso_assertion_query_new ( LassoServer* server ) lasso_error_t lasso_assertion_query_process_request_msg ( LassoAssertionQuery* assertion_query, gchar* request_msg ) lasso_error_t lasso_assertion_query_process_response_msg ( LassoAssertionQuery* assertion_query, gchar* response_msg ) lasso_error_t lasso_assertion_query_validate_request ( LassoAssertionQuery* assertion_query ) char* lasso_build_unique_id ( unsigned int size ) int lasso_check_version ( int major, int minor, int subminor, LassoCheckVersionMode mode ) lasso_error_t lasso_defederation_build_notification_msg ( LassoDefederation* defederation ) None lasso_defederation_destroy ( LassoDefederation* defederation ) GType lasso_defederation_get_type ( ) lasso_error_t lasso_defederation_init_notification ( LassoDefederation* defederation, gchar* remote_providerID, LassoHttpMethod http_method ) LassoDefederation* lasso_defederation_new ( LassoServer* server ) lasso_error_t lasso_defederation_process_notification_msg ( LassoDefederation* defederation, gchar* notification_msg ) lasso_error_t lasso_defederation_validate_notification ( LassoDefederation* defederation ) GType lasso_ds_key_info_get_type ( ) LassoDsKeyInfo* lasso_ds_key_info_new ( ) GType lasso_ds_key_value_get_type ( ) LassoDsKeyValue* lasso_ds_key_value_new ( ) GType lasso_ds_rsa_key_value_get_type ( ) LassoDsRsaKeyValue* lasso_ds_rsa_key_value_new ( ) None lasso_ecp_destroy ( LassoEcp* ecp ) GType lasso_ecp_get_type ( ) LassoEcp* lasso_ecp_new ( LassoServer* server ) lasso_error_t lasso_ecp_process_authn_request_msg ( LassoEcp* ecp, const char* authn_request_msg ) lasso_error_t lasso_ecp_process_response_msg ( LassoEcp* ecp, const char* response_msg ) None lasso_federation_build_local_name_identifier ( LassoFederation* federation, const gchar* nameQualifier, const gchar* format, const gchar* content ) None lasso_federation_destroy ( LassoFederation* federation ) GType lasso_federation_get_type ( ) LassoFederation* lasso_federation_new ( const gchar* remote_providerID ) gboolean lasso_federation_verify_name_identifier ( LassoFederation* federation, LassoNode* name_identifier ) char* lasso_get_prefix_for_dst_service_href ( const char* href ) gchar* lasso_get_prefix_for_idwsf2_dst_service_href ( const gchar* href ) None lasso_identity_destroy ( LassoIdentity* identity ) gchar* lasso_identity_dump ( LassoIdentity* identity ) LassoFederation* lasso_identity_get_federation ( LassoIdentity* identity, const char* providerID ) GType lasso_identity_get_type ( ) LassoIdentity* lasso_identity_new ( ) LassoIdentity* lasso_identity_new_from_dump ( const gchar* dump ) lasso_error_t lasso_init ( ) lasso_error_t lasso_lecp_build_authn_request_envelope_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_request_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_response_envelope_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_response_msg ( LassoLecp* lecp ) None lasso_lecp_destroy ( LassoLecp* lecp ) GType lasso_lecp_get_type ( ) lasso_error_t lasso_lecp_init_authn_request ( LassoLecp* lecp, const char* remote_providerID ) LassoLecp* lasso_lecp_new ( LassoServer* server ) lasso_error_t lasso_lecp_process_authn_request_envelope_msg ( LassoLecp* lecp, const char* request_msg ) lasso_error_t lasso_lecp_process_authn_request_msg ( LassoLecp* lecp, const char* authn_request_msg ) lasso_error_t lasso_lecp_process_authn_response_envelope_msg ( LassoLecp* lecp, const char* response_msg ) GType lasso_lib_assertion_get_type ( ) LassoLibAssertion* lasso_lib_assertion_new ( ) LassoLibAssertion* lasso_lib_assertion_new_full ( const char* issuer, const char* requestID, const char* audience, const char* notBefore, const char* notOnOrAfter ) GType lasso_lib_authentication_statement_get_type ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new_full ( const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, LassoSamlNameIdentifier* sp_identifier, LassoSamlNameIdentifier* idp_identifier ) GType lasso_lib_authn_context_get_type ( ) LassoNode* lasso_lib_authn_context_new ( ) GType lasso_lib_authn_request_envelope_get_type ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new_full ( LassoLibAuthnRequest* authnRequest, char* providerID, char* assertionConsumerServiceURL ) GType lasso_lib_authn_request_get_type ( ) LassoLibAuthnRequest* lasso_lib_authn_request_new ( ) GType lasso_lib_authn_response_envelope_get_type ( ) LassoLibAuthnResponseEnvelope* lasso_lib_authn_response_envelope_new ( LassoLibAuthnResponse* response, char* assertionConsumerServiceURL ) GType lasso_lib_authn_response_get_type ( ) LassoNode* lasso_lib_authn_response_new ( char* providerID, LassoLibAuthnRequest* request ) GType lasso_lib_federation_termination_notification_get_type ( ) LassoNode* lasso_lib_federation_termination_notification_new ( ) LassoNode* lasso_lib_federation_termination_notification_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_idp_entries_get_type ( ) LassoNode* lasso_lib_idp_entries_new ( ) GType lasso_lib_idp_entry_get_type ( ) LassoNode* lasso_lib_idp_entry_new ( ) GType lasso_lib_idp_list_get_type ( ) LassoNode* lasso_lib_idp_list_new ( ) GType lasso_lib_logout_request_get_type ( ) LassoNode* lasso_lib_logout_request_new ( ) LassoNode* lasso_lib_logout_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_logout_response_get_type ( ) LassoNode* lasso_lib_logout_response_new ( ) LassoNode* lasso_lib_logout_response_new_full ( char* providerID, const char* statusCodeValue, LassoLibLogoutRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_request_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, const char* targetNamespace, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_response_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new_full ( char* provideRID, const char* statusCodeValue, LassoLibNameIdentifierMappingRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_request_get_type ( ) LassoNode* lasso_lib_register_name_identifier_request_new ( ) LassoNode* lasso_lib_register_name_identifier_request_new_full ( const char* providerID, LassoSamlNameIdentifier* idpNameIdentifier, LassoSamlNameIdentifier* spNameIdentifier, LassoSamlNameIdentifier* oldNameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_response_get_type ( ) LassoNode* lasso_lib_register_name_identifier_response_new ( ) LassoNode* lasso_lib_register_name_identifier_response_new_full ( const char* providerID, const char* statusCodeValue, LassoLibRegisterNameIdentifierRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_request_authn_context_get_type ( ) LassoLibRequestAuthnContext* lasso_lib_request_authn_context_new ( ) GType lasso_lib_scoping_get_type ( ) LassoLibScoping* lasso_lib_scoping_new ( ) GType lasso_lib_status_response_get_type ( ) LassoNode* lasso_lib_status_response_new ( ) GType lasso_lib_subject_get_type ( ) LassoLibSubject* lasso_lib_subject_new ( ) lasso_error_t lasso_login_accept_sso ( LassoLogin* login ) lasso_error_t lasso_login_build_artifact_msg ( LassoLogin* login, LassoHttpMethod http_method ) lasso_error_t lasso_login_build_assertion ( LassoLogin* login, const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, const char* notBefore, const char* notOnOrAfter ) lasso_error_t lasso_login_build_authn_request_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_authn_response_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_request_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_response_msg ( LassoLogin* login, gchar* remote_providerID ) None lasso_login_destroy ( LassoLogin* login ) gchar* lasso_login_dump ( LassoLogin* login ) LassoNode* lasso_login_get_assertion ( LassoLogin* login ) GType lasso_login_get_type ( ) lasso_error_t lasso_login_init_authn_request ( LassoLogin* login, const gchar* remote_providerID, LassoHttpMethod http_method ) lasso_error_t lasso_login_init_idp_initiated_authn_request ( LassoLogin* login, const gchar* remote_providerID ) lasso_error_t lasso_login_init_request ( LassoLogin* login, gchar* response_msg, LassoHttpMethod response_http_method ) gboolean lasso_login_must_ask_for_consent ( LassoLogin* login ) gboolean lasso_login_must_authenticate ( LassoLogin* login ) LassoLogin* lasso_login_new ( LassoServer* server ) LassoLogin* lasso_login_new_from_dump ( LassoServer* server, const gchar* dump ) lasso_error_t lasso_login_process_authn_request_msg ( LassoLogin* login, const char* authn_request_msg ) lasso_error_t lasso_login_process_authn_response_msg ( LassoLogin* login, gchar* authn_response_msg ) lasso_error_t lasso_login_process_paos_response_msg ( LassoLogin* login, gchar* msg ) lasso_error_t lasso_login_process_request_msg ( LassoLogin* login, gchar* request_msg ) lasso_error_t lasso_login_process_response_msg ( LassoLogin* login, gchar* response_msg ) lasso_error_t lasso_login_validate_request_msg ( LassoLogin* login, gboolean authentication_result, gboolean is_consent_obtained ) lasso_error_t lasso_logout_build_request_msg ( LassoLogout* logout ) lasso_error_t lasso_logout_build_response_msg ( LassoLogout* logout ) None lasso_logout_destroy ( LassoLogout* logout ) gchar* lasso_logout_dump ( LassoLogout* logout ) gchar* lasso_logout_get_next_providerID ( LassoLogout* logout ) GType lasso_logout_get_type ( ) lasso_error_t lasso_logout_init_request ( LassoLogout* logout, gchar* remote_providerID, LassoHttpMethod request_method ) LassoLogout* lasso_logout_new ( LassoServer* server ) LassoLogout* lasso_logout_new_from_dump ( LassoServer* server, const gchar* dump ) lasso_error_t lasso_logout_process_request_msg ( LassoLogout* logout, gchar* request_msg ) lasso_error_t lasso_logout_process_response_msg ( LassoLogout* logout, gchar* response_msg ) lasso_error_t lasso_logout_reset_providerID_index ( LassoLogout* logout ) lasso_error_t lasso_logout_validate_request ( LassoLogout* logout ) GType lasso_misc_text_node_get_type ( ) xmlNode* lasso_misc_text_node_get_xml_content ( LassoMiscTextNode* misc_text_node ) LassoNode* lasso_misc_text_node_new ( ) LassoMiscTextNode* lasso_misc_text_node_new_with_string ( const char* content ) LassoMiscTextNode* lasso_misc_text_node_new_with_xml_node ( xmlNode* xml_node ) None lasso_misc_text_node_set_xml_content ( LassoMiscTextNode* misc_text_node, xmlNode* node ) lasso_error_t lasso_name_id_management_build_request_msg ( LassoNameIdManagement* name_id_management ) lasso_error_t lasso_name_id_management_build_response_msg ( LassoNameIdManagement* name_id_management ) None lasso_name_id_management_destroy ( LassoNameIdManagement* name_id_management ) char* lasso_name_id_management_dump ( LassoNameIdManagement* name_id_management ) GType lasso_name_id_management_get_type ( ) lasso_error_t lasso_name_id_management_init_request ( LassoNameIdManagement* name_id_management, char* remote_provider_id, char* new_name_id, LassoHttpMethod http_method ) LassoNameIdManagement* lasso_name_id_management_new ( LassoServer* server ) LassoNameIdManagement* lasso_name_id_management_new_from_dump ( LassoServer* server, const char* dump ) lasso_error_t lasso_name_id_management_process_request_msg ( LassoNameIdManagement* name_id_management, gchar* request_msg ) lasso_error_t lasso_name_id_management_process_response_msg ( LassoNameIdManagement* name_id_management, gchar* response_msg ) lasso_error_t lasso_name_id_management_validate_request ( LassoNameIdManagement* name_id_management ) lasso_error_t lasso_name_identifier_mapping_build_request_msg ( LassoNameIdentifierMapping* mapping ) lasso_error_t lasso_name_identifier_mapping_build_response_msg ( LassoNameIdentifierMapping* mapping ) None lasso_name_identifier_mapping_destroy ( LassoNameIdentifierMapping* mapping ) GType lasso_name_identifier_mapping_get_type ( ) lasso_error_t lasso_name_identifier_mapping_init_request ( LassoNameIdentifierMapping* mapping, gchar* targetNamespace, gchar* remote_providerID ) LassoNameIdentifierMapping* lasso_name_identifier_mapping_new ( LassoServer* server ) lasso_error_t lasso_name_identifier_mapping_process_request_msg ( LassoNameIdentifierMapping* mapping, gchar* request_msg ) lasso_error_t lasso_name_identifier_mapping_process_response_msg ( LassoNameIdentifierMapping* mapping, gchar* response_msg ) lasso_error_t lasso_name_identifier_mapping_validate_request ( LassoNameIdentifierMapping* mapping ) lasso_error_t lasso_name_registration_build_request_msg ( LassoNameRegistration* name_registration ) lasso_error_t lasso_name_registration_build_response_msg ( LassoNameRegistration* name_registration ) None lasso_name_registration_destroy ( LassoNameRegistration* name_registration ) gchar* lasso_name_registration_dump ( LassoNameRegistration* name_registration ) GType lasso_name_registration_get_type ( ) lasso_error_t lasso_name_registration_init_request ( LassoNameRegistration* name_registration, char* remote_providerID, LassoHttpMethod http_method ) LassoNameRegistration* lasso_name_registration_new ( LassoServer* server ) LassoNameRegistration* lasso_name_registration_new_from_dump ( LassoServer* server, const char* dump ) lasso_error_t lasso_name_registration_process_request_msg ( LassoNameRegistration* name_registration, gchar* request_msg ) lasso_error_t lasso_name_registration_process_response_msg ( LassoNameRegistration* name_registration, gchar* response_msg ) lasso_error_t lasso_name_registration_validate_request ( LassoNameRegistration* name_registration ) None lasso_node_cleanup_original_xmlnodes ( LassoNode* node ) char* lasso_node_debug ( LassoNode* node, int level ) None lasso_node_destroy ( LassoNode* node ) char* lasso_node_dump ( LassoNode* node ) char* lasso_node_export_to_base64 ( LassoNode* node ) char* lasso_node_export_to_ecp_soap_response ( LassoNode* node, const char* assertionConsumerURL ) char* lasso_node_export_to_paos_request ( LassoNode* node, const char* issuer, const char* responseConsumerURL, const char* relay_state ) char* lasso_node_export_to_query ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file ) char* lasso_node_export_to_query_with_password ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file, const char* private_key_file_password ) char* lasso_node_export_to_soap ( LassoNode* node ) gchar* lasso_node_export_to_xml ( LassoNode* node ) const char* lasso_node_get_name ( LassoNode* node ) const char* lasso_node_get_namespace ( LassoNode* node ) xmlNode* lasso_node_get_original_xmlnode ( LassoNode* node ) GType lasso_node_get_type ( ) xmlNode* lasso_node_get_xmlNode ( LassoNode* node, gboolean lasso_dump ) LassoMessageFormat lasso_node_init_from_message ( LassoNode* node, const char* message ) gboolean lasso_node_init_from_query ( LassoNode* node, const char* query ) lasso_error_t lasso_node_init_from_xml ( LassoNode* node, xmlNode* xmlnode ) LassoNode* lasso_node_new ( ) LassoNode* lasso_node_new_from_dump ( const char* dump ) LassoNode* lasso_node_new_from_soap ( const char* soap ) LassoNode* lasso_node_new_from_xmlNode ( xmlNode* node ) None lasso_node_set_custom_namespace ( LassoNode* node, const char* prefix, const char* href ) None lasso_node_set_custom_nodename ( LassoNode* node, const char* nodename ) None lasso_node_set_original_xmlnode ( LassoNode* node, xmlNode* xmlnode ) char* lasso_profile_get_artifact ( LassoProfile* profile ) char* lasso_profile_get_artifact_message ( LassoProfile* profile ) LassoIdentity* lasso_profile_get_identity ( LassoProfile* profile ) LassoNode* lasso_profile_get_nameIdentifier ( LassoProfile* profile ) LassoRequestType lasso_profile_get_request_type_from_soap_msg ( const gchar* soap ) LassoSession* lasso_profile_get_session ( LassoProfile* profile ) LassoProfileSignatureHint lasso_profile_get_signature_hint ( LassoProfile* profile ) lasso_error_t lasso_profile_get_signature_status ( LassoProfile* profile ) LassoProfileSignatureVerifyHint lasso_profile_get_signature_verify_hint ( LassoProfile* profile ) GType lasso_profile_get_type ( ) gboolean lasso_profile_is_identity_dirty ( LassoProfile* profile ) gboolean lasso_profile_is_liberty_query ( const gchar* query ) gboolean lasso_profile_is_saml_query ( const gchar* query ) gboolean lasso_profile_is_session_dirty ( LassoProfile* profile ) None lasso_profile_set_artifact_message ( LassoProfile* profile, const char* message ) lasso_error_t lasso_profile_set_identity_from_dump ( LassoProfile* profile, const gchar* dump ) lasso_error_t lasso_profile_set_session_from_dump ( LassoProfile* profile, const gchar* dump ) None lasso_profile_set_signature_hint ( LassoProfile* profile, LassoProfileSignatureHint signature_hint ) None lasso_profile_set_signature_verify_hint ( LassoProfile* profile, LassoProfileSignatureVerifyHint signature_verify_hint ) lasso_error_t lasso_profile_set_soap_fault_response ( LassoProfile* profile, const char* faultcode, const char* faultstring, GList* details ) LassoProviderRole lasso_profile_sso_role_with ( LassoProfile* profile, const char* remote_provider_id ) gboolean lasso_provider_accept_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type, LassoHttpMethod http_method, gboolean initiate_profile ) gchar* lasso_provider_get_assertion_consumer_service_url ( LassoProvider* provider, const char* service_id ) gchar* lasso_provider_get_base64_succinct_id ( const LassoProvider* provider ) char* lasso_provider_get_cache_duration ( LassoProvider* provider ) gchar* lasso_provider_get_default_name_id_format ( LassoProvider* provider ) LassoEncryptionMode lasso_provider_get_encryption_mode ( LassoProvider* provider ) LassoHttpMethod lasso_provider_get_first_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type ) GList* lasso_provider_get_idp_supported_attributes ( LassoProvider* provider ) GList* lasso_provider_get_metadata_keys_for_role ( LassoProvider* provider, LassoProviderRole role ) GList* lasso_provider_get_metadata_list ( LassoProvider* provider, const char* name ) GList* lasso_provider_get_metadata_list_for_role ( const LassoProvider* provider, LassoProviderRole role, const char* name ) gchar* lasso_provider_get_metadata_one ( LassoProvider* provider, const char* name ) char* lasso_provider_get_metadata_one_for_role ( LassoProvider* provider, LassoProviderRole role, const char* name ) xmlNode* lasso_provider_get_organization ( const LassoProvider* provider ) LassoProtocolConformance lasso_provider_get_protocol_conformance ( const LassoProvider* provider ) LassoProviderRole lasso_provider_get_roles ( LassoProvider* provider ) const char* lasso_provider_get_sp_name_qualifier ( LassoProvider* provider ) GType lasso_provider_get_type ( ) char* lasso_provider_get_valid_until ( LassoProvider* provider ) gboolean lasso_provider_has_protocol_profile ( LassoProvider* provider, LassoMdProtocolType protocol_type, const char* protocol_profile ) gboolean lasso_provider_match_conformance ( LassoProvider* provider, LassoProvider* another_provider ) LassoProvider* lasso_provider_new ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_buffer ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_dump ( const gchar* dump ) LassoSaml2EncryptedElement* lasso_provider_saml2_node_encrypt ( const LassoProvider* provider, LassoNode* lasso_node ) None lasso_provider_set_encryption_mode ( LassoProvider* provider, LassoEncryptionMode encryption_mode ) None lasso_provider_set_encryption_sym_key_type ( LassoProvider* provider, LassoEncryptionSymKeyType encryption_sym_key_type ) lasso_error_t lasso_provider_verify_single_node_signature ( LassoProvider* provider, LassoNode* node, const char* id_attr_name ) None lasso_register_dst_service ( const char* prefix, const char* href ) None lasso_register_idwsf2_dst_service ( const gchar* prefix, const gchar* href ) GType lasso_saml2_action_get_type ( ) LassoNode* lasso_saml2_action_new ( ) LassoNode* lasso_saml2_action_new_with_string ( char* content ) GType lasso_saml2_advice_get_type ( ) LassoNode* lasso_saml2_advice_new ( ) lasso_error_t lasso_saml2_assertion_add_attribute_with_node ( LassoSaml2Assertion* assertion, const char* name, const char* nameformat, LassoNode* content ) None lasso_saml2_assertion_add_audience_restriction ( LassoSaml2Assertion* saml2_assertion, const char* providerID ) None lasso_saml2_assertion_add_proxy_limit ( LassoSaml2Assertion* saml2_assertion, int proxy_count, GList* proxy_audiences ) LassoSaml2AssertionValidationState lasso_saml2_assertion_allows_proxying ( LassoSaml2Assertion* saml2_assertion ) LassoSaml2AssertionValidationState lasso_saml2_assertion_allows_proxying_to ( LassoSaml2Assertion* saml2_assertion, const char* audience ) lasso_error_t lasso_saml2_assertion_decrypt_subject ( LassoSaml2Assertion* assertion, LassoServer* server ) const char* lasso_saml2_assertion_get_in_response_to ( LassoSaml2Assertion* assertion ) LassoProvider* lasso_saml2_assertion_get_issuer_provider ( const LassoSaml2Assertion* saml2_assertion, const LassoServer* server ) LassoSaml2SubjectConfirmationData* lasso_saml2_assertion_get_subject_confirmation_data ( LassoSaml2Assertion* saml2_assertion, gboolean create ) GType lasso_saml2_assertion_get_type ( ) gboolean lasso_saml2_assertion_has_audience_restriction ( LassoSaml2Assertion* saml2_assertion ) gboolean lasso_saml2_assertion_has_one_time_use ( LassoSaml2Assertion* saml2_assertion ) gboolean lasso_saml2_assertion_is_audience_restricted ( LassoSaml2Assertion* saml2_assertion, char* providerID ) LassoNode* lasso_saml2_assertion_new ( ) None lasso_saml2_assertion_set_basic_conditions ( LassoSaml2Assertion* saml2_assertion, time_t tolerance, time_t length, gboolean one_time_use ) None lasso_saml2_assertion_set_one_time_use ( LassoSaml2Assertion* saml2_assertion, gboolean one_time_use ) None lasso_saml2_assertion_set_subject_confirmation_data ( LassoSaml2Assertion* saml2_assertion, time_t tolerance, time_t length, const char* Recipient, const char* InResponseTo, const char* Address ) None lasso_saml2_assertion_set_subject_confirmation_name_id ( LassoSaml2Assertion* saml2_assertion, LassoNode* node ) None lasso_saml2_assertion_set_subject_name_id ( LassoSaml2Assertion* saml2_assertion, LassoNode* node ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_audience ( LassoSaml2Assertion* saml2_assertion, const gchar* audience ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_conditions ( LassoSaml2Assertion* saml2_assertion, const char* relaying_party_providerID ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_time_checks ( LassoSaml2Assertion* saml2_assertion, unsigned int tolerance, time_t now ) GType lasso_saml2_attribute_get_type ( ) LassoNode* lasso_saml2_attribute_new ( ) GType lasso_saml2_attribute_statement_get_type ( ) LassoNode* lasso_saml2_attribute_statement_new ( ) GType lasso_saml2_attribute_value_get_type ( ) LassoSaml2AttributeValue* lasso_saml2_attribute_value_new ( ) GType lasso_saml2_audience_restriction_get_type ( ) LassoNode* lasso_saml2_audience_restriction_new ( ) GType lasso_saml2_authn_context_get_type ( ) LassoNode* lasso_saml2_authn_context_new ( ) GType lasso_saml2_authn_statement_get_type ( ) LassoNode* lasso_saml2_authn_statement_new ( ) GType lasso_saml2_authz_decision_statement_get_type ( ) LassoNode* lasso_saml2_authz_decision_statement_new ( ) GType lasso_saml2_base_idabstract_get_type ( ) LassoNode* lasso_saml2_base_idabstract_new ( ) GType lasso_saml2_condition_abstract_get_type ( ) LassoNode* lasso_saml2_condition_abstract_new ( ) GType lasso_saml2_conditions_get_type ( ) LassoNode* lasso_saml2_conditions_new ( ) LassoSaml2EncryptedElement* lasso_saml2_encrypted_element_build_encrypted_persistent_name_id ( const char* id, const char* idpID, const LassoProvider* provider ) GType lasso_saml2_encrypted_element_get_type ( ) LassoNode* lasso_saml2_encrypted_element_new ( ) lasso_error_t lasso_saml2_encrypted_element_server_decrypt ( LassoSaml2EncryptedElement* encrypted_element, LassoServer* server, LassoNode** decrypted_node ) GType lasso_saml2_evidence_get_type ( ) LassoNode* lasso_saml2_evidence_new ( ) GType lasso_saml2_key_info_confirmation_data_get_type ( ) LassoNode* lasso_saml2_key_info_confirmation_data_new ( ) LassoSaml2NameID* lasso_saml2_name_id_build_persistent ( const char* id, const char* idpID, const char* providerID ) gboolean lasso_saml2_name_id_equals ( LassoSaml2NameID* name_id, LassoSaml2NameID* other_name_id ) GType lasso_saml2_name_id_get_type ( ) LassoNode* lasso_saml2_name_id_new ( ) LassoSaml2NameID* lasso_saml2_name_id_new_with_persistent_format ( const char* id, const char* idpID, const char* providerID ) LassoNode* lasso_saml2_name_id_new_with_string ( char* content ) GType lasso_saml2_one_time_use_get_type ( ) LassoNode* lasso_saml2_one_time_use_new ( ) GType lasso_saml2_proxy_restriction_get_type ( ) LassoNode* lasso_saml2_proxy_restriction_new ( ) GType lasso_saml2_statement_abstract_get_type ( ) LassoNode* lasso_saml2_statement_abstract_new ( ) GType lasso_saml2_subject_confirmation_data_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_data_new ( ) GType lasso_saml2_subject_confirmation_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_new ( ) GType lasso_saml2_subject_get_type ( ) GType lasso_saml2_subject_locality_get_type ( ) LassoNode* lasso_saml2_subject_locality_new ( ) LassoNode* lasso_saml2_subject_new ( ) GType lasso_saml_advice_get_type ( ) LassoNode* lasso_saml_advice_new ( ) GType lasso_saml_assertion_get_type ( ) LassoSamlAssertion* lasso_saml_assertion_new ( ) GType lasso_saml_attribute_designator_get_type ( ) LassoNode* lasso_saml_attribute_designator_new ( ) GType lasso_saml_attribute_get_type ( ) LassoSamlAttribute* lasso_saml_attribute_new ( ) GType lasso_saml_attribute_statement_get_type ( ) LassoSamlAttributeStatement* lasso_saml_attribute_statement_new ( ) GType lasso_saml_attribute_value_get_type ( ) LassoSamlAttributeValue* lasso_saml_attribute_value_new ( ) GType lasso_saml_audience_restriction_condition_get_type ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new_full ( const char* audience ) GType lasso_saml_authentication_statement_get_type ( ) LassoNode* lasso_saml_authentication_statement_new ( ) GType lasso_saml_authority_binding_get_type ( ) LassoNode* lasso_saml_authority_binding_new ( ) GType lasso_saml_condition_abstract_get_type ( ) GType lasso_saml_conditions_get_type ( ) LassoSamlConditions* lasso_saml_conditions_new ( ) GType lasso_saml_name_identifier_get_type ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new_from_xmlNode ( xmlNode* xmlnode ) GType lasso_saml_statement_abstract_get_type ( ) GType lasso_saml_subject_confirmation_get_type ( ) LassoSamlSubjectConfirmation* lasso_saml_subject_confirmation_new ( ) GType lasso_saml_subject_get_type ( ) GType lasso_saml_subject_locality_get_type ( ) LassoNode* lasso_saml_subject_locality_new ( ) LassoNode* lasso_saml_subject_new ( ) GType lasso_saml_subject_statement_abstract_get_type ( ) GType lasso_saml_subject_statement_get_type ( ) LassoNode* lasso_saml_subject_statement_new ( ) GType lasso_samlp2_artifact_resolve_get_type ( ) LassoNode* lasso_samlp2_artifact_resolve_new ( ) GType lasso_samlp2_artifact_response_get_type ( ) LassoNode* lasso_samlp2_artifact_response_new ( ) GType lasso_samlp2_assertion_id_request_get_type ( ) LassoNode* lasso_samlp2_assertion_id_request_new ( ) GType lasso_samlp2_attribute_query_get_type ( ) LassoNode* lasso_samlp2_attribute_query_new ( ) GType lasso_samlp2_authn_query_get_type ( ) LassoNode* lasso_samlp2_authn_query_new ( ) GType lasso_samlp2_authn_request_get_type ( ) LassoNode* lasso_samlp2_authn_request_new ( ) GType lasso_samlp2_authz_decision_query_get_type ( ) LassoNode* lasso_samlp2_authz_decision_query_new ( ) GType lasso_samlp2_extensions_get_type ( ) LassoNode* lasso_samlp2_extensions_new ( ) GType lasso_samlp2_idp_entry_get_type ( ) LassoNode* lasso_samlp2_idp_entry_new ( ) GType lasso_samlp2_idp_list_get_type ( ) LassoNode* lasso_samlp2_idp_list_new ( ) GList* lasso_samlp2_logout_request_get_session_indexes ( LassoSamlp2LogoutRequest* logout_request ) GType lasso_samlp2_logout_request_get_type ( ) LassoNode* lasso_samlp2_logout_request_new ( ) None lasso_samlp2_logout_request_set_session_indexes ( LassoSamlp2LogoutRequest* logout_request, GList* session_index ) GType lasso_samlp2_logout_response_get_type ( ) LassoNode* lasso_samlp2_logout_response_new ( ) GType lasso_samlp2_manage_name_id_request_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_request_new ( ) GType lasso_samlp2_manage_name_id_response_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_response_new ( ) GType lasso_samlp2_name_id_mapping_request_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_request_new ( ) GType lasso_samlp2_name_id_mapping_response_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_response_new ( ) GType lasso_samlp2_name_id_policy_get_type ( ) LassoNode* lasso_samlp2_name_id_policy_new ( ) GType lasso_samlp2_request_abstract_get_type ( ) LassoNode* lasso_samlp2_request_abstract_new ( ) GType lasso_samlp2_requested_authn_context_get_type ( ) LassoNode* lasso_samlp2_requested_authn_context_new ( ) GType lasso_samlp2_response_get_type ( ) LassoNode* lasso_samlp2_response_new ( ) GType lasso_samlp2_scoping_get_type ( ) LassoNode* lasso_samlp2_scoping_new ( ) GType lasso_samlp2_status_code_get_type ( ) LassoNode* lasso_samlp2_status_code_new ( ) GType lasso_samlp2_status_detail_get_type ( ) LassoNode* lasso_samlp2_status_detail_new ( ) GType lasso_samlp2_status_get_type ( ) LassoNode* lasso_samlp2_status_new ( ) GType lasso_samlp2_status_response_get_type ( ) LassoNode* lasso_samlp2_status_response_new ( ) GType lasso_samlp2_subject_query_abstract_get_type ( ) LassoNode* lasso_samlp2_subject_query_abstract_new ( ) GType lasso_samlp2_terminate_get_type ( ) LassoNode* lasso_samlp2_terminate_new ( ) GType lasso_samlp_request_abstract_get_type ( ) GType lasso_samlp_request_get_type ( ) LassoNode* lasso_samlp_request_new ( ) None lasso_samlp_response_abstract_fill ( LassoSamlpResponseAbstract* response, const char* InResponseTo, const char* Recipient ) GType lasso_samlp_response_abstract_get_type ( ) GType lasso_samlp_response_get_type ( ) LassoNode* lasso_samlp_response_new ( ) GType lasso_samlp_status_code_get_type ( ) LassoSamlpStatusCode* lasso_samlp_status_code_new ( ) GType lasso_samlp_status_get_type ( ) LassoSamlpStatus* lasso_samlp_status_new ( ) lasso_error_t lasso_server_add_provider ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) lasso_error_t lasso_server_add_provider_from_buffer ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) None lasso_server_destroy ( LassoServer* server ) gchar* lasso_server_dump ( LassoServer* server ) LassoProvider* lasso_server_get_provider ( const LassoServer* server, const gchar* providerID ) GType lasso_server_get_type ( ) lasso_error_t lasso_server_load_affiliation ( LassoServer* server, const gchar* filename ) LassoServer* lasso_server_new ( const gchar* metadata, const gchar* private_key, const gchar* private_key_password, const gchar* certificate ) LassoServer* lasso_server_new_from_buffers ( const gchar* metadata, const gchar* private_key_content, const gchar* private_key_password, const gchar* certificate_content ) LassoServer* lasso_server_new_from_dump ( const gchar* dump ) lasso_error_t lasso_server_saml2_assertion_setup_signature ( LassoServer* server, LassoSaml2Assertion* saml2_assertion ) lasso_error_t lasso_server_set_encryption_private_key ( LassoServer* server, const gchar* filename_or_buffer ) lasso_error_t lasso_server_set_encryption_private_key_with_password ( LassoServer* server, const gchar* filename_or_buffer, const gchar* password ) lasso_error_t lasso_session_add_assertion ( LassoSession* session, const char* providerID, LassoNode* assertion ) None lasso_session_destroy ( LassoSession* session ) gchar* lasso_session_dump ( LassoSession* session ) LassoNode* lasso_session_get_assertion ( LassoSession* session, const gchar* providerID ) GList* lasso_session_get_assertions ( LassoSession* session, const char* provider_id ) gchar* lasso_session_get_provider_index ( LassoSession* session, gint index ) GType lasso_session_get_type ( ) gboolean lasso_session_is_empty ( LassoSession* session ) LassoSession* lasso_session_new ( ) LassoSession* lasso_session_new_from_dump ( const gchar* dump ) lasso_error_t lasso_session_remove_assertion ( LassoSession* session, const gchar* providerID ) None lasso_set_flag ( char* flag ) lasso_error_t lasso_shutdown ( ) GType lasso_soap_body_get_type ( ) LassoSoapBody* lasso_soap_body_new ( ) LassoSoapBody* lasso_soap_body_new_from_message ( const gchar* message ) GType lasso_soap_detail_get_type ( ) LassoSoapDetail* lasso_soap_detail_new ( ) LassoSoapDetail* lasso_soap_detail_new_from_message ( const gchar* message ) GType lasso_soap_envelope_get_type ( ) LassoSoapEnvelope* lasso_soap_envelope_new ( LassoSoapBody* body ) LassoSoapEnvelope* lasso_soap_envelope_new_from_message ( const gchar* message ) GType lasso_soap_fault_get_type ( ) LassoSoapFault* lasso_soap_fault_new ( ) LassoSoapFault* lasso_soap_fault_new_from_message ( const gchar* message ) LassoSoapFault* lasso_soap_fault_new_full ( const char* faultcode, const char* faultstring ) GType lasso_soap_header_get_type ( ) LassoSoapHeader* lasso_soap_header_new ( ) LassoSoapHeader* lasso_soap_header_new_from_message ( const gchar* message ) const char* lasso_strerror ( int error_code ) lasso-2.9.0/abi/PaxHeaders/abi-2.4.00000644000000000000000000000013013766621500013575 xustar0029 mtime=1608196928.71889494 30 atime=1754992978.149544894 29 ctime=1754993575.20113351 lasso-2.9.0/abi/abi-2.4.00000644000175000017500000022045413766621500015616 0ustar00bdauvergnebdauvergneBACKWARD_COMP_H LASSO_ASSERTION_QUERY_ERROR_ATTRIBUTE_REQUEST_ALREADY_EXIST LASSO_ASSERTION_QUERY_ERROR_NOT_AN_ATTRIBUTE_QUERY LASSO_ASSERTION_QUERY_REQUEST_TYPE_ASSERTION_ID LASSO_ASSERTION_QUERY_REQUEST_TYPE_ATTRIBUTE LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHN LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHZ_DECISION LASSO_ASSERTION_QUERY_REQUEST_TYPE_LAST LASSO_ASSERTION_QUERY_REQUEST_TYPE_UNSET LASSO_CERTIFICATE_ATTRIBUTE LASSO_CHECK_VERSIONABI_COMPATIBLE LASSO_CHECK_VERSION_EXACT LASSO_CHECK_VERSION_NUMERIC LASSO_DATA_SERVICE_ERROR_CANNOT_ADD_ITEM LASSO_DATA_SERVICE_ERROR_UNREGISTERED_DST LASSO_DEFEDERATION_ERROR_MISSING_NAME_IDENTIFIER LASSO_DISCOVERY_ERROR_FAILED_TO_BUILD_ENDPOINT_REFERENCE LASSO_DISCOVERY_ERROR_MISSING_REQUESTED_SERVICE LASSO_DISCOVERY_ERROR_SVC_METADATA_ASSOCIATION_ADD_FAILED LASSO_DISCOVERY_ERROR_SVC_METADATA_REGISTER_FAILED LASSO_DST_ERROR_EMPTY_REQUEST LASSO_DST_ERROR_MALFORMED_QUERY LASSO_DST_ERROR_MISSING_SERVICE_DATA LASSO_DST_ERROR_MODIFY_FAILED LASSO_DST_ERROR_MODIFY_PARTIALLY_FAILED LASSO_DST_ERROR_NEW_DATA_MISSING LASSO_DST_ERROR_NO_DATA LASSO_DST_ERROR_QUERY_FAILED LASSO_DST_ERROR_QUERY_NOT_FOUND LASSO_DST_ERROR_QUERY_PARTIALLY_FAILED LASSO_DS_ERROR_CA_CERT_CHAIN_LOAD_FAILED LASSO_DS_ERROR_CERTIFICATE_LOAD_FAILED LASSO_DS_ERROR_CONTEXT_CREATION_FAILED LASSO_DS_ERROR_DECRYPTION_FAILED LASSO_DS_ERROR_DECRYPTION_FAILED_MISSING_PRIVATE_KEY LASSO_DS_ERROR_DIGEST_COMPUTE_FAILED LASSO_DS_ERROR_ENCRYPTION_FAILED LASSO_DS_ERROR_INVALID_REFERENCE_FOR_SAML LASSO_DS_ERROR_INVALID_SIGALG LASSO_DS_ERROR_INVALID_SIGNATURE LASSO_DS_ERROR_KEYS_MNGR_CREATION_FAILED LASSO_DS_ERROR_KEYS_MNGR_INIT_FAILED LASSO_DS_ERROR_PRIVATE_KEY_LOAD_FAILED LASSO_DS_ERROR_PUBLIC_KEY_LOAD_FAILED LASSO_DS_ERROR_SIGNATURE_FAILED LASSO_DS_ERROR_SIGNATURE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TEMPLATE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TMPL_CREATION_FAILED LASSO_DS_ERROR_SIGNATURE_VERIFICATION_FAILED LASSO_DS_ERROR_TOO_MUCH_REFERENCES LASSO_DS_HREF LASSO_DS_PREFIX LASSO_DURATION_DAY LASSO_DURATION_HOUR LASSO_DURATION_MINUTE LASSO_DURATION_WEEK LASSO_ECP_HREF LASSO_ECP_PREFIX LASSO_ENCRYPTION_MODE_ASSERTION LASSO_ENCRYPTION_MODE_NAMEID LASSO_ENCRYPTION_MODE_NONE LASSO_ENCRYPTION_SYM_KEY_TYPE_3DES LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_128 LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_256 LASSO_ENCRYPTION_SYM_KEY_TYPE_DEFAULT LASSO_ENCRYTPION_SYM_KEY_TYPE_LAST LASSO_ERROR_CAST_FAILED LASSO_ERROR_OUT_OF_MEMORY LASSO_ERROR_UNDEFINED LASSO_ERROR_UNIMPLEMENTED LASSO_HTTP_METHOD_ANY LASSO_HTTP_METHOD_ARTIFACT_GET LASSO_HTTP_METHOD_ARTIFACT_POST LASSO_HTTP_METHOD_GET LASSO_HTTP_METHOD_IDP_INITIATED LASSO_HTTP_METHOD_LAST LASSO_HTTP_METHOD_NONE LASSO_HTTP_METHOD_PAOS LASSO_HTTP_METHOD_POST LASSO_HTTP_METHOD_REDIRECT LASSO_HTTP_METHOD_SOAP LASSO_IDWSF2_DISCOVERY_ERROR_DUPLICATE LASSO_IDWSF2_DISCOVERY_ERROR_FAILED LASSO_IDWSF2_DISCOVERY_ERROR_FORBIDDEN LASSO_IDWSF2_DISCOVERY_ERROR_LOGICAL_DUPLICATE LASSO_IDWSF2_DISCOVERY_ERROR_NOT_FOUND LASSO_IDWSF2_DISCOVERY_ERROR_NO_RESULTS LASSO_IDWSF2_DST_ERROR_DUPLICATE_ITEM LASSO_IDWSF2_DST_ERROR_ITEM_NOT_FOUND LASSO_IDWSF2_DST_ERROR_PARTIAL_FAILURE LASSO_IDWSF2_DST_ERROR_UNKNOWN_STATUS_CODE LASSO_LASSO_HREF LASSO_LASSO_PREFIX LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD_PROTECTED_TRANSPORT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PREVIOUS_SESSION LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SOFTWARE_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_TIME_SYNC_TOKEN LASSO_LIB_AUTHN_CONTEXT_COMPARISON_BETTER LASSO_LIB_AUTHN_CONTEXT_COMPARISON_EXACT LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MAXIMUM LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MINIMUM LASSO_LIB_CONSENT_INAPPLICABLE LASSO_LIB_CONSENT_OBTAINED LASSO_LIB_CONSENT_OBTAINED_CURRENT_EXPLICIT LASSO_LIB_CONSENT_OBTAINED_CURRENT_IMPLICIT LASSO_LIB_CONSENT_OBTAINED_PRIOR LASSO_LIB_CONSENT_UNAVAILABLE LASSO_LIB_HREF LASSO_LIB_MAJOR_VERSION_N LASSO_LIB_MINOR_VERSION_N LASSO_LIB_NAMEID_POLICY_TYPE_ANY LASSO_LIB_NAMEID_POLICY_TYPE_FEDERATED LASSO_LIB_NAMEID_POLICY_TYPE_NONE LASSO_LIB_NAMEID_POLICY_TYPE_ONE_TIME LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENTITYID LASSO_LIB_NAME_IDENTIFIER_FORMAT_FEDERATED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ONE_TIME LASSO_LIB_PREFIX LASSO_LIB_PROTOCOL_PROFILE_BRWS_ART LASSO_LIB_PROTOCOL_PROFILE_BRWS_LECP LASSO_LIB_PROTOCOL_PROFILE_BRWS_POST LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_NIM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_SOAP LASSO_LIB_STATUS_CODE_FEDERATION_DOES_NOT_EXIST LASSO_LIB_STATUS_CODE_INVALID_ASSERTION_CONSUMER_SERVICE_INDEX LASSO_LIB_STATUS_CODE_INVALID_SIGNATURE LASSO_LIB_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_LIB_STATUS_CODE_NO_AVAILABLEIDP LASSO_LIB_STATUS_CODE_NO_PASSIVE LASSO_LIB_STATUS_CODE_NO_SUPPORTEDIDP LASSO_LIB_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_LIB_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_LIB_STATUS_CODE_UNSIGNED_AUTHN_REQUEST LASSO_LIB_STATUS_CODE_UNSUPPORTED_PROFILE LASSO_LOGIN_ERROR_ASSERTION_DOES_NOT_MATCH_REQUEST_ID LASSO_LOGIN_ERROR_ASSERTION_REPLAY LASSO_LOGIN_ERROR_CONSENT_NOT_OBTAINED LASSO_LOGIN_ERROR_FEDERATION_NOT_FOUND LASSO_LOGIN_ERROR_INVALID_ASSERTION_SIGNATURE LASSO_LOGIN_ERROR_INVALID_NAMEIDPOLICY LASSO_LOGIN_ERROR_INVALID_SIGNATURE LASSO_LOGIN_ERROR_NO_DEFAULT_ENDPOINT LASSO_LOGIN_ERROR_REQUEST_DENIED LASSO_LOGIN_ERROR_STATUS_NOT_SUCCESS LASSO_LOGIN_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGIN_ERROR_UNSIGNED_AUTHN_REQUEST LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_ART LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_LECP LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_POST LASSO_LOGIN_PROTOCOL_PROFILE_REDIRECT LASSO_LOGOUT_ERROR_FEDERATION_NOT_FOUND LASSO_LOGOUT_ERROR_PARTIAL_LOGOUT LASSO_LOGOUT_ERROR_REQUEST_DENIED LASSO_LOGOUT_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGOUT_ERROR_UNSUPPORTED_PROFILE LASSO_MD_PROTOCOL_TYPE_ARTIFACT_RESOLUTION LASSO_MD_PROTOCOL_TYPE_ASSERTION_ID_REQUEST LASSO_MD_PROTOCOL_TYPE_ATTRIBUTE LASSO_MD_PROTOCOL_TYPE_AUTHN_QUERY LASSO_MD_PROTOCOL_TYPE_AUTHZ LASSO_MD_PROTOCOL_TYPE_FEDERATION_TERMINATION LASSO_MD_PROTOCOL_TYPE_LAST LASSO_MD_PROTOCOL_TYPE_MANAGE_NAME_ID LASSO_MD_PROTOCOL_TYPE_NAME_IDENTIFIER_MAPPING LASSO_MD_PROTOCOL_TYPE_REGISTER_NAME_IDENTIFIER LASSO_MD_PROTOCOL_TYPE_SINGLE_LOGOUT LASSO_MD_PROTOCOL_TYPE_SINGLE_SIGN_ON LASSO_MESSAGE_FORMAT_BASE64 LASSO_MESSAGE_FORMAT_ERROR LASSO_MESSAGE_FORMAT_QUERY LASSO_MESSAGE_FORMAT_SOAP LASSO_MESSAGE_FORMAT_UNKNOWN LASSO_MESSAGE_FORMAT_XML LASSO_MESSAGE_FORMAT_XSCHEMA_ERROR LASSO_METADATA_HREF LASSO_METADATA_PREFIX LASSO_NAME_IDENTIFIER_MAPPING_ERROR_FORBIDDEN_CALL_ON_THIS_SIDE LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_IDENTIFIER LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_NAMESPACE LASSO_PAOS_HREF LASSO_PAOS_PREFIX LASSO_PARAM_ERROR_BAD_TYPE_OR_NULL_OBJ LASSO_PARAM_ERROR_CHECK_FAILED LASSO_PARAM_ERROR_INVALID_VALUE LASSO_PARAM_ERROR_NON_INITIALIZED_OBJECT LASSO_PRIVATE_KEY_ATTRIBUTE LASSO_PRIVATE_KEY_PASSWORD_ATTRIBUTE LASSO_PRIVATE_STATUS_CODE_FAILED_TO_RESTORE_ARTIFACT LASSO_PROFILE_ERROR_BAD_IDENTITY_DUMP LASSO_PROFILE_ERROR_BAD_SESSION_DUMP LASSO_PROFILE_ERROR_BUILDING_MESSAGE_FAILED LASSO_PROFILE_ERROR_BUILDING_QUERY_FAILED LASSO_PROFILE_ERROR_BUILDING_REQUEST_FAILED LASSO_PROFILE_ERROR_BUILDING_RESPONSE_FAILED LASSO_PROFILE_ERROR_CANNOT_FIND_A_PROVIDER LASSO_PROFILE_ERROR_CANNOT_VERIFY_SIGNATURE LASSO_PROFILE_ERROR_ENDPOINT_INDEX_NOT_FOUND LASSO_PROFILE_ERROR_FEDERATION_NOT_FOUND LASSO_PROFILE_ERROR_IDENTITY_NOT_FOUND LASSO_PROFILE_ERROR_INVALID_ARTIFACT LASSO_PROFILE_ERROR_INVALID_ASSERTION LASSO_PROFILE_ERROR_INVALID_ASSERTION_CONDITIONS LASSO_PROFILE_ERROR_INVALID_HTTP_METHOD LASSO_PROFILE_ERROR_INVALID_ISSUER LASSO_PROFILE_ERROR_INVALID_MSG LASSO_PROFILE_ERROR_INVALID_POST_MSG LASSO_PROFILE_ERROR_INVALID_PROTOCOLPROFILE LASSO_PROFILE_ERROR_INVALID_QUERY LASSO_PROFILE_ERROR_INVALID_REQUEST LASSO_PROFILE_ERROR_INVALID_RESPONSE LASSO_PROFILE_ERROR_INVALID_SOAP_MSG LASSO_PROFILE_ERROR_ISSUER_IS_NOT_AN_IDP LASSO_PROFILE_ERROR_MISSING_ARTIFACT LASSO_PROFILE_ERROR_MISSING_ASSERTION LASSO_PROFILE_ERROR_MISSING_ENCRYPTION_PRIVATE_KEY LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE_ADDRESS LASSO_PROFILE_ERROR_MISSING_ISSUER LASSO_PROFILE_ERROR_MISSING_NAME_IDENTIFIER LASSO_PROFILE_ERROR_MISSING_REMOTE_PROVIDERID LASSO_PROFILE_ERROR_MISSING_REQUEST LASSO_PROFILE_ERROR_MISSING_RESOURCE_OFFERING LASSO_PROFILE_ERROR_MISSING_RESPONSE LASSO_PROFILE_ERROR_MISSING_SERVER LASSO_PROFILE_ERROR_MISSING_SERVICE_DESCRIPTION LASSO_PROFILE_ERROR_MISSING_SERVICE_INSTANCE LASSO_PROFILE_ERROR_MISSING_SERVICE_TYPE LASSO_PROFILE_ERROR_MISSING_STATUS_CODE LASSO_PROFILE_ERROR_MISSING_SUBJECT LASSO_PROFILE_ERROR_NAME_IDENTIFIER_NOT_FOUND LASSO_PROFILE_ERROR_REQUEST_DENIED LASSO_PROFILE_ERROR_RESPONSE_DOES_NOT_MATCH_REQUEST LASSO_PROFILE_ERROR_SESSION_NOT_FOUND LASSO_PROFILE_ERROR_STATUS_NOT_SUCCESS LASSO_PROFILE_ERROR_UNKNOWN_ISSUER LASSO_PROFILE_ERROR_UNKNOWN_PROFILE_URL LASSO_PROFILE_ERROR_UNKNOWN_PROVIDER LASSO_PROFILE_ERROR_UNSUPPORTED_BINDING LASSO_PROFILE_ERROR_UNSUPPORTED_PROFILE LASSO_PROFILE_SIGNATURE_HINT_FORBID LASSO_PROFILE_SIGNATURE_HINT_FORCE LASSO_PROFILE_SIGNATURE_HINT_MAYBE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_FORCE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_IGNORE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_LAST LASSO_PROFILE_SIGNATURE_VERIFY_HINT_MAYBE LASSO_PROTOCOL_LIBERTY_1_0 LASSO_PROTOCOL_LIBERTY_1_1 LASSO_PROTOCOL_LIBERTY_1_2 LASSO_PROTOCOL_NONE LASSO_PROTOCOL_SAML_2_0 LASSO_PROVIDER_ERROR_MISSING_PUBLIC_KEY LASSO_PROVIDER_ROLE_ALL LASSO_PROVIDER_ROLE_ANY LASSO_PROVIDER_ROLE_ATTRIBUTE_AUTHORITY LASSO_PROVIDER_ROLE_AUTHN_AUTHORITY LASSO_PROVIDER_ROLE_AUTHZ_AUTHORITY LASSO_PROVIDER_ROLE_BOTH LASSO_PROVIDER_ROLE_IDP LASSO_PROVIDER_ROLE_LAST LASSO_PROVIDER_ROLE_NONE LASSO_PROVIDER_ROLE_SP LASSO_PYTHON_HREF LASSO_REGISTRY_ERROR_KEY_EXISTS LASSO_REQUEST_TYPE_DEFEDERATION LASSO_REQUEST_TYPE_DISCO_MODIFY LASSO_REQUEST_TYPE_DISCO_QUERY LASSO_REQUEST_TYPE_DST_MODIFY LASSO_REQUEST_TYPE_DST_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_ASSOCIATION_ADD LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_REGISTER LASSO_REQUEST_TYPE_INVALID LASSO_REQUEST_TYPE_LECP LASSO_REQUEST_TYPE_LOGIN LASSO_REQUEST_TYPE_LOGOUT LASSO_REQUEST_TYPE_NAME_IDENTIFIER_MAPPING LASSO_REQUEST_TYPE_NAME_ID_MANAGEMENT LASSO_REQUEST_TYPE_NAME_REGISTRATION LASSO_REQUEST_TYPE_SASL_REQUEST LASSO_SAML2_ACTION_GHPP_GET LASSO_SAML2_ACTION_GHPP_HEAD LASSO_SAML2_ACTION_GHPP_POST LASSO_SAML2_ACTION_GHPP_PUT LASSO_SAML2_ACTION_NAMESPACE_GHPP LASSO_SAML2_ACTION_NAMESPACE_RWEDC LASSO_SAML2_ACTION_NAMESPACE_RWEDC_NEGATION LASSO_SAML2_ACTION_NAMESPACE_UNIX LASSO_SAML2_ACTION_RWEDC_CONTROL LASSO_SAML2_ACTION_RWEDC_DELETE LASSO_SAML2_ACTION_RWEDC_EXECUTE LASSO_SAML2_ACTION_RWEDC_NEGATION LASSO_SAML2_ACTION_RWEDC_READ LASSO_SAML2_ACTION_RWEDC_WRITE LASSO_SAML2_ASSERTION_HREF LASSO_SAML2_ASSERTION_INDETERMINATE LASSO_SAML2_ASSERTION_INVALID LASSO_SAML2_ASSERTION_PREFIX LASSO_SAML2_ASSERTION_VALID LASSO_SAML2_ATTRIBUTE_NAME_EPR LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_BASIC LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_UNSPECIFIED LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_URI LASSO_SAML2_ATTRIBUTE_PROFILE_BASIC LASSO_SAML2_ATTRIBUTE_PROFILE_DCE LASSO_SAML2_ATTRIBUTE_PROFILE_UUID LASSO_SAML2_ATTRIBUTE_PROFILE_X500 LASSO_SAML2_AUTHN_CONTEXT_AUTHENTICATED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_KERBEROS LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_NOMAD_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_PASSWORD_PROTECTED_TRANSPORT LASSO_SAML2_AUTHN_CONTEXT_PERSONALIZED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PGP LASSO_SAML2_AUTHN_CONTEXT_PREVIOUS_SESSION LASSO_SAML2_AUTHN_CONTEXT_SECURE_REMOTE_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD_PKI LASSO_SAML2_AUTHN_CONTEXT_SOFTWARE_PKI LASSO_SAML2_AUTHN_CONTEXT_SPKI LASSO_SAML2_AUTHN_CONTEXT_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_TIME_SYNC_TOKEN LASSO_SAML2_AUTHN_CONTEXT_TLS_CLIENT LASSO_SAML2_AUTHN_CONTEXT_UNSPECIFIED LASSO_SAML2_AUTHN_CONTEXT_X509 LASSO_SAML2_AUTHN_CONTEXT_XMLDSIG LASSO_SAML2_CONFIRMATION_METHOD_BEARER LASSO_SAML2_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML2_CONSENT_EXPLICIT LASSO_SAML2_CONSENT_IMPLICIT LASSO_SAML2_CONSENT_INAPPLICABLE LASSO_SAML2_CONSENT_OBTAINED LASSO_SAML2_CONSENT_PRIOR LASSO_SAML2_CONSENT_UNAVAILABLE LASSO_SAML2_DEFLATE_ENCODING LASSO_SAML2_FIELD_ARTIFACT LASSO_SAML2_FIELD_ENCODING LASSO_SAML2_FIELD_RELAYSTATE LASSO_SAML2_FIELD_REQUEST LASSO_SAML2_FIELD_RESPONSE LASSO_SAML2_FIELD_SIGALG LASSO_SAML2_FIELD_SIGNATURE LASSO_SAML2_METADATA_BINDING_ARTIFACT LASSO_SAML2_METADATA_BINDING_PAOS LASSO_SAML2_METADATA_BINDING_POST LASSO_SAML2_METADATA_BINDING_REDIRECT LASSO_SAML2_METADATA_BINDING_SOAP LASSO_SAML2_METADATA_BINDING_URI LASSO_SAML2_METADATA_HREF LASSO_SAML2_METADATA_PREFIX LASSO_SAML2_NAME_IDENTIFIER_FORMAT_EMAIL LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENTITY LASSO_SAML2_NAME_IDENTIFIER_FORMAT_KERBEROS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_PERSISTENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_TRANSIENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_UNSPECIFIED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_WINDOWS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_X509 LASSO_SAML2_PROTOCOL_HREF LASSO_SAML2_PROTOCOL_PREFIX LASSO_SAML2_STATUS_CODE_AUTHN_FAILED LASSO_SAML2_STATUS_CODE_INVALID_ATTR_NAME LASSO_SAML2_STATUS_CODE_INVALID_NAME_ID_POLICY LASSO_SAML2_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_SAML2_STATUS_CODE_NO_AVAILABLE_IDP LASSO_SAML2_STATUS_CODE_NO_PASSIVE LASSO_SAML2_STATUS_CODE_NO_SUPPORTED_IDP LASSO_SAML2_STATUS_CODE_PARTIAL_LOGOUT LASSO_SAML2_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_SAML2_STATUS_CODE_REQUESTER LASSO_SAML2_STATUS_CODE_REQUEST_DENIED LASSO_SAML2_STATUS_CODE_REQUEST_UNSUPPORTED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML2_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML2_STATUS_CODE_RESPONDER LASSO_SAML2_STATUS_CODE_SUCCESS LASSO_SAML2_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML2_STATUS_CODE_UNKNOWN_ATTR_PROFILE LASSO_SAML2_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_SAML2_STATUS_CODE_UNSUPPORTED_BINDING LASSO_SAML2_STATUS_CODE_VERSION_MISMATCH LASSO_SAML_ASSERTION_HREF LASSO_SAML_ASSERTION_PREFIX LASSO_SAML_AUTHENTICATION_METHODS_PKI LASSO_SAML_AUTHENTICATION_METHOD_HARDWARE_TOKEN LASSO_SAML_AUTHENTICATION_METHOD_KERBEROS LASSO_SAML_AUTHENTICATION_METHOD_LIBERTY LASSO_SAML_AUTHENTICATION_METHOD_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_PGP LASSO_SAML_AUTHENTICATION_METHOD_SECURE_REMOTE_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_SMARTCARD_PKI LASSO_SAML_AUTHENTICATION_METHOD_SOFTWARE_PKI LASSO_SAML_AUTHENTICATION_METHOD_UNSPECIFIED LASSO_SAML_AUTHENTICATION_METHOD_XKMS LASSO_SAML_AUTHENTICATION_METHOD_XMLD_SIG LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT01 LASSO_SAML_CONFIRMATION_METHOD_BEARER LASSO_SAML_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML_CONFIRMATION_METHOD_SENDER_VOUCHES LASSO_SAML_MAJOR_VERSION_N LASSO_SAML_MINOR_VERSION_N LASSO_SAML_PROTOCOL_HREF LASSO_SAML_PROTOCOL_PREFIX LASSO_SAML_STATUS_CODE_REQUESTER LASSO_SAML_STATUS_CODE_REQUEST_DENIED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML_STATUS_CODE_RESPONDER LASSO_SAML_STATUS_CODE_SUCCESS LASSO_SAML_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML_STATUS_CODE_VERSION_MISMATCH LASSO_SERVER_ERROR_ADD_PROVIDER_FAILED LASSO_SERVER_ERROR_ADD_PROVIDER_PROTOCOL_MISMATCH LASSO_SERVER_ERROR_INVALID_XML LASSO_SERVER_ERROR_NO_PROVIDER_LOADED LASSO_SERVER_ERROR_PROVIDER_NOT_FOUND LASSO_SERVER_ERROR_SET_ENCRYPTION_PRIVATE_KEY_FAILED LASSO_SERVER_LOAD_METADATA_FLAG_CHECK_ENTITIES_DESCRIPTOR_SIGNATURE LASSO_SERVER_LOAD_METADATA_FLAG_CHECK_ENTITY_DESCRIPTOR_SIGNATURE LASSO_SERVER_LOAD_METADATA_FLAG_DEFAULT LASSO_SERVER_LOAD_METADATA_FLAG_INHERIT_SIGNATURE LASSO_SIGNATURE_METHOD_ATTRIBUTE LASSO_SIGNATURE_METHOD_DSA_SHA1 LASSO_SIGNATURE_METHOD_HMAC_SHA1 LASSO_SIGNATURE_METHOD_LAST LASSO_SIGNATURE_METHOD_NONE LASSO_SIGNATURE_METHOD_RSA_SHA1 LASSO_SIGNATURE_TYPE_ATTRIBUTE LASSO_SIGNATURE_TYPE_LAST LASSO_SIGNATURE_TYPE_NONE LASSO_SIGNATURE_TYPE_SIMPLE LASSO_SIGNATURE_TYPE_WITHX509 LASSO_SOAP_ENV_ACTOR LASSO_SOAP_ENV_HREF LASSO_SOAP_ENV_PREFIX LASSO_SOAP_ERROR_MISSING_BODY LASSO_SOAP_ERROR_MISSING_ENVELOPE LASSO_SOAP_ERROR_MISSING_HEADER LASSO_SOAP_ERROR_MISSING_SOAP_FAULT_DETAIL LASSO_SOAP_ERROR_REDIRECT_REQUEST_FAULT LASSO_SOAP_FAULT_CODE_CLIENT LASSO_SOAP_FAULT_CODE_MUST_UNDERSTAND LASSO_SOAP_FAULT_CODE_SERVER LASSO_SOAP_FAULT_CODE_VERSION_MISMATCH LASSO_SOAP_FAULT_REDIRECT_REQUEST LASSO_WSF_ENABLED LASSO_WSF_PROFILE_ERROR_INVALID_OR_MISSING_REFERENCE_TO_MESSAGE_ID LASSO_WSF_PROFILE_ERROR_MISSING_ASSERTION_ID LASSO_WSF_PROFILE_ERROR_MISSING_CORRELATION LASSO_WSF_PROFILE_ERROR_MISSING_CREDENTIAL_REF LASSO_WSF_PROFILE_ERROR_MISSING_DESCRIPTION LASSO_WSF_PROFILE_ERROR_MISSING_ENDPOINT LASSO_WSF_PROFILE_ERROR_MISSING_RESOURCE_ID LASSO_WSF_PROFILE_ERROR_MISSING_SECURITY LASSO_WSF_PROFILE_ERROR_MISSING_SENDER_ID LASSO_WSF_PROFILE_ERROR_REDIRECT_REQUEST LASSO_WSF_PROFILE_ERROR_REDIRECT_REQUEST_UNSUPPORTED_BY_REQUESTER LASSO_WSF_PROFILE_ERROR_SECURITY_MECHANISM_CHECK_FAILED LASSO_WSF_PROFILE_ERROR_SERVER_INTERACTION_REQUIRED LASSO_WSF_PROFILE_ERROR_SERVER_INTERACTION_REQUIRED_FOR_DATA LASSO_WSF_PROFILE_ERROR_SOAP_FAULT LASSO_WSF_PROFILE_ERROR_UNKNOWN_STATUS_CODE LASSO_WSF_PROFILE_ERROR_UNSUPPORTED_SECURITY_MECHANISM LASSO_WSSEC_ERROR_BAD_PASSWORD LASSO_WSSEC_ERROR_MISSING_SECURITY_TOKEN LASSO_WSUTIL1_HREF LASSO_WSUTIL1_PREFIX LASSO_XMLENC_ERROR_INVALID_ENCRYPTED_DATA LASSO_XMLENC_HREF LASSO_XMLENC_PREFIX LASSO_XML_ERROR_ATTR_NOT_FOUND LASSO_XML_ERROR_ATTR_VALUE_NOT_FOUND LASSO_XML_ERROR_INVALID_FILE LASSO_XML_ERROR_MISSING_NAMESPACE LASSO_XML_ERROR_NODE_CONTENT_NOT_FOUND LASSO_XML_ERROR_NODE_NOT_FOUND LASSO_XML_ERROR_OBJECT_CONSTRUCTION_FAILED LASSO_XML_ERROR_SCHEMA_INVALID_FRAGMENT LASSO_XSI_HREF LASSO_XSI_PREFIX struct LassoAssertionQuery { LassoAssertionQueryPrivate* private_data } LassoAssertionQueryRequestType LassoCheckVersionMode struct LassoDefederation { } struct LassoDsKeyInfo { LassoDsKeyValue* KeyValue } struct LassoDsKeyValue { LassoDsRsaKeyValue* RSAKeyValue } struct LassoDsRsaKeyValue { char* Modulus, char* Exponent } struct LassoDsX509Data { LassoDsX509DataPrivate* private_data } struct LassoEcp { gchar* assertionConsumerURL, LassoEcpPrivate* private_data } LassoEncryptionMode LassoEncryptionSymKeyType struct LassoFederation { gchar* remote_providerID, LassoNode* local_nameIdentifier, LassoNode* remote_nameIdentifier, LassoFederationPrivate* private_data } LassoHttpMethod struct LassoIdentity { GHashTable* federations, gboolean is_dirty, LassoIdentityPrivate* private_data } struct LassoKey { LassoKeyPrivate* private_data } struct LassoLecp { LassoLibAuthnRequestEnvelope* authnRequestEnvelope, LassoLibAuthnResponseEnvelope* authnResponseEnvelope, char* assertionConsumerServiceURL } struct LassoLibAssertion { char* InResponseTo } struct LassoLibAuthenticationStatement { LassoLibAuthnContext* AuthnContext, char* ReauthenticateOnOrAfter, char* SessionIndex } struct LassoLibAuthnContext { char* AuthnContextClassRef, char* AuthnContextStatementRef } struct LassoLibAuthnRequest { GList* Extension, char* ProviderID, char* AffiliationID, char* NameIDPolicy, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolProfile, char* AssertionConsumerServiceID, LassoLibRequestAuthnContext* RequestAuthnContext, char* RelayState, LassoLibScoping* Scoping, char* consent } struct LassoLibAuthnRequestEnvelope { GList* Extension, LassoLibAuthnRequest* AuthnRequest, char* ProviderID, char* ProviderName, char* AssertionConsumerServiceURL, LassoLibIDPList* IDPList, gboolean IsPassive } struct LassoLibAuthnResponse { GList* Extension, char* ProviderID, char* RelayState, char* consent } struct LassoLibAuthnResponseEnvelope { GList* Extension, LassoLibAuthnResponse* AuthnResponse, char* AssertionConsumerServiceURL } struct LassoLibFederationTerminationNotification { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* consent, char* RelayState } struct LassoLibIDPEntries { GList* IDPEntry } struct LassoLibIDPEntry { char* ProviderID, char* ProviderName, char* Loc } struct LassoLibIDPList { LassoLibIDPEntries* IDPEntries, char* GetComplete } struct LassoLibLogoutRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* SessionIndex, char* RelayState, char* consent, char* NotOnOrAfter } struct LassoLibLogoutResponse { } struct LassoLibNameIdentifierMappingRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* TargetNamespace, char* consent } struct LassoLibNameIdentifierMappingResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, LassoSamlNameIdentifier* NameIdentifier } struct LassoLibRegisterNameIdentifierRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* IDPProvidedNameIdentifier, LassoSamlNameIdentifier* SPProvidedNameIdentifier, LassoSamlNameIdentifier* OldProvidedNameIdentifier, char* RelayState } struct LassoLibRegisterNameIdentifierResponse { } struct LassoLibRequestAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextStatementRef, char* AuthnContextComparison } struct LassoLibScoping { int ProxyCount, LassoLibIDPList* IDPList } struct LassoLibStatusResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, char* RelayState } struct LassoLibSubject { LassoSamlNameIdentifier* IDPProvidedNameIdentifier } struct LassoLogin { LassoLoginProtocolProfile protocolProfile, gchar* assertionArtifact, LassoSamlAssertion* assertion, gchar* nameIDPolicy, LassoHttpMethod http_method, LassoLoginPrivate* private_data } LassoLoginProtocolProfile struct LassoLogout { LassoNode* initial_request, LassoNode* initial_response, gchar* initial_remote_providerID, gint providerID_index, LassoHttpMethod initial_http_request_method, LassoLogoutPrivate* private_data } LassoMdProtocolType LassoMessageFormat struct LassoMiscTextNode { char* content, char* name, char* ns_href, char* ns_prefix, gboolean text_child } struct LassoNameIdManagement { } struct LassoNameIdentifierMapping { gchar* targetNameIdentifier } struct LassoNameRegistration { LassoSamlNameIdentifier* oldNameIdentifier } struct LassoNode { } struct LassoProfile { LassoServer* server, LassoNode* request, LassoNode* response, LassoNode* nameIdentifier, gchar* remote_providerID, gchar* msg_url, gchar* msg_body, gchar* msg_relayState, LassoIdentity* identity, LassoSession* session, LassoHttpMethod http_request_method, gint signature_status, LassoProfilePrivate* private_data } LassoProfileSignatureHint LassoProfileSignatureVerifyHint LassoProtocolConformance struct LassoProvider { gchar* ProviderID, LassoProviderRole role, char* metadata_filename, gchar* public_key, gchar* ca_cert_chain, LassoProviderPrivate* private_data } LassoProviderRole LassoRequestType struct LassoSaml2Action { char* content, char* Namespace } struct LassoSaml2Advice { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2Assertion { LassoSaml2NameID* Issuer, LassoSaml2Subject* Subject, LassoSaml2Conditions* Conditions, LassoSaml2Advice* Advice, GList* Statement, GList* AuthnStatement, GList* AuthzDecisionStatement, GList* AttributeStatement, char* Version, char* ID, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file, gboolean encryption_activated, char* encryption_public_key_str, LassoEncryptionSymKeyType encryption_sym_key_type } LassoSaml2AssertionValidationState struct LassoSaml2Attribute { GList* AttributeValue, char* Name, char* NameFormat, char* FriendlyName } struct LassoSaml2AttributeStatement { GList* Attribute, GList* EncryptedAttribute } struct LassoSaml2AttributeValue { GList* any } struct LassoSaml2AudienceRestriction { char* Audience } struct LassoSaml2AuthnContext { char* AuthnContextClassRef, char* AuthnContextDeclRef, char* AuthenticatingAuthority } struct LassoSaml2AuthnStatement { LassoSaml2SubjectLocality* SubjectLocality, LassoSaml2AuthnContext* AuthnContext, char* AuthnInstant, char* SessionIndex, char* SessionNotOnOrAfter } struct LassoSaml2AuthzDecisionStatement { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource, char* Decision } struct LassoSaml2BaseIDAbstract { char* NameQualifier, char* SPNameQualifier } struct LassoSaml2ConditionAbstract { } struct LassoSaml2Conditions { GList* Condition, GList* AudienceRestriction, GList* OneTimeUse, GList* ProxyRestriction, char* NotBefore, char* NotOnOrAfter } struct LassoSaml2EncryptedElement { xmlNode* EncryptedData, GList* EncryptedKey, LassoNode* original_data } struct LassoSaml2Evidence { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2KeyInfoConfirmationData { } struct LassoSaml2KeyInfoConfirmationDataType { LassoSaml2KeyInfoConfirmationDataTypePrivate* private_data } struct LassoSaml2NameID { char* content, char* Format, char* SPProvidedID, char* NameQualifier, char* SPNameQualifier } struct LassoSaml2OneTimeUse { } struct LassoSaml2ProxyRestriction { char* Audience, char* Count } struct LassoSaml2StatementAbstract { } struct LassoSaml2Subject { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmation* SubjectConfirmation } struct LassoSaml2SubjectConfirmation { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmationData* SubjectConfirmationData, char* Method } struct LassoSaml2SubjectConfirmationData { char* NotBefore, char* NotOnOrAfter, char* Recipient, char* InResponseTo, char* Address } struct LassoSaml2SubjectLocality { char* Address, char* DNSName } struct LassoSamlAdvice { GList* AssertionIDReference, LassoSamlAssertion* Assertion } struct LassoSamlAssertion { LassoSamlConditions* Conditions, LassoSamlAdvice* Advice, LassoSamlSubjectStatement* SubjectStatement, LassoSamlAuthenticationStatement* AuthenticationStatement, LassoSamlAttributeStatement* AttributeStatement, int MajorVersion, int MinorVersion, char* AssertionID, char* Issuer, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlAttribute { gchar* attributeName, gchar* attributeNameSpace, GList* AttributeValue } struct LassoSamlAttributeDesignator { char* AttributeName, char* AttributeNamespace } struct LassoSamlAttributeStatement { GList* Attribute } struct LassoSamlAttributeValue { GList* any } struct LassoSamlAudienceRestrictionCondition { GList* Audience } struct LassoSamlAuthenticationStatement { LassoSamlSubjectLocality* SubjectLocality, GList* AuthorityBinding, char* AuthenticationMethod, char* AuthenticationInstant } struct LassoSamlAuthorityBinding { char* AuthorityKind, char* Location, char* Binding } struct LassoSamlConditionAbstract { } struct LassoSamlConditions { GList* Condition, GList* AudienceRestrictionCondition, char* NotBefore, char* NotOnOrAfter } struct LassoSamlNameIdentifier { char* NameQualifier, char* Format, char* content } struct LassoSamlStatementAbstract { } struct LassoSamlSubject { LassoSamlNameIdentifier* NameIdentifier, LassoSamlSubjectConfirmation* SubjectConfirmation, LassoSaml2EncryptedElement* EncryptedNameIdentifier } struct LassoSamlSubjectConfirmation { GList* ConfirmationMethod, char* SubjectConfirmationData, LassoDsKeyInfo* KeyInfo } struct LassoSamlSubjectLocality { char* IPAddress, char* DNSAddress } struct LassoSamlSubjectStatement { } struct LassoSamlSubjectStatementAbstract { LassoSamlSubject* Subject } struct LassoSamlp2ArtifactResolve { char* Artifact } struct LassoSamlp2ArtifactResponse { LassoNode* any } struct LassoSamlp2AssertionIDRequest { char* AssertionIDRef } struct LassoSamlp2AttributeQuery { GList* Attribute } struct LassoSamlp2AuthnQuery { LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, char* SessionIndex } struct LassoSamlp2AuthnRequest { LassoSaml2Subject* Subject, LassoSamlp2NameIDPolicy* NameIDPolicy, LassoSaml2Conditions* Conditions, LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, LassoSamlp2Scoping* Scoping, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolBinding, int AssertionConsumerServiceIndex, char* AssertionConsumerServiceURL, int AttributeConsumingServiceIndex, char* ProviderName, G_GNUC_DEPRECATED char } struct LassoSamlp2AuthzDecisionQuery { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource } struct LassoSamlp2Extensions { } struct LassoSamlp2IDPEntry { char* ProviderID, char* Name, char* Loc } struct LassoSamlp2IDPList { LassoSamlp2IDPEntry* IDPEntry, char* GetComplete } struct LassoSamlp2LogoutRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* SessionIndex, char* Reason, char* NotOnOrAfter, G_GNUC_DEPRECATED char } struct LassoSamlp2LogoutResponse { G_GNUC_DEPRECATED char } struct LassoSamlp2ManageNameIDRequest { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* NewID, LassoSaml2EncryptedElement* NewEncryptedID, LassoSamlp2Terminate* Terminate } struct LassoSamlp2ManageNameIDResponse { } struct LassoSamlp2NameIDMappingRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSamlp2NameIDPolicy* NameIDPolicy } struct LassoSamlp2NameIDMappingResponse { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID } struct LassoSamlp2NameIDPolicy { char* Format, char* SPNameQualifier, gboolean AllowCreate } struct LassoSamlp2RequestAbstract { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, char* ID, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2RequestedAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextDeclRef, char* Comparison } struct LassoSamlp2Response { GList* Assertion, GList* EncryptedAssertion } struct LassoSamlp2Scoping { LassoSamlp2IDPList* IDPList, char* RequesterID, char* ProxyCount } struct LassoSamlp2Status { LassoSamlp2StatusCode* StatusCode, char* StatusMessage, LassoSamlp2StatusDetail* StatusDetail } struct LassoSamlp2StatusCode { LassoSamlp2StatusCode* StatusCode, char* Value } struct LassoSamlp2StatusDetail { } struct LassoSamlp2StatusResponse { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, LassoSamlp2Status* Status, char* ID, char* InResponseTo, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2SubjectQueryAbstract { LassoSaml2Subject* Subject } struct LassoSamlp2Terminate { } struct LassoSamlpRequest { char* AssertionArtifact } struct LassoSamlpRequestAbstract { GList* RespondWith, char* RequestID, int MajorVersion, int MinorVersion, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpResponse { LassoSamlpStatus* Status, GList* Assertion } struct LassoSamlpResponseAbstract { char* ResponseID, char* InResponseTo, int MajorVersion, int MinorVersion, char* IssueInstant, char* Recipient, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpStatus { LassoSamlpStatusCode* StatusCode, char* StatusMessage } struct LassoSamlpStatusCode { LassoSamlpStatusCode* StatusCode, char* Value } struct LassoServer { GHashTable* providers, GHashTable* services, gchar* private_key, gchar* private_key_password, gchar* certificate, LassoSignatureMethod signature_method, LassoServerPrivate* private_data } LassoServerLoadMetadataFlag struct LassoSession { GHashTable* assertions, gboolean is_dirty, LassoSessionPrivate* private_data } LassoSignatureMethod LassoSignatureType struct LassoSoapBody { GList* any, gchar* Id } struct LassoSoapDetail { GList* any } struct LassoSoapEnvelope { LassoSoapHeader* Header, LassoSoapBody* Body } struct LassoSoapFault { gchar* faultcode, gchar* faultstring, GList* faultactor, LassoSoapDetail* Detail } struct LassoSoapHeader { GList* Other } lasso_error_t lasso_assertion_query_add_attribute_request ( LassoAssertionQuery* assertion_query, char* format, char* name ) lasso_error_t lasso_assertion_query_build_request_msg ( LassoAssertionQuery* assertion_query ) lasso_error_t lasso_assertion_query_build_response_msg ( LassoAssertionQuery* assertion_query ) None lasso_assertion_query_destroy ( LassoAssertionQuery* assertion_query ) LassoAssertionQueryRequestType lasso_assertion_query_get_request_type ( LassoAssertionQuery* assertion_query ) GType lasso_assertion_query_get_type ( ) lasso_error_t lasso_assertion_query_init_request ( LassoAssertionQuery* assertion_query, char* remote_provider_id, LassoHttpMethod http_method, LassoAssertionQueryRequestType query_request_type ) LassoAssertionQuery* lasso_assertion_query_new ( LassoServer* server ) lasso_error_t lasso_assertion_query_process_request_msg ( LassoAssertionQuery* assertion_query, gchar* request_msg ) lasso_error_t lasso_assertion_query_process_response_msg ( LassoAssertionQuery* assertion_query, gchar* response_msg ) lasso_error_t lasso_assertion_query_validate_request ( LassoAssertionQuery* assertion_query ) char* lasso_build_unique_id ( unsigned int size ) int lasso_check_version ( int major, int minor, int subminor, LassoCheckVersionMode mode ) lasso_error_t lasso_defederation_build_notification_msg ( LassoDefederation* defederation ) None lasso_defederation_destroy ( LassoDefederation* defederation ) GType lasso_defederation_get_type ( ) lasso_error_t lasso_defederation_init_notification ( LassoDefederation* defederation, gchar* remote_providerID, LassoHttpMethod http_method ) LassoDefederation* lasso_defederation_new ( LassoServer* server ) lasso_error_t lasso_defederation_process_notification_msg ( LassoDefederation* defederation, gchar* notification_msg ) lasso_error_t lasso_defederation_validate_notification ( LassoDefederation* defederation ) GType lasso_ds_key_info_get_type ( ) LassoDsKeyInfo* lasso_ds_key_info_new ( ) GType lasso_ds_key_value_get_type ( ) LassoDsX509Data* lasso_ds_key_value_get_x509_data ( LassoDsKeyValue* key_value ) LassoDsKeyValue* lasso_ds_key_value_new ( ) None lasso_ds_key_value_set_x509_data ( LassoDsKeyValue* key_value, LassoDsX509Data* x509_data ) GType lasso_ds_rsa_key_value_get_type ( ) LassoDsRsaKeyValue* lasso_ds_rsa_key_value_new ( ) const char* lasso_ds_x509_data_get_certificate ( LassoDsX509Data* x509_data ) const char* lasso_ds_x509_data_get_crl ( LassoDsX509Data* x509_data ) const char* lasso_ds_x509_data_get_subject_name ( LassoDsX509Data* x509_data ) GType lasso_ds_x509_data_get_type ( ) LassoDsX509Data* lasso_ds_x509_data_new ( ) None lasso_ds_x509_data_set_certificate ( LassoDsX509Data* x509_data, const char* certificate ) None lasso_ds_x509_data_set_crl ( LassoDsX509Data* x509_data, const char* crl ) None lasso_ds_x509_data_set_subject_name ( LassoDsX509Data* x509_data, const char* subject_name ) None lasso_ecp_destroy ( LassoEcp* ecp ) GType lasso_ecp_get_type ( ) LassoEcp* lasso_ecp_new ( LassoServer* server ) lasso_error_t lasso_ecp_process_authn_request_msg ( LassoEcp* ecp, const char* authn_request_msg ) lasso_error_t lasso_ecp_process_response_msg ( LassoEcp* ecp, const char* response_msg ) None lasso_federation_build_local_name_identifier ( LassoFederation* federation, const gchar* nameQualifier, const gchar* format, const gchar* content ) None lasso_federation_destroy ( LassoFederation* federation ) GType lasso_federation_get_type ( ) LassoFederation* lasso_federation_new ( const gchar* remote_providerID ) gboolean lasso_federation_verify_name_identifier ( LassoFederation* federation, LassoNode* name_identifier ) char* lasso_get_prefix_for_dst_service_href ( const char* href ) gchar* lasso_get_prefix_for_idwsf2_dst_service_href ( const gchar* href ) None lasso_identity_destroy ( LassoIdentity* identity ) gchar* lasso_identity_dump ( LassoIdentity* identity ) LassoFederation* lasso_identity_get_federation ( LassoIdentity* identity, const char* providerID ) GType lasso_identity_get_type ( ) LassoIdentity* lasso_identity_new ( ) LassoIdentity* lasso_identity_new_from_dump ( const gchar* dump ) lasso_error_t lasso_init ( ) GType lasso_key_get_type ( ) LassoKey* lasso_key_new_for_signature_from_base64_string ( char* base64_string, char* password, LassoSignatureMethod signature_method, char* certificate ) LassoKey* lasso_key_new_for_signature_from_file ( char* filename_or_buffer, char* password, LassoSignatureMethod signature_method, char* certificate ) char* lasso_key_query_sign ( LassoKey* key, const char* query ) lasso_error_t lasso_key_query_verify ( LassoKey* key, const char* query ) xmlNode* lasso_key_saml2_xml_sign ( LassoKey* key, const char* id, xmlNode* document ) lasso_error_t lasso_key_saml2_xml_verify ( LassoKey* key, char* id, xmlNode* document ) lasso_error_t lasso_lecp_build_authn_request_envelope_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_request_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_response_envelope_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_response_msg ( LassoLecp* lecp ) None lasso_lecp_destroy ( LassoLecp* lecp ) GType lasso_lecp_get_type ( ) lasso_error_t lasso_lecp_init_authn_request ( LassoLecp* lecp, const char* remote_providerID ) LassoLecp* lasso_lecp_new ( LassoServer* server ) lasso_error_t lasso_lecp_process_authn_request_envelope_msg ( LassoLecp* lecp, const char* request_msg ) lasso_error_t lasso_lecp_process_authn_request_msg ( LassoLecp* lecp, const char* authn_request_msg ) lasso_error_t lasso_lecp_process_authn_response_envelope_msg ( LassoLecp* lecp, const char* response_msg ) GType lasso_lib_assertion_get_type ( ) LassoLibAssertion* lasso_lib_assertion_new ( ) LassoLibAssertion* lasso_lib_assertion_new_full ( const char* issuer, const char* requestID, const char* audience, const char* notBefore, const char* notOnOrAfter ) GType lasso_lib_authentication_statement_get_type ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new_full ( const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, LassoSamlNameIdentifier* sp_identifier, LassoSamlNameIdentifier* idp_identifier ) GType lasso_lib_authn_context_get_type ( ) LassoNode* lasso_lib_authn_context_new ( ) GType lasso_lib_authn_request_envelope_get_type ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new_full ( LassoLibAuthnRequest* authnRequest, char* providerID, char* assertionConsumerServiceURL ) GType lasso_lib_authn_request_get_type ( ) LassoLibAuthnRequest* lasso_lib_authn_request_new ( ) GType lasso_lib_authn_response_envelope_get_type ( ) LassoLibAuthnResponseEnvelope* lasso_lib_authn_response_envelope_new ( LassoLibAuthnResponse* response, char* assertionConsumerServiceURL ) GType lasso_lib_authn_response_get_type ( ) LassoNode* lasso_lib_authn_response_new ( char* providerID, LassoLibAuthnRequest* request ) GType lasso_lib_federation_termination_notification_get_type ( ) LassoNode* lasso_lib_federation_termination_notification_new ( ) LassoNode* lasso_lib_federation_termination_notification_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_idp_entries_get_type ( ) LassoNode* lasso_lib_idp_entries_new ( ) GType lasso_lib_idp_entry_get_type ( ) LassoNode* lasso_lib_idp_entry_new ( ) GType lasso_lib_idp_list_get_type ( ) LassoNode* lasso_lib_idp_list_new ( ) GList* lasso_lib_logout_request_get_session_indexes ( LassoLibLogoutRequest* lib_logout_request ) GType lasso_lib_logout_request_get_type ( ) LassoNode* lasso_lib_logout_request_new ( ) LassoNode* lasso_lib_logout_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) None lasso_lib_logout_request_set_session_indexes ( LassoLibLogoutRequest* lib_logout_request, GList* session_indexes ) GType lasso_lib_logout_response_get_type ( ) LassoNode* lasso_lib_logout_response_new ( ) LassoNode* lasso_lib_logout_response_new_full ( char* providerID, const char* statusCodeValue, LassoLibLogoutRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_request_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, const char* targetNamespace, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_response_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new_full ( char* provideRID, const char* statusCodeValue, LassoLibNameIdentifierMappingRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_request_get_type ( ) LassoNode* lasso_lib_register_name_identifier_request_new ( ) LassoNode* lasso_lib_register_name_identifier_request_new_full ( const char* providerID, LassoSamlNameIdentifier* idpNameIdentifier, LassoSamlNameIdentifier* spNameIdentifier, LassoSamlNameIdentifier* oldNameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_response_get_type ( ) LassoNode* lasso_lib_register_name_identifier_response_new ( ) LassoNode* lasso_lib_register_name_identifier_response_new_full ( const char* providerID, const char* statusCodeValue, LassoLibRegisterNameIdentifierRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_request_authn_context_get_type ( ) LassoLibRequestAuthnContext* lasso_lib_request_authn_context_new ( ) GType lasso_lib_scoping_get_type ( ) LassoLibScoping* lasso_lib_scoping_new ( ) GType lasso_lib_status_response_get_type ( ) LassoNode* lasso_lib_status_response_new ( ) GType lasso_lib_subject_get_type ( ) LassoLibSubject* lasso_lib_subject_new ( ) lasso_error_t lasso_login_accept_sso ( LassoLogin* login ) lasso_error_t lasso_login_build_artifact_msg ( LassoLogin* login, LassoHttpMethod http_method ) lasso_error_t lasso_login_build_assertion ( LassoLogin* login, const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, const char* notBefore, const char* notOnOrAfter ) lasso_error_t lasso_login_build_authn_request_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_authn_response_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_request_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_response_msg ( LassoLogin* login, gchar* remote_providerID ) None lasso_login_destroy ( LassoLogin* login ) gchar* lasso_login_dump ( LassoLogin* login ) LassoNode* lasso_login_get_assertion ( LassoLogin* login ) GType lasso_login_get_type ( ) lasso_error_t lasso_login_init_authn_request ( LassoLogin* login, const gchar* remote_providerID, LassoHttpMethod http_method ) lasso_error_t lasso_login_init_idp_initiated_authn_request ( LassoLogin* login, const gchar* remote_providerID ) lasso_error_t lasso_login_init_request ( LassoLogin* login, gchar* response_msg, LassoHttpMethod response_http_method ) gboolean lasso_login_must_ask_for_consent ( LassoLogin* login ) gboolean lasso_login_must_authenticate ( LassoLogin* login ) LassoLogin* lasso_login_new ( LassoServer* server ) LassoLogin* lasso_login_new_from_dump ( LassoServer* server, const gchar* dump ) lasso_error_t lasso_login_process_authn_request_msg ( LassoLogin* login, const char* authn_request_msg ) lasso_error_t lasso_login_process_authn_response_msg ( LassoLogin* login, gchar* authn_response_msg ) lasso_error_t lasso_login_process_paos_response_msg ( LassoLogin* login, gchar* msg ) lasso_error_t lasso_login_process_request_msg ( LassoLogin* login, gchar* request_msg ) lasso_error_t lasso_login_process_response_msg ( LassoLogin* login, gchar* response_msg ) lasso_error_t lasso_login_validate_request_msg ( LassoLogin* login, gboolean authentication_result, gboolean is_consent_obtained ) lasso_error_t lasso_logout_build_request_msg ( LassoLogout* logout ) lasso_error_t lasso_logout_build_response_msg ( LassoLogout* logout ) None lasso_logout_destroy ( LassoLogout* logout ) gchar* lasso_logout_dump ( LassoLogout* logout ) gchar* lasso_logout_get_next_providerID ( LassoLogout* logout ) GType lasso_logout_get_type ( ) lasso_error_t lasso_logout_init_request ( LassoLogout* logout, gchar* remote_providerID, LassoHttpMethod request_method ) LassoLogout* lasso_logout_new ( LassoServer* server ) LassoLogout* lasso_logout_new_from_dump ( LassoServer* server, const gchar* dump ) lasso_error_t lasso_logout_process_request_msg ( LassoLogout* logout, gchar* request_msg ) lasso_error_t lasso_logout_process_response_msg ( LassoLogout* logout, gchar* response_msg ) lasso_error_t lasso_logout_reset_providerID_index ( LassoLogout* logout ) lasso_error_t lasso_logout_validate_request ( LassoLogout* logout ) GType lasso_misc_text_node_get_type ( ) xmlNode* lasso_misc_text_node_get_xml_content ( LassoMiscTextNode* misc_text_node ) LassoNode* lasso_misc_text_node_new ( ) LassoMiscTextNode* lasso_misc_text_node_new_with_string ( const char* content ) LassoMiscTextNode* lasso_misc_text_node_new_with_xml_node ( xmlNode* xml_node ) None lasso_misc_text_node_set_xml_content ( LassoMiscTextNode* misc_text_node, xmlNode* node ) lasso_error_t lasso_name_id_management_build_request_msg ( LassoNameIdManagement* name_id_management ) lasso_error_t lasso_name_id_management_build_response_msg ( LassoNameIdManagement* name_id_management ) None lasso_name_id_management_destroy ( LassoNameIdManagement* name_id_management ) char* lasso_name_id_management_dump ( LassoNameIdManagement* name_id_management ) GType lasso_name_id_management_get_type ( ) lasso_error_t lasso_name_id_management_init_request ( LassoNameIdManagement* name_id_management, char* remote_provider_id, char* new_name_id, LassoHttpMethod http_method ) LassoNameIdManagement* lasso_name_id_management_new ( LassoServer* server ) LassoNameIdManagement* lasso_name_id_management_new_from_dump ( LassoServer* server, const char* dump ) lasso_error_t lasso_name_id_management_process_request_msg ( LassoNameIdManagement* name_id_management, gchar* request_msg ) lasso_error_t lasso_name_id_management_process_response_msg ( LassoNameIdManagement* name_id_management, gchar* response_msg ) lasso_error_t lasso_name_id_management_validate_request ( LassoNameIdManagement* name_id_management ) lasso_error_t lasso_name_identifier_mapping_build_request_msg ( LassoNameIdentifierMapping* mapping ) lasso_error_t lasso_name_identifier_mapping_build_response_msg ( LassoNameIdentifierMapping* mapping ) None lasso_name_identifier_mapping_destroy ( LassoNameIdentifierMapping* mapping ) GType lasso_name_identifier_mapping_get_type ( ) lasso_error_t lasso_name_identifier_mapping_init_request ( LassoNameIdentifierMapping* mapping, gchar* targetNamespace, gchar* remote_providerID ) LassoNameIdentifierMapping* lasso_name_identifier_mapping_new ( LassoServer* server ) lasso_error_t lasso_name_identifier_mapping_process_request_msg ( LassoNameIdentifierMapping* mapping, gchar* request_msg ) lasso_error_t lasso_name_identifier_mapping_process_response_msg ( LassoNameIdentifierMapping* mapping, gchar* response_msg ) lasso_error_t lasso_name_identifier_mapping_validate_request ( LassoNameIdentifierMapping* mapping ) lasso_error_t lasso_name_registration_build_request_msg ( LassoNameRegistration* name_registration ) lasso_error_t lasso_name_registration_build_response_msg ( LassoNameRegistration* name_registration ) None lasso_name_registration_destroy ( LassoNameRegistration* name_registration ) gchar* lasso_name_registration_dump ( LassoNameRegistration* name_registration ) GType lasso_name_registration_get_type ( ) lasso_error_t lasso_name_registration_init_request ( LassoNameRegistration* name_registration, char* remote_providerID, LassoHttpMethod http_method ) LassoNameRegistration* lasso_name_registration_new ( LassoServer* server ) LassoNameRegistration* lasso_name_registration_new_from_dump ( LassoServer* server, const char* dump ) lasso_error_t lasso_name_registration_process_request_msg ( LassoNameRegistration* name_registration, gchar* request_msg ) lasso_error_t lasso_name_registration_process_response_msg ( LassoNameRegistration* name_registration, gchar* response_msg ) lasso_error_t lasso_name_registration_validate_request ( LassoNameRegistration* name_registration ) None lasso_node_cleanup_original_xmlnodes ( LassoNode* node ) char* lasso_node_debug ( LassoNode* node, int level ) None lasso_node_destroy ( LassoNode* node ) char* lasso_node_dump ( LassoNode* node ) char* lasso_node_export_to_base64 ( LassoNode* node ) char* lasso_node_export_to_ecp_soap_response ( LassoNode* node, const char* assertionConsumerURL ) char* lasso_node_export_to_paos_request ( LassoNode* node, const char* issuer, const char* responseConsumerURL, const char* relay_state ) char* lasso_node_export_to_query ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file ) char* lasso_node_export_to_query_with_password ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file, const char* private_key_file_password ) char* lasso_node_export_to_soap ( LassoNode* node ) gchar* lasso_node_export_to_xml ( LassoNode* node ) const char* lasso_node_get_name ( LassoNode* node ) const char* lasso_node_get_namespace ( LassoNode* node ) xmlNode* lasso_node_get_original_xmlnode ( LassoNode* node ) GType lasso_node_get_type ( ) xmlNode* lasso_node_get_xmlNode ( LassoNode* node, gboolean lasso_dump ) LassoMessageFormat lasso_node_init_from_message ( LassoNode* node, const char* message ) gboolean lasso_node_init_from_query ( LassoNode* node, const char* query ) lasso_error_t lasso_node_init_from_xml ( LassoNode* node, xmlNode* xmlnode ) LassoNode* lasso_node_new ( ) LassoNode* lasso_node_new_from_dump ( const char* dump ) LassoNode* lasso_node_new_from_soap ( const char* soap ) LassoNode* lasso_node_new_from_xmlNode ( xmlNode* node ) None lasso_node_set_custom_namespace ( LassoNode* node, const char* prefix, const char* href ) None lasso_node_set_custom_nodename ( LassoNode* node, const char* nodename ) None lasso_node_set_original_xmlnode ( LassoNode* node, xmlNode* xmlnode ) char* lasso_profile_get_artifact ( LassoProfile* profile ) char* lasso_profile_get_artifact_message ( LassoProfile* profile ) LassoIdentity* lasso_profile_get_identity ( LassoProfile* profile ) LassoNode* lasso_profile_get_nameIdentifier ( LassoProfile* profile ) LassoRequestType lasso_profile_get_request_type_from_soap_msg ( const gchar* soap ) LassoSession* lasso_profile_get_session ( LassoProfile* profile ) LassoProfileSignatureHint lasso_profile_get_signature_hint ( LassoProfile* profile ) lasso_error_t lasso_profile_get_signature_status ( LassoProfile* profile ) LassoProfileSignatureVerifyHint lasso_profile_get_signature_verify_hint ( LassoProfile* profile ) GType lasso_profile_get_type ( ) gboolean lasso_profile_is_identity_dirty ( LassoProfile* profile ) gboolean lasso_profile_is_liberty_query ( const gchar* query ) gboolean lasso_profile_is_saml_query ( const gchar* query ) gboolean lasso_profile_is_session_dirty ( LassoProfile* profile ) None lasso_profile_set_artifact_message ( LassoProfile* profile, const char* message ) lasso_error_t lasso_profile_set_identity_from_dump ( LassoProfile* profile, const gchar* dump ) lasso_error_t lasso_profile_set_session_from_dump ( LassoProfile* profile, const gchar* dump ) None lasso_profile_set_signature_hint ( LassoProfile* profile, LassoProfileSignatureHint signature_hint ) None lasso_profile_set_signature_verify_hint ( LassoProfile* profile, LassoProfileSignatureVerifyHint signature_verify_hint ) lasso_error_t lasso_profile_set_soap_fault_response ( LassoProfile* profile, const char* faultcode, const char* faultstring, GList* details ) LassoProviderRole lasso_profile_sso_role_with ( LassoProfile* profile, const char* remote_provider_id ) gboolean lasso_provider_accept_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type, LassoHttpMethod http_method, gboolean initiate_profile ) lasso_error_t lasso_provider_add_key ( LassoProvider* provider, LassoKey* key, gboolean after ) gchar* lasso_provider_get_assertion_consumer_service_url ( LassoProvider* provider, const char* service_id ) gchar* lasso_provider_get_base64_succinct_id ( const LassoProvider* provider ) char* lasso_provider_get_cache_duration ( LassoProvider* provider ) gchar* lasso_provider_get_default_name_id_format ( LassoProvider* provider ) LassoEncryptionMode lasso_provider_get_encryption_mode ( LassoProvider* provider ) LassoHttpMethod lasso_provider_get_first_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type ) GList* lasso_provider_get_idp_supported_attributes ( LassoProvider* provider ) GList* lasso_provider_get_metadata_keys_for_role ( LassoProvider* provider, LassoProviderRole role ) GList* lasso_provider_get_metadata_list ( LassoProvider* provider, const char* name ) GList* lasso_provider_get_metadata_list_for_role ( const LassoProvider* provider, LassoProviderRole role, const char* name ) gchar* lasso_provider_get_metadata_one ( LassoProvider* provider, const char* name ) char* lasso_provider_get_metadata_one_for_role ( LassoProvider* provider, LassoProviderRole role, const char* name ) xmlNode* lasso_provider_get_organization ( const LassoProvider* provider ) LassoProtocolConformance lasso_provider_get_protocol_conformance ( const LassoProvider* provider ) LassoProviderRole lasso_provider_get_roles ( LassoProvider* provider ) const char* lasso_provider_get_sp_name_qualifier ( LassoProvider* provider ) GType lasso_provider_get_type ( ) char* lasso_provider_get_valid_until ( LassoProvider* provider ) gboolean lasso_provider_has_protocol_profile ( LassoProvider* provider, LassoMdProtocolType protocol_type, const char* protocol_profile ) gboolean lasso_provider_match_conformance ( LassoProvider* provider, LassoProvider* another_provider ) LassoProvider* lasso_provider_new ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_buffer ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_dump ( const gchar* dump ) LassoSaml2EncryptedElement* lasso_provider_saml2_node_encrypt ( const LassoProvider* provider, LassoNode* lasso_node ) None lasso_provider_set_encryption_mode ( LassoProvider* provider, LassoEncryptionMode encryption_mode ) None lasso_provider_set_encryption_sym_key_type ( LassoProvider* provider, LassoEncryptionSymKeyType encryption_sym_key_type ) lasso_error_t lasso_provider_set_server_signing_key ( LassoProvider* provider, LassoKey* key ) int lasso_provider_verify_signature ( LassoProvider* provider, const char* message, const char* id_attr_name, LassoMessageFormat format ) lasso_error_t lasso_provider_verify_single_node_signature ( LassoProvider* provider, LassoNode* node, const char* id_attr_name ) None lasso_register_dst_service ( const char* prefix, const char* href ) None lasso_register_idwsf2_dst_service ( const gchar* prefix, const gchar* href ) GType lasso_saml2_action_get_type ( ) LassoNode* lasso_saml2_action_new ( ) LassoNode* lasso_saml2_action_new_with_string ( char* content ) GType lasso_saml2_advice_get_type ( ) LassoNode* lasso_saml2_advice_new ( ) lasso_error_t lasso_saml2_assertion_add_attribute_with_node ( LassoSaml2Assertion* assertion, const char* name, const char* nameformat, LassoNode* content ) None lasso_saml2_assertion_add_audience_restriction ( LassoSaml2Assertion* saml2_assertion, const char* providerID ) None lasso_saml2_assertion_add_proxy_limit ( LassoSaml2Assertion* saml2_assertion, int proxy_count, GList* proxy_audiences ) LassoSaml2AssertionValidationState lasso_saml2_assertion_allows_proxying ( LassoSaml2Assertion* saml2_assertion ) LassoSaml2AssertionValidationState lasso_saml2_assertion_allows_proxying_to ( LassoSaml2Assertion* saml2_assertion, const char* audience ) lasso_error_t lasso_saml2_assertion_decrypt_subject ( LassoSaml2Assertion* assertion, LassoServer* server ) const char* lasso_saml2_assertion_get_in_response_to ( LassoSaml2Assertion* assertion ) LassoProvider* lasso_saml2_assertion_get_issuer_provider ( const LassoSaml2Assertion* saml2_assertion, const LassoServer* server ) LassoSaml2SubjectConfirmationData* lasso_saml2_assertion_get_subject_confirmation_data ( LassoSaml2Assertion* saml2_assertion, gboolean create ) GType lasso_saml2_assertion_get_type ( ) gboolean lasso_saml2_assertion_has_audience_restriction ( LassoSaml2Assertion* saml2_assertion ) gboolean lasso_saml2_assertion_has_one_time_use ( LassoSaml2Assertion* saml2_assertion ) gboolean lasso_saml2_assertion_is_audience_restricted ( LassoSaml2Assertion* saml2_assertion, char* providerID ) LassoNode* lasso_saml2_assertion_new ( ) None lasso_saml2_assertion_set_basic_conditions ( LassoSaml2Assertion* saml2_assertion, time_t tolerance, time_t length, gboolean one_time_use ) None lasso_saml2_assertion_set_one_time_use ( LassoSaml2Assertion* saml2_assertion, gboolean one_time_use ) None lasso_saml2_assertion_set_subject_confirmation_data ( LassoSaml2Assertion* saml2_assertion, time_t tolerance, time_t length, const char* Recipient, const char* InResponseTo, const char* Address ) None lasso_saml2_assertion_set_subject_confirmation_name_id ( LassoSaml2Assertion* saml2_assertion, LassoNode* node ) None lasso_saml2_assertion_set_subject_name_id ( LassoSaml2Assertion* saml2_assertion, LassoNode* node ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_audience ( LassoSaml2Assertion* saml2_assertion, const gchar* audience ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_conditions ( LassoSaml2Assertion* saml2_assertion, const char* relaying_party_providerID ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_time_checks ( LassoSaml2Assertion* saml2_assertion, unsigned int tolerance, time_t now ) GType lasso_saml2_attribute_get_type ( ) LassoNode* lasso_saml2_attribute_new ( ) GType lasso_saml2_attribute_statement_get_type ( ) LassoNode* lasso_saml2_attribute_statement_new ( ) GType lasso_saml2_attribute_value_get_type ( ) LassoSaml2AttributeValue* lasso_saml2_attribute_value_new ( ) GType lasso_saml2_audience_restriction_get_type ( ) LassoNode* lasso_saml2_audience_restriction_new ( ) GType lasso_saml2_authn_context_get_type ( ) LassoNode* lasso_saml2_authn_context_new ( ) GType lasso_saml2_authn_statement_get_type ( ) LassoNode* lasso_saml2_authn_statement_new ( ) GType lasso_saml2_authz_decision_statement_get_type ( ) LassoNode* lasso_saml2_authz_decision_statement_new ( ) GType lasso_saml2_base_idabstract_get_type ( ) LassoNode* lasso_saml2_base_idabstract_new ( ) GType lasso_saml2_condition_abstract_get_type ( ) LassoNode* lasso_saml2_condition_abstract_new ( ) GType lasso_saml2_conditions_get_type ( ) LassoNode* lasso_saml2_conditions_new ( ) LassoSaml2EncryptedElement* lasso_saml2_encrypted_element_build_encrypted_persistent_name_id ( const char* id, const char* idpID, const LassoProvider* provider ) GType lasso_saml2_encrypted_element_get_type ( ) LassoNode* lasso_saml2_encrypted_element_new ( ) lasso_error_t lasso_saml2_encrypted_element_server_decrypt ( LassoSaml2EncryptedElement* encrypted_element, LassoServer* server, LassoNode** decrypted_node ) GType lasso_saml2_evidence_get_type ( ) LassoNode* lasso_saml2_evidence_new ( ) GType lasso_saml2_key_info_confirmation_data_get_type ( ) LassoNode* lasso_saml2_key_info_confirmation_data_new ( ) GList* lasso_saml2_key_info_confirmation_data_type_get_key_info ( LassoSaml2KeyInfoConfirmationDataType* kicdt ) GType lasso_saml2_key_info_confirmation_data_type_get_type ( ) LassoNode* lasso_saml2_key_info_confirmation_data_type_new ( ) None lasso_saml2_key_info_confirmation_data_type_set_key_info ( LassoSaml2KeyInfoConfirmationDataType* kicdt, GList* key_infos ) LassoSaml2NameID* lasso_saml2_name_id_build_persistent ( const char* id, const char* idpID, const char* providerID ) gboolean lasso_saml2_name_id_equals ( LassoSaml2NameID* name_id, LassoSaml2NameID* other_name_id ) GType lasso_saml2_name_id_get_type ( ) LassoNode* lasso_saml2_name_id_new ( ) LassoSaml2NameID* lasso_saml2_name_id_new_with_persistent_format ( const char* id, const char* idpID, const char* providerID ) LassoNode* lasso_saml2_name_id_new_with_string ( char* content ) GType lasso_saml2_one_time_use_get_type ( ) LassoNode* lasso_saml2_one_time_use_new ( ) GType lasso_saml2_proxy_restriction_get_type ( ) LassoNode* lasso_saml2_proxy_restriction_new ( ) GType lasso_saml2_statement_abstract_get_type ( ) LassoNode* lasso_saml2_statement_abstract_new ( ) GType lasso_saml2_subject_confirmation_data_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_data_new ( ) GType lasso_saml2_subject_confirmation_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_new ( ) GType lasso_saml2_subject_get_type ( ) GType lasso_saml2_subject_locality_get_type ( ) LassoNode* lasso_saml2_subject_locality_new ( ) LassoNode* lasso_saml2_subject_new ( ) GType lasso_saml_advice_get_type ( ) LassoNode* lasso_saml_advice_new ( ) GType lasso_saml_assertion_get_type ( ) LassoSamlAssertion* lasso_saml_assertion_new ( ) GType lasso_saml_attribute_designator_get_type ( ) LassoNode* lasso_saml_attribute_designator_new ( ) GType lasso_saml_attribute_get_type ( ) LassoSamlAttribute* lasso_saml_attribute_new ( ) GType lasso_saml_attribute_statement_get_type ( ) LassoSamlAttributeStatement* lasso_saml_attribute_statement_new ( ) GType lasso_saml_attribute_value_get_type ( ) LassoSamlAttributeValue* lasso_saml_attribute_value_new ( ) GType lasso_saml_audience_restriction_condition_get_type ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new_full ( const char* audience ) GType lasso_saml_authentication_statement_get_type ( ) LassoNode* lasso_saml_authentication_statement_new ( ) GType lasso_saml_authority_binding_get_type ( ) LassoNode* lasso_saml_authority_binding_new ( ) GType lasso_saml_condition_abstract_get_type ( ) GType lasso_saml_conditions_get_type ( ) LassoSamlConditions* lasso_saml_conditions_new ( ) gboolean lasso_saml_name_identifier_equals ( LassoSamlNameIdentifier* a, LassoSamlNameIdentifier* b ) GType lasso_saml_name_identifier_get_type ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new_from_xmlNode ( xmlNode* xmlnode ) GType lasso_saml_statement_abstract_get_type ( ) GType lasso_saml_subject_confirmation_get_type ( ) LassoSamlSubjectConfirmation* lasso_saml_subject_confirmation_new ( ) GType lasso_saml_subject_get_type ( ) GType lasso_saml_subject_locality_get_type ( ) LassoNode* lasso_saml_subject_locality_new ( ) LassoNode* lasso_saml_subject_new ( ) GType lasso_saml_subject_statement_abstract_get_type ( ) GType lasso_saml_subject_statement_get_type ( ) LassoNode* lasso_saml_subject_statement_new ( ) GType lasso_samlp2_artifact_resolve_get_type ( ) LassoNode* lasso_samlp2_artifact_resolve_new ( ) GType lasso_samlp2_artifact_response_get_type ( ) LassoNode* lasso_samlp2_artifact_response_new ( ) GType lasso_samlp2_assertion_id_request_get_type ( ) LassoNode* lasso_samlp2_assertion_id_request_new ( ) GType lasso_samlp2_attribute_query_get_type ( ) LassoNode* lasso_samlp2_attribute_query_new ( ) GType lasso_samlp2_authn_query_get_type ( ) LassoNode* lasso_samlp2_authn_query_new ( ) GType lasso_samlp2_authn_request_get_type ( ) LassoNode* lasso_samlp2_authn_request_new ( ) GType lasso_samlp2_authz_decision_query_get_type ( ) LassoNode* lasso_samlp2_authz_decision_query_new ( ) GType lasso_samlp2_extensions_get_type ( ) LassoNode* lasso_samlp2_extensions_new ( ) GType lasso_samlp2_idp_entry_get_type ( ) LassoNode* lasso_samlp2_idp_entry_new ( ) GType lasso_samlp2_idp_list_get_type ( ) LassoNode* lasso_samlp2_idp_list_new ( ) GList* lasso_samlp2_logout_request_get_session_indexes ( LassoSamlp2LogoutRequest* logout_request ) GType lasso_samlp2_logout_request_get_type ( ) LassoNode* lasso_samlp2_logout_request_new ( ) None lasso_samlp2_logout_request_set_session_indexes ( LassoSamlp2LogoutRequest* logout_request, GList* session_index ) GType lasso_samlp2_logout_response_get_type ( ) LassoNode* lasso_samlp2_logout_response_new ( ) GType lasso_samlp2_manage_name_id_request_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_request_new ( ) GType lasso_samlp2_manage_name_id_response_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_response_new ( ) GType lasso_samlp2_name_id_mapping_request_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_request_new ( ) GType lasso_samlp2_name_id_mapping_response_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_response_new ( ) GType lasso_samlp2_name_id_policy_get_type ( ) LassoNode* lasso_samlp2_name_id_policy_new ( ) GType lasso_samlp2_request_abstract_get_type ( ) LassoNode* lasso_samlp2_request_abstract_new ( ) GType lasso_samlp2_requested_authn_context_get_type ( ) LassoNode* lasso_samlp2_requested_authn_context_new ( ) GType lasso_samlp2_response_get_type ( ) LassoNode* lasso_samlp2_response_new ( ) GType lasso_samlp2_scoping_get_type ( ) LassoNode* lasso_samlp2_scoping_new ( ) GType lasso_samlp2_status_code_get_type ( ) LassoNode* lasso_samlp2_status_code_new ( ) GType lasso_samlp2_status_detail_get_type ( ) LassoNode* lasso_samlp2_status_detail_new ( ) GType lasso_samlp2_status_get_type ( ) LassoNode* lasso_samlp2_status_new ( ) GType lasso_samlp2_status_response_get_type ( ) LassoNode* lasso_samlp2_status_response_new ( ) GType lasso_samlp2_subject_query_abstract_get_type ( ) LassoNode* lasso_samlp2_subject_query_abstract_new ( ) GType lasso_samlp2_terminate_get_type ( ) LassoNode* lasso_samlp2_terminate_new ( ) GType lasso_samlp_request_abstract_get_type ( ) GType lasso_samlp_request_get_type ( ) LassoNode* lasso_samlp_request_new ( ) None lasso_samlp_response_abstract_fill ( LassoSamlpResponseAbstract* response, const char* InResponseTo, const char* Recipient ) GType lasso_samlp_response_abstract_get_type ( ) GType lasso_samlp_response_get_type ( ) LassoNode* lasso_samlp_response_new ( ) GType lasso_samlp_status_code_get_type ( ) LassoSamlpStatusCode* lasso_samlp_status_code_new ( ) GType lasso_samlp_status_get_type ( ) LassoSamlpStatus* lasso_samlp_status_new ( ) lasso_error_t lasso_server_add_provider ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) lasso_error_t lasso_server_add_provider2 ( LassoServer* server, LassoProvider* provider ) lasso_error_t lasso_server_add_provider_from_buffer ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) None lasso_server_destroy ( LassoServer* server ) gchar* lasso_server_dump ( LassoServer* server ) LassoProvider* lasso_server_get_provider ( const LassoServer* server, const gchar* providerID ) GType lasso_server_get_type ( ) lasso_error_t lasso_server_load_affiliation ( LassoServer* server, const gchar* filename ) lasso_error_t lasso_server_load_metadata ( LassoServer* server, LassoProviderRole role, const gchar* federation_file, const gchar* trusted_roots, GList* blacklisted_entity_ids, GList** loaded_entity_ids, LassoServerLoadMetadataFlag flags ) LassoServer* lasso_server_new ( const gchar* metadata, const gchar* private_key, const gchar* private_key_password, const gchar* certificate ) LassoServer* lasso_server_new_from_buffers ( const gchar* metadata, const gchar* private_key_content, const gchar* private_key_password, const gchar* certificate_content ) LassoServer* lasso_server_new_from_dump ( const gchar* dump ) lasso_error_t lasso_server_saml2_assertion_setup_signature ( LassoServer* server, LassoSaml2Assertion* saml2_assertion ) lasso_error_t lasso_server_set_encryption_private_key ( LassoServer* server, const gchar* filename_or_buffer ) lasso_error_t lasso_server_set_encryption_private_key_with_password ( LassoServer* server, const gchar* filename_or_buffer, const gchar* password ) lasso_error_t lasso_session_add_assertion ( LassoSession* session, const char* providerID, LassoNode* assertion ) None lasso_session_destroy ( LassoSession* session ) gchar* lasso_session_dump ( LassoSession* session ) LassoNode* lasso_session_get_assertion ( LassoSession* session, const gchar* providerID ) GList* lasso_session_get_assertion_ids ( LassoSession* session, const gchar* providerID ) GList* lasso_session_get_assertions ( LassoSession* session, const char* provider_id ) GList* lasso_session_get_name_ids ( LassoSession* session, const gchar* providerID ) gchar* lasso_session_get_provider_index ( LassoSession* session, gint index ) GList* lasso_session_get_session_indexes ( LassoSession* session, const gchar* providerID, LassoNode* name_id ) GType lasso_session_get_type ( ) gboolean lasso_session_is_empty ( LassoSession* session ) LassoSession* lasso_session_new ( ) LassoSession* lasso_session_new_from_dump ( const gchar* dump ) lasso_error_t lasso_session_remove_assertion ( LassoSession* session, const gchar* providerID ) None lasso_set_flag ( char* flag ) lasso_error_t lasso_shutdown ( ) GType lasso_soap_body_get_type ( ) LassoSoapBody* lasso_soap_body_new ( ) LassoSoapBody* lasso_soap_body_new_from_message ( const gchar* message ) GType lasso_soap_detail_get_type ( ) LassoSoapDetail* lasso_soap_detail_new ( ) LassoSoapDetail* lasso_soap_detail_new_from_message ( const gchar* message ) GType lasso_soap_envelope_get_type ( ) LassoSoapEnvelope* lasso_soap_envelope_new ( LassoSoapBody* body ) LassoSoapEnvelope* lasso_soap_envelope_new_from_message ( const gchar* message ) GType lasso_soap_fault_get_type ( ) LassoSoapFault* lasso_soap_fault_new ( ) LassoSoapFault* lasso_soap_fault_new_from_message ( const gchar* message ) LassoSoapFault* lasso_soap_fault_new_full ( const char* faultcode, const char* faultstring ) GType lasso_soap_header_get_type ( ) LassoSoapHeader* lasso_soap_header_new ( ) LassoSoapHeader* lasso_soap_header_new_from_message ( const gchar* message ) const char* lasso_strerror ( int error_code ) lasso-2.9.0/abi/PaxHeaders/abi-2.2.10000644000000000000000000000013013766621500013574 xustar0029 mtime=1608196928.71889494 30 atime=1754992978.145544976 29 ctime=1754993575.20113351 lasso-2.9.0/abi/abi-2.2.10000644000175000017500000015164513766621500015622 0ustar00bdauvergnebdauvergneLASSO_ASSERTION_QUERY_REQUEST_TYPE_ASSERTION_ID LASSO_ASSERTION_QUERY_REQUEST_TYPE_ATTRIBUTE LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHN LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHZ_DECISION LASSO_ASSERTION_QUERY_REQUEST_TYPE_UNSET LASSO_CHECK_VERSIONABI_COMPATIBLE LASSO_CHECK_VERSION_EXACT LASSO_CHECK_VERSION_NUMERIC LASSO_DEFEDERATION_ERROR_MISSING_NAME_IDENTIFIER LASSO_DS_HREF LASSO_DS_PREFIX LASSO_ECP_HREF LASSO_ECP_PREFIX LASSO_ENCRYPTION_MODE_ASSERTION LASSO_ENCRYPTION_MODE_NAMEID LASSO_ENCRYPTION_MODE_NONE LASSO_ENCRYPTION_SYM_KEY_TYPE_3DES LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_128 LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_256 LASSO_ENCRYPTION_SYM_KEY_TYPE_DEFAULT LASSO_ERROR_UNDEFINED LASSO_ERROR_UNIMPLEMENTED LASSO_HTTP_METHOD_ANY LASSO_HTTP_METHOD_ARTIFACT_GET LASSO_HTTP_METHOD_ARTIFACT_POST LASSO_HTTP_METHOD_GET LASSO_HTTP_METHOD_IDP_INITIATED LASSO_HTTP_METHOD_NONE LASSO_HTTP_METHOD_POST LASSO_HTTP_METHOD_REDIRECT LASSO_HTTP_METHOD_SOAP LASSO_LASSO_HREF LASSO_LASSO_PREFIX LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD_PROTECTED_TRANSPORT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PREVIOUS_SESSION LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SOFTWARE_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_TIME_SYNC_TOKEN LASSO_LIB_AUTHN_CONTEXT_COMPARISON_BETTER LASSO_LIB_AUTHN_CONTEXT_COMPARISON_EXACT LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MAXIMUM LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MINIMUM LASSO_LIB_CONSENT_INAPPLICABLE LASSO_LIB_CONSENT_OBTAINED LASSO_LIB_CONSENT_OBTAINED_CURRENT_EXPLICIT LASSO_LIB_CONSENT_OBTAINED_CURRENT_IMPLICIT LASSO_LIB_CONSENT_OBTAINED_PRIOR LASSO_LIB_CONSENT_UNAVAILABLE LASSO_LIB_HREF LASSO_LIB_MAJOR_VERSION_N LASSO_LIB_MINOR_VERSION_N LASSO_LIB_NAMEID_POLICY_TYPE_ANY LASSO_LIB_NAMEID_POLICY_TYPE_FEDERATED LASSO_LIB_NAMEID_POLICY_TYPE_NONE LASSO_LIB_NAMEID_POLICY_TYPE_ONE_TIME LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENTITYID LASSO_LIB_NAME_IDENTIFIER_FORMAT_FEDERATED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ONE_TIME LASSO_LIB_PREFIX LASSO_LIB_PROTOCOL_PROFILE_BRWS_ART LASSO_LIB_PROTOCOL_PROFILE_BRWS_LECP LASSO_LIB_PROTOCOL_PROFILE_BRWS_POST LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_NIM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_SOAP LASSO_LIB_STATUS_CODE_FEDERATION_DOES_NOT_EXIST LASSO_LIB_STATUS_CODE_INVALID_ASSERTION_CONSUMER_SERVICE_INDEX LASSO_LIB_STATUS_CODE_INVALID_SIGNATURE LASSO_LIB_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_LIB_STATUS_CODE_NO_AVAILABLEIDP LASSO_LIB_STATUS_CODE_NO_PASSIVE LASSO_LIB_STATUS_CODE_NO_SUPPORTEDIDP LASSO_LIB_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_LIB_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_LIB_STATUS_CODE_UNSIGNED_AUTHN_REQUEST LASSO_LIB_STATUS_CODE_UNSUPPORTED_PROFILE LASSO_LOGIN_ERROR_ASSERTION_REPLAY LASSO_LOGIN_ERROR_CONSENT_NOT_OBTAINED LASSO_LOGIN_ERROR_FEDERATION_NOT_FOUND LASSO_LOGIN_ERROR_INVALID_NAMEIDPOLICY LASSO_LOGIN_ERROR_INVALID_SIGNATURE LASSO_LOGIN_ERROR_NO_DEFAULT_ENDPOINT LASSO_LOGIN_ERROR_REQUEST_DENIED LASSO_LOGIN_ERROR_STATUS_NOT_SUCCESS LASSO_LOGIN_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGIN_ERROR_UNSIGNED_AUTHN_REQUEST LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_ART LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_LECP LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_POST LASSO_LOGIN_PROTOCOL_PROFILE_REDIRECT LASSO_LOGOUT_ERROR_FEDERATION_NOT_FOUND LASSO_LOGOUT_ERROR_REQUEST_DENIED LASSO_LOGOUT_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGOUT_ERROR_UNSUPPORTED_PROFILE LASSO_MD_PROTOCOL_TYPE_ARTIFACT_RESOLUTION LASSO_MD_PROTOCOL_TYPE_ASSERTION_ID_REQUEST LASSO_MD_PROTOCOL_TYPE_FEDERATION_TERMINATION LASSO_MD_PROTOCOL_TYPE_MANAGE_NAME_ID LASSO_MD_PROTOCOL_TYPE_NAME_IDENTIFIER_MAPPING LASSO_MD_PROTOCOL_TYPE_REGISTER_NAME_IDENTIFIER LASSO_MD_PROTOCOL_TYPE_SINGLE_LOGOUT LASSO_MD_PROTOCOL_TYPE_SINGLE_SIGN_ON LASSO_MESSAGE_FORMAT_BASE64 LASSO_MESSAGE_FORMAT_ERROR LASSO_MESSAGE_FORMAT_QUERY LASSO_MESSAGE_FORMAT_SOAP LASSO_MESSAGE_FORMAT_UNKNOWN LASSO_MESSAGE_FORMAT_XML LASSO_METADATA_HREF LASSO_METADATA_PREFIX LASSO_NAME_IDENTIFIER_MAPPING_ERROR_FORBIDDEN_CALL_ON_THIS_SIDE LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_IDENTIFIER LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_NAMESPACE LASSO_PAOS_HREF LASSO_PAOS_PREFIX LASSO_PARAM_ERROR_BAD_TYPE_OR_NULL_OBJ LASSO_PARAM_ERROR_CHECK_FAILED LASSO_PARAM_ERROR_INVALID_VALUE LASSO_PARAM_ERROR_NON_INITIALIZED_OBJECT LASSO_PROFILE_ERROR_BAD_IDENTITY_DUMP LASSO_PROFILE_ERROR_BAD_SESSION_DUMP LASSO_PROFILE_ERROR_BUILDING_MESSAGE_FAILED LASSO_PROFILE_ERROR_BUILDING_QUERY_FAILED LASSO_PROFILE_ERROR_BUILDING_REQUEST_FAILED LASSO_PROFILE_ERROR_BUILDING_RESPONSE_FAILED LASSO_PROFILE_ERROR_FEDERATION_NOT_FOUND LASSO_PROFILE_ERROR_IDENTITY_NOT_FOUND LASSO_PROFILE_ERROR_INVALID_ARTIFACT LASSO_PROFILE_ERROR_INVALID_HTTP_METHOD LASSO_PROFILE_ERROR_INVALID_MSG LASSO_PROFILE_ERROR_INVALID_POST_MSG LASSO_PROFILE_ERROR_INVALID_PROTOCOLPROFILE LASSO_PROFILE_ERROR_INVALID_QUERY LASSO_PROFILE_ERROR_INVALID_SOAP_MSG LASSO_PROFILE_ERROR_MISSING_ARTIFACT LASSO_PROFILE_ERROR_MISSING_ASSERTION LASSO_PROFILE_ERROR_MISSING_ENCRYPTION_PRIVATE_KEY LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE_ADDRESS LASSO_PROFILE_ERROR_MISSING_ISSUER LASSO_PROFILE_ERROR_MISSING_NAME_IDENTIFIER LASSO_PROFILE_ERROR_MISSING_REMOTE_PROVIDERID LASSO_PROFILE_ERROR_MISSING_REQUEST LASSO_PROFILE_ERROR_MISSING_RESOURCE_OFFERING LASSO_PROFILE_ERROR_MISSING_RESPONSE LASSO_PROFILE_ERROR_MISSING_SERVICE_DESCRIPTION LASSO_PROFILE_ERROR_MISSING_SERVICE_INSTANCE LASSO_PROFILE_ERROR_MISSING_SERVICE_TYPE LASSO_PROFILE_ERROR_MISSING_STATUS_CODE LASSO_PROFILE_ERROR_MISSING_SUBJECT LASSO_PROFILE_ERROR_NAME_IDENTIFIER_NOT_FOUND LASSO_PROFILE_ERROR_SESSION_NOT_FOUND LASSO_PROFILE_ERROR_STATUS_NOT_SUCCESS LASSO_PROFILE_ERROR_UNKNOWN_PROFILE_URL LASSO_PROFILE_ERROR_UNSUPPORTED_PROFILE LASSO_PROTOCOL_LIBERTY_1_0 LASSO_PROTOCOL_LIBERTY_1_1 LASSO_PROTOCOL_LIBERTY_1_2 LASSO_PROTOCOL_NONE LASSO_PROTOCOL_SAML_2_0 LASSO_PROVIDER_ROLE_IDP LASSO_PROVIDER_ROLE_NONE LASSO_PROVIDER_ROLE_SP LASSO_REQUEST_TYPE_DEFEDERATION LASSO_REQUEST_TYPE_INVALID LASSO_REQUEST_TYPE_LECP LASSO_REQUEST_TYPE_LOGIN LASSO_REQUEST_TYPE_LOGOUT LASSO_REQUEST_TYPE_NAME_IDENTIFIER_MAPPING LASSO_REQUEST_TYPE_NAME_ID_MANAGEMENT LASSO_REQUEST_TYPE_NAME_REGISTRATION LASSO_REQUEST_TYPE_SASL_REQUEST LASSO_SAML2_ASSERTION_HREF LASSO_SAML2_ASSERTION_PREFIX LASSO_SAML2_ATTRIBUTE_NAME_EPR LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_URI LASSO_SAML2_AUTHN_CONTEXT_AUTHENTICATED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_KERBEROS LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_NOMAD_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_PASSWORD_PROTECTED_TRANSPORT LASSO_SAML2_AUTHN_CONTEXT_PERSONALIZED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PGP LASSO_SAML2_AUTHN_CONTEXT_PREVIOUS_SESSION LASSO_SAML2_AUTHN_CONTEXT_SECURE_REMOTE_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD_PKI LASSO_SAML2_AUTHN_CONTEXT_SOFTWARE_PKI LASSO_SAML2_AUTHN_CONTEXT_SPKI LASSO_SAML2_AUTHN_CONTEXT_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_TIME_SYNC_TOKEN LASSO_SAML2_AUTHN_CONTEXT_TLS_CLIENT LASSO_SAML2_AUTHN_CONTEXT_X509 LASSO_SAML2_AUTHN_CONTEXT_XMLDSIG LASSO_SAML2_CONFIRMATION_METHOD_BEARER LASSO_SAML2_CONSENT_EXPLICIT LASSO_SAML2_CONSENT_IMPLICIT LASSO_SAML2_CONSENT_INAPPLICABLE LASSO_SAML2_CONSENT_OBTAINED LASSO_SAML2_CONSENT_PRIOR LASSO_SAML2_CONSENT_UNAVAILABLE LASSO_SAML2_DEFLATE_ENCODING LASSO_SAML2_METADATA_BINDING_ARTIFACT LASSO_SAML2_METADATA_BINDING_PAOS LASSO_SAML2_METADATA_BINDING_POST LASSO_SAML2_METADATA_BINDING_REDIRECT LASSO_SAML2_METADATA_BINDING_SOAP LASSO_SAML2_METADATA_HREF LASSO_SAML2_NAME_IDENTIFIER_FORMAT_EMAIL LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENTITY LASSO_SAML2_NAME_IDENTIFIER_FORMAT_KERBEROS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_PERSISTENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_TRANSIENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_UNSPECIFIED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_WINDOWS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_X509 LASSO_SAML2_PROTOCOL_HREF LASSO_SAML2_PROTOCOL_PREFIX LASSO_SAML2_STATUS_CODE_AUTHN_FAILED LASSO_SAML2_STATUS_CODE_INVALID_ATTR_NAME LASSO_SAML2_STATUS_CODE_INVALID_NAME_ID_POLICY LASSO_SAML2_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_SAML2_STATUS_CODE_NO_AVAILABLE_IDP LASSO_SAML2_STATUS_CODE_NO_PASSIVE LASSO_SAML2_STATUS_CODE_NO_SUPPORTED_IDP LASSO_SAML2_STATUS_CODE_PARTIAL_LOGOUT LASSO_SAML2_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_SAML2_STATUS_CODE_REQUESTER LASSO_SAML2_STATUS_CODE_REQUEST_DENIED LASSO_SAML2_STATUS_CODE_REQUEST_UNSUPPORTED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML2_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML2_STATUS_CODE_RESPONDER LASSO_SAML2_STATUS_CODE_SUCCESS LASSO_SAML2_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML2_STATUS_CODE_UNKNOWN_ATTR_PROFILE LASSO_SAML2_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_SAML2_STATUS_CODE_UNSUPPORTED_BINDING LASSO_SAML2_STATUS_CODE_VERSION_MISMATCH LASSO_SAML_ASSERTION_HREF LASSO_SAML_ASSERTION_PREFIX LASSO_SAML_AUTHENTICATION_METHODS_PKI LASSO_SAML_AUTHENTICATION_METHOD_HARDWARE_TOKEN LASSO_SAML_AUTHENTICATION_METHOD_KERBEROS LASSO_SAML_AUTHENTICATION_METHOD_LIBERTY LASSO_SAML_AUTHENTICATION_METHOD_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_PGP LASSO_SAML_AUTHENTICATION_METHOD_SECURE_REMOTE_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_SMARTCARD_PKI LASSO_SAML_AUTHENTICATION_METHOD_SOFTWARE_PKI LASSO_SAML_AUTHENTICATION_METHOD_UNSPECIFIED LASSO_SAML_AUTHENTICATION_METHOD_XKMS LASSO_SAML_AUTHENTICATION_METHOD_XMLD_SIG LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT01 LASSO_SAML_CONFIRMATION_METHOD_BEARER LASSO_SAML_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML_CONFIRMATION_METHOD_SENDER_VOUCHES LASSO_SAML_MAJOR_VERSION_N LASSO_SAML_MINOR_VERSION_N LASSO_SAML_PROTOCOL_HREF LASSO_SAML_PROTOCOL_PREFIX LASSO_SAML_STATUS_CODE_REQUESTER LASSO_SAML_STATUS_CODE_REQUEST_DENIED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML_STATUS_CODE_RESPONDER LASSO_SAML_STATUS_CODE_SUCCESS LASSO_SAML_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML_STATUS_CODE_VERSION_MISMATCH LASSO_SERVER_ERROR_ADD_PROVIDER_FAILED LASSO_SERVER_ERROR_ADD_PROVIDER_PROTOCOL_MISMATCH LASSO_SERVER_ERROR_INVALID_XML LASSO_SERVER_ERROR_PROVIDER_NOT_FOUND LASSO_SERVER_ERROR_SET_ENCRYPTION_PRIVATE_KEY_FAILED LASSO_SIGNATURE_METHOD_DSA_SHA1 LASSO_SIGNATURE_METHOD_RSA_SHA1 LASSO_SIGNATURE_TYPE_NONE LASSO_SIGNATURE_TYPE_SIMPLE LASSO_SIGNATURE_TYPE_WITHX509 LASSO_SOAP_ENV_ACTOR LASSO_SOAP_ENV_HREF LASSO_SOAP_ENV_PREFIX LASSO_SOAP_ERROR_MISSING_BODY LASSO_SOAP_ERROR_MISSING_ENVELOPE LASSO_SOAP_ERROR_MISSING_HEADER LASSO_SOAP_ERROR_MISSING_SOAP_FAULT_DETAIL LASSO_SOAP_FAULT_CODE_SERVER LASSO_XML_ERROR_ATTR_NOT_FOUND LASSO_XML_ERROR_ATTR_VALUE_NOT_FOUND LASSO_XML_ERROR_INVALID_FILE LASSO_XML_ERROR_MISSING_NAMESPACE LASSO_XML_ERROR_NODE_CONTENT_NOT_FOUND LASSO_XML_ERROR_NODE_NOT_FOUND LASSO_XML_ERROR_OBJECT_CONSTRUCTION_FAILED LASSO_XSI_HREF LASSO_XSI_PREFIX struct LassoAssertionQuery { LassoAssertionQueryPrivate* private_data } LassoAssertionQueryRequestType LassoCheckVersionMode struct LassoDefederation { void* private_data } struct LassoDsKeyInfo { LassoDsKeyValue* KeyValue } struct LassoDsKeyValue { LassoDsRsaKeyValue* RSAKeyValue } struct LassoDsRsaKeyValue { char* Modulus, char* Exponent } struct LassoEcp { gchar* assertionConsumerURL, LassoEcpPrivate* private_data } LassoEncryptionMode LassoEncryptionSymKeyType struct LassoFederation { gchar* remote_providerID, LassoNode* local_nameIdentifier, LassoNode* remote_nameIdentifier, LassoFederationPrivate* private_data } LassoHttpMethod struct LassoIdentity { GHashTable* federations, gboolean is_dirty, LassoIdentityPrivate* private_data } struct LassoLecp { LassoLibAuthnRequestEnvelope* authnRequestEnvelope, LassoLibAuthnResponseEnvelope* authnResponseEnvelope, char* assertionConsumerServiceURL, void* private_data } struct LassoLibAssertion { char* InResponseTo } struct LassoLibAuthenticationStatement { LassoLibAuthnContext* AuthnContext, char* ReauthenticateOnOrAfter, char* SessionIndex } struct LassoLibAuthnContext { char* AuthnContextClassRef, char* AuthnContextStatementRef, void* AuthenticationContextStatement } struct LassoLibAuthnRequest { GList* Extension, char* ProviderID, char* AffiliationID, char* NameIDPolicy, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolProfile, char* AssertionConsumerServiceID, LassoLibRequestAuthnContext* RequestAuthnContext, char* RelayState, LassoLibScoping* Scoping, char* consent } struct LassoLibAuthnRequestEnvelope { GList* Extension, LassoLibAuthnRequest* AuthnRequest, char* ProviderID, char* ProviderName, char* AssertionConsumerServiceURL, LassoLibIDPList* IDPList, gboolean IsPassive } struct LassoLibAuthnResponse { GList* Extension, char* ProviderID, char* RelayState, char* consent } struct LassoLibAuthnResponseEnvelope { GList* Extension, LassoLibAuthnResponse* AuthnResponse, char* AssertionConsumerServiceURL } struct LassoLibFederationTerminationNotification { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* consent, char* RelayState } struct LassoLibIDPEntries { GList* IDPEntry } struct LassoLibIDPEntry { char* ProviderID, char* ProviderName, char* Loc } struct LassoLibIDPList { LassoLibIDPEntries* IDPEntries, char* GetComplete } struct LassoLibLogoutRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* SessionIndex, char* RelayState, char* consent, char* NotOnOrAfter } struct LassoLibLogoutResponse { } struct LassoLibNameIdentifierMappingRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* TargetNamespace, char* consent } struct LassoLibNameIdentifierMappingResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, LassoSamlNameIdentifier* NameIdentifier } struct LassoLibRegisterNameIdentifierRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* IDPProvidedNameIdentifier, LassoSamlNameIdentifier* SPProvidedNameIdentifier, LassoSamlNameIdentifier* OldProvidedNameIdentifier, char* RelayState } struct LassoLibRegisterNameIdentifierResponse { } struct LassoLibRequestAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextStatementRef, char* AuthnContextComparison } struct LassoLibScoping { int ProxyCount, LassoLibIDPList* IDPList } struct LassoLibStatusResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, char* RelayState } struct LassoLibSubject { LassoSamlNameIdentifier* IDPProvidedNameIdentifier } struct LassoLogin { LassoLoginProtocolProfile protocolProfile, gchar* assertionArtifact, LassoSamlAssertion* assertion, gchar* nameIDPolicy, LassoHttpMethod http_method, LassoLoginPrivate* private_data } LassoLoginProtocolProfile struct LassoLogout { LassoNode* initial_request, LassoNode* initial_response, gchar* initial_remote_providerID, gint providerID_index, LassoHttpMethod initial_http_request_method, LassoLogoutPrivate* private_data } LassoMdProtocolType LassoMessageFormat struct LassoMiscTextNode { char* content, char* name, char* ns_href, char* ns_prefix, gboolean text_child } struct LassoNameIdManagement { void* private_data } struct LassoNameIdentifierMapping { gchar* targetNameIdentifier, void* private_data } struct LassoNameRegistration { LassoSamlNameIdentifier* oldNameIdentifier, void* private_data } struct LassoNode { } struct LassoProfile { LassoServer* server, LassoNode* request, LassoNode* response, LassoNode* nameIdentifier, gchar* remote_providerID, gchar* msg_url, gchar* msg_body, gchar* msg_relayState, LassoIdentity* identity, LassoSession* session, LassoHttpMethod http_request_method, gint signature_status, LassoProfilePrivate* private_data } LassoProtocolConformance struct LassoProvider { gchar* ProviderID, LassoProviderRole role, char* metadata_filename, gchar* public_key, gchar* ca_cert_chain, LassoProviderPrivate* private_data } LassoProviderRole LassoRequestType struct LassoSaml2Action { char* content, char* Namespace } struct LassoSaml2Advice { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2Assertion { LassoSaml2NameID* Issuer, LassoSaml2Subject* Subject, LassoSaml2Conditions* Conditions, LassoSaml2Advice* Advice, GList* Statement, GList* AuthnStatement, GList* AuthzDecisionStatement, GList* AttributeStatement, char* Version, char* ID, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file, gboolean encryption_activated, char* encryption_public_key_str, LassoEncryptionSymKeyType encryption_sym_key_type } struct LassoSaml2Attribute { GList* AttributeValue, char* Name, char* NameFormat, char* FriendlyName } struct LassoSaml2AttributeStatement { GList* Attribute, GList* EncryptedAttribute } struct LassoSaml2AttributeValue { GList* any } struct LassoSaml2AudienceRestriction { char* Audience } struct LassoSaml2AuthnContext { char* AuthnContextClassRef, char* AuthnContextDeclRef, char* AuthenticatingAuthority } struct LassoSaml2AuthnStatement { LassoSaml2SubjectLocality* SubjectLocality, LassoSaml2AuthnContext* AuthnContext, char* AuthnInstant, char* SessionIndex, char* SessionNotOnOrAfter } struct LassoSaml2AuthzDecisionStatement { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource, char* Decision } struct LassoSaml2BaseIDAbstract { char* NameQualifier, char* SPNameQualifier } struct LassoSaml2ConditionAbstract { } struct LassoSaml2Conditions { GList* Condition, GList* AudienceRestriction, GList* OneTimeUse, GList* ProxyRestriction, char* NotBefore, char* NotOnOrAfter } struct LassoSaml2EncryptedElement { xmlNode* EncryptedData, GList* EncryptedKey, LassoNode* original_data } struct LassoSaml2Evidence { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2KeyInfoConfirmationData { } struct LassoSaml2NameID { char* content, char* Format, char* SPProvidedID, char* NameQualifier, char* SPNameQualifier } struct LassoSaml2OneTimeUse { } struct LassoSaml2ProxyRestriction { char* Audience, char* Count } struct LassoSaml2StatementAbstract { } struct LassoSaml2Subject { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmation* SubjectConfirmation } struct LassoSaml2SubjectConfirmation { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmationData* SubjectConfirmationData, char* Method } struct LassoSaml2SubjectConfirmationData { char* NotBefore, char* NotOnOrAfter, char* Recipient, char* InResponseTo, char* Address } struct LassoSaml2SubjectLocality { char* Address, char* DNSName } struct LassoSamlAdvice { GList* AssertionIDReference, LassoNode* Assertion } struct LassoSamlAssertion { LassoSamlConditions* Conditions, LassoSamlAdvice* Advice, void* Statement, LassoSamlSubjectStatement* SubjectStatement, LassoSamlAuthenticationStatement* AuthenticationStatement, void* AuthorizationDecisionStatement, LassoSamlAttributeStatement* AttributeStatement, int MajorVersion, int MinorVersion, char* AssertionID, char* Issuer, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlAttribute { gchar* attributeName, gchar* attributeNameSpace, GList* AttributeValue } struct LassoSamlAttributeDesignator { char* AttributeName, char* AttributeNamespace } struct LassoSamlAttributeStatement { GList* Attribute } struct LassoSamlAttributeValue { GList* any } struct LassoSamlAudienceRestrictionCondition { GList* Audience } struct LassoSamlAuthenticationStatement { LassoSamlSubjectLocality* SubjectLocality, GList* AuthorityBinding, char* AuthenticationMethod, char* AuthenticationInstant } struct LassoSamlAuthorityBinding { char* AuthorityKind, char* Location, char* Binding } struct LassoSamlConditionAbstract { } struct LassoSamlConditions { GList* Condition, GList* AudienceRestrictionCondition, char* NotBefore, char* NotOnOrAfter } struct LassoSamlNameIdentifier { char* NameQualifier, char* Format, char* content } struct LassoSamlStatementAbstract { } struct LassoSamlSubject { LassoSamlNameIdentifier* NameIdentifier, LassoSamlSubjectConfirmation* SubjectConfirmation, LassoSaml2EncryptedElement* EncryptedNameIdentifier } struct LassoSamlSubjectConfirmation { GList* ConfirmationMethod, char* SubjectConfirmationData, LassoDsKeyInfo* KeyInfo } struct LassoSamlSubjectLocality { char* IPAddress, char* DNSAddress } struct LassoSamlSubjectStatement { } struct LassoSamlSubjectStatementAbstract { LassoSamlSubject* Subject } struct LassoSamlp2ArtifactResolve { char* Artifact } struct LassoSamlp2ArtifactResponse { LassoNode* any } struct LassoSamlp2AssertionIDRequest { char* AssertionIDRef } struct LassoSamlp2AttributeQuery { GList* Attribute } struct LassoSamlp2AuthnQuery { LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, char* SessionIndex } struct LassoSamlp2AuthnRequest { LassoSaml2Subject* Subject, LassoSamlp2NameIDPolicy* NameIDPolicy, LassoSaml2Conditions* Conditions, LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, LassoSamlp2Scoping* Scoping, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolBinding, int AssertionConsumerServiceIndex, char* AssertionConsumerServiceURL, int AttributeConsumingServiceIndex, char* ProviderName, char* relayState } struct LassoSamlp2AuthzDecisionQuery { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource } struct LassoSamlp2Extensions { } struct LassoSamlp2IDPEntry { char* ProviderID, char* Name, char* Loc } struct LassoSamlp2IDPList { LassoSamlp2IDPEntry* IDPEntry, char* GetComplete } struct LassoSamlp2LogoutRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* SessionIndex, char* Reason, char* NotOnOrAfter, char* relayState } struct LassoSamlp2LogoutResponse { char* relayState } struct LassoSamlp2ManageNameIDRequest { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* NewID, LassoSaml2EncryptedElement* NewEncryptedID, LassoSamlp2Terminate* Terminate } struct LassoSamlp2ManageNameIDResponse { } struct LassoSamlp2NameIDMappingRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSamlp2NameIDPolicy* NameIDPolicy } struct LassoSamlp2NameIDMappingResponse { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID } struct LassoSamlp2NameIDPolicy { char* Format, char* SPNameQualifier, gboolean AllowCreate } struct LassoSamlp2RequestAbstract { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, char* ID, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2RequestedAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextDeclRef, char* Comparison } struct LassoSamlp2Response { GList* Assertion, GList* EncryptedAssertion } struct LassoSamlp2Scoping { LassoSamlp2IDPList* IDPList, char* RequesterID, char* ProxyCount } struct LassoSamlp2Status { LassoSamlp2StatusCode* StatusCode, char* StatusMessage, LassoSamlp2StatusDetail* StatusDetail } struct LassoSamlp2StatusCode { LassoSamlp2StatusCode* StatusCode, char* Value } struct LassoSamlp2StatusDetail { } struct LassoSamlp2StatusResponse { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, LassoSamlp2Status* Status, char* ID, char* InResponseTo, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2SubjectQueryAbstract { LassoSaml2Subject* Subject } struct LassoSamlp2Terminate { } struct LassoSamlpRequest { char* AssertionArtifact } struct LassoSamlpRequestAbstract { GList* RespondWith, char* RequestID, int MajorVersion, int MinorVersion, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpResponse { LassoSamlpStatus* Status, GList* Assertion } struct LassoSamlpResponseAbstract { char* ResponseID, char* InResponseTo, int MajorVersion, int MinorVersion, char* IssueInstant, char* Recipient, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpStatus { LassoSamlpStatusCode* StatusCode, char* StatusMessage } struct LassoSamlpStatusCode { LassoSamlpStatusCode* StatusCode, char* Value } struct LassoServer { GHashTable* providers, GHashTable* services, gchar* private_key, gchar* private_key_password, gchar* certificate, LassoSignatureMethod signature_method, LassoServerPrivate* private_data } struct LassoSession { GHashTable* assertions, gboolean is_dirty, LassoSessionPrivate* private_data } LassoSignatureMethod LassoSignatureType gint lasso_assertion_query_build_request_msg ( LassoAssertionQuery* assertion_query ) int lasso_assertion_query_build_response_msg ( LassoAssertionQuery* assertion_query ) None lasso_assertion_query_destroy ( LassoAssertionQuery* assertion_query ) GType lasso_assertion_query_get_type ( ) gint lasso_assertion_query_init_request ( LassoAssertionQuery* assertion_query, char* remote_provider_id, LassoHttpMethod http_method, LassoAssertionQueryRequestType query_request_type ) LassoAssertionQuery* lasso_assertion_query_new ( LassoServer* server ) gint lasso_assertion_query_process_request_msg ( LassoAssertionQuery* assertion_query, gchar* request_msg ) gint lasso_assertion_query_process_response_msg ( LassoAssertionQuery* assertion_query, gchar* response_msg ) gint lasso_assertion_query_validate_request ( LassoAssertionQuery* assertion_query ) int lasso_check_version ( int major, int minor, int subminor, LassoCheckVersionMode mode ) gint lasso_defederation_build_notification_msg ( LassoDefederation* defederation ) None lasso_defederation_destroy ( LassoDefederation* defederation ) GType lasso_defederation_get_type ( ) gint lasso_defederation_init_notification ( LassoDefederation* defederation, gchar* remote_providerID, LassoHttpMethod http_method ) LassoDefederation* lasso_defederation_new ( LassoServer* server ) gint lasso_defederation_process_notification_msg ( LassoDefederation* defederation, gchar* notification_msg ) gint lasso_defederation_validate_notification ( LassoDefederation* defederation ) GType lasso_ds_key_info_get_type ( ) LassoDsKeyInfo* lasso_ds_key_info_new ( ) GType lasso_ds_key_value_get_type ( ) LassoDsKeyValue* lasso_ds_key_value_new ( ) GType lasso_ds_rsa_key_value_get_type ( ) LassoDsRsaKeyValue* lasso_ds_rsa_key_value_new ( ) None lasso_ecp_destroy ( LassoEcp* ecp ) GType lasso_ecp_get_type ( ) LassoEcp* lasso_ecp_new ( LassoServer* server ) int lasso_ecp_process_authn_request_msg ( LassoEcp* ecp, const char* authn_request_msg ) int lasso_ecp_process_response_msg ( LassoEcp* ecp, const char* response_msg ) None lasso_federation_build_local_name_identifier ( LassoFederation* federation, const gchar* nameQualifier, const gchar* format, const gchar* content ) None lasso_federation_destroy ( LassoFederation* federation ) GType lasso_federation_get_type ( ) LassoFederation* lasso_federation_new ( gchar* remote_providerID ) gboolean lasso_federation_verify_name_identifier ( LassoFederation* federation, LassoNode* name_identifier ) char* lasso_get_prefix_for_dst_service_href ( const char* href ) gchar* lasso_get_prefix_for_idwsf2_dst_service_href ( const gchar* href ) None lasso_identity_destroy ( LassoIdentity* identity ) gchar* lasso_identity_dump ( LassoIdentity* identity ) LassoFederation* lasso_identity_get_federation ( LassoIdentity* identity, const char* providerID ) GType lasso_identity_get_type ( ) LassoIdentity* lasso_identity_new ( ) LassoIdentity* lasso_identity_new_from_dump ( const gchar* dump ) int lasso_init ( ) int lasso_lecp_build_authn_request_envelope_msg ( LassoLecp* lecp ) int lasso_lecp_build_authn_request_msg ( LassoLecp* lecp ) int lasso_lecp_build_authn_response_envelope_msg ( LassoLecp* lecp ) int lasso_lecp_build_authn_response_msg ( LassoLecp* lecp ) None lasso_lecp_destroy ( LassoLecp* lecp ) GType lasso_lecp_get_type ( ) int lasso_lecp_init_authn_request ( LassoLecp* lecp, const char* remote_providerID ) LassoLecp* lasso_lecp_new ( LassoServer* server ) int lasso_lecp_process_authn_request_envelope_msg ( LassoLecp* lecp, const char* request_msg ) int lasso_lecp_process_authn_request_msg ( LassoLecp* lecp, const char* authn_request_msg ) int lasso_lecp_process_authn_response_envelope_msg ( LassoLecp* lecp, const char* response_msg ) GType lasso_lib_assertion_get_type ( ) LassoLibAssertion* lasso_lib_assertion_new ( ) LassoLibAssertion* lasso_lib_assertion_new_full ( const char* issuer, const char* requestID, const char* audience, const char* notBefore, const char* notOnOrAfter ) GType lasso_lib_authentication_statement_get_type ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new_full ( const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, LassoSamlNameIdentifier* sp_identifier, LassoSamlNameIdentifier* idp_identifier ) GType lasso_lib_authn_context_get_type ( ) LassoNode* lasso_lib_authn_context_new ( ) GType lasso_lib_authn_request_envelope_get_type ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new_full ( LassoLibAuthnRequest* authnRequest, char* providerID, char* assertionConsumerServiceURL ) GType lasso_lib_authn_request_get_type ( ) LassoLibAuthnRequest* lasso_lib_authn_request_new ( ) GType lasso_lib_authn_response_envelope_get_type ( ) LassoLibAuthnResponseEnvelope* lasso_lib_authn_response_envelope_new ( LassoLibAuthnResponse* response, char* assertionConsumerServiceURL ) GType lasso_lib_authn_response_get_type ( ) LassoNode* lasso_lib_authn_response_new ( char* providerID, LassoLibAuthnRequest* request ) GType lasso_lib_federation_termination_notification_get_type ( ) LassoNode* lasso_lib_federation_termination_notification_new ( ) LassoLibFederationTerminationNotification* lasso_lib_federation_termination_notification_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_idp_entries_get_type ( ) LassoNode* lasso_lib_idp_entries_new ( ) GType lasso_lib_idp_entry_get_type ( ) LassoNode* lasso_lib_idp_entry_new ( ) GType lasso_lib_idp_list_get_type ( ) LassoNode* lasso_lib_idp_list_new ( ) GType lasso_lib_logout_request_get_type ( ) LassoNode* lasso_lib_logout_request_new ( ) LassoLibLogoutRequest* lasso_lib_logout_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_logout_response_get_type ( ) LassoNode* lasso_lib_logout_response_new ( ) LassoLibLogoutResponse* lasso_lib_logout_response_new_full ( char* providerID, const char* statusCodeValue, LassoLibLogoutRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_request_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new ( ) LassoLibNameIdentifierMappingRequest* lasso_lib_name_identifier_mapping_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, const char* targetNamespace, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_response_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new ( ) LassoLibNameIdentifierMappingResponse* lasso_lib_name_identifier_mapping_response_new_full ( char* provideRID, const char* statusCodeValue, LassoLibNameIdentifierMappingRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_request_get_type ( ) LassoNode* lasso_lib_register_name_identifier_request_new ( ) LassoLibRegisterNameIdentifierRequest* lasso_lib_register_name_identifier_request_new_full ( const char* providerID, LassoSamlNameIdentifier* idpNameIdentifier, LassoSamlNameIdentifier* spNameIdentifier, LassoSamlNameIdentifier* oldNameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_response_get_type ( ) LassoNode* lasso_lib_register_name_identifier_response_new ( ) LassoLibRegisterNameIdentifierResponse* lasso_lib_register_name_identifier_response_new_full ( const char* providerID, const char* statusCodeValue, LassoLibRegisterNameIdentifierRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_request_authn_context_get_type ( ) LassoLibRequestAuthnContext* lasso_lib_request_authn_context_new ( ) GType lasso_lib_scoping_get_type ( ) LassoLibScoping* lasso_lib_scoping_new ( ) GType lasso_lib_status_response_get_type ( ) LassoNode* lasso_lib_status_response_new ( ) GType lasso_lib_subject_get_type ( ) LassoLibSubject* lasso_lib_subject_new ( ) gint lasso_login_accept_sso ( LassoLogin* login ) gint lasso_login_build_artifact_msg ( LassoLogin* login, LassoHttpMethod http_method ) int lasso_login_build_assertion ( LassoLogin* login, const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, const char* notBefore, const char* notOnOrAfter ) gint lasso_login_build_authn_request_msg ( LassoLogin* login ) gint lasso_login_build_authn_response_msg ( LassoLogin* login ) gint lasso_login_build_request_msg ( LassoLogin* login ) gint lasso_login_build_response_msg ( LassoLogin* login, gchar* remote_providerID ) None lasso_login_destroy ( LassoLogin* login ) gchar* lasso_login_dump ( LassoLogin* login ) GType lasso_login_get_type ( ) gint lasso_login_init_authn_request ( LassoLogin* login, const gchar* remote_providerID, LassoHttpMethod http_method ) gint lasso_login_init_idp_initiated_authn_request ( LassoLogin* login, const gchar* remote_providerID ) gint lasso_login_init_request ( LassoLogin* login, gchar* response_msg, LassoHttpMethod response_http_method ) gboolean lasso_login_must_ask_for_consent ( LassoLogin* login ) gboolean lasso_login_must_authenticate ( LassoLogin* login ) LassoLogin* lasso_login_new ( LassoServer* server ) LassoLogin* lasso_login_new_from_dump ( LassoServer* server, const gchar* dump ) int lasso_login_process_authn_request_msg ( LassoLogin* login, const char* authn_request_msg ) gint lasso_login_process_authn_response_msg ( LassoLogin* login, gchar* authn_response_msg ) int lasso_login_process_paos_response_msg ( LassoLogin* login, gchar* msg ) gint lasso_login_process_request_msg ( LassoLogin* login, gchar* request_msg ) gint lasso_login_process_response_msg ( LassoLogin* login, gchar* response_msg ) int lasso_login_validate_request_msg ( LassoLogin* login, gboolean authentication_result, gboolean is_consent_obtained ) gint lasso_logout_build_request_msg ( LassoLogout* logout ) gint lasso_logout_build_response_msg ( LassoLogout* logout ) None lasso_logout_destroy ( LassoLogout* logout ) gchar* lasso_logout_dump ( LassoLogout* logout ) gchar* lasso_logout_get_next_providerID ( LassoLogout* logout ) GType lasso_logout_get_type ( ) gint lasso_logout_init_request ( LassoLogout* logout, gchar* remote_providerID, LassoHttpMethod request_method ) LassoLogout* lasso_logout_new ( LassoServer* server ) LassoLogout* lasso_logout_new_from_dump ( LassoServer* server, const gchar* dump ) gint lasso_logout_process_request_msg ( LassoLogout* logout, gchar* request_msg ) gint lasso_logout_process_response_msg ( LassoLogout* logout, gchar* response_msg ) gint lasso_logout_reset_providerID_index ( LassoLogout* logout ) gint lasso_logout_validate_request ( LassoLogout* logout ) GType lasso_misc_text_node_get_type ( ) LassoNode* lasso_misc_text_node_new ( ) LassoMiscTextNode* lasso_misc_text_node_new_with_string ( char* content ) gint lasso_name_id_management_build_request_msg ( LassoNameIdManagement* name_id_management ) int lasso_name_id_management_build_response_msg ( LassoNameIdManagement* name_id_management ) None lasso_name_id_management_destroy ( LassoNameIdManagement* name_id_management ) char* lasso_name_id_management_dump ( LassoNameIdManagement* name_id_management ) GType lasso_name_id_management_get_type ( ) gint lasso_name_id_management_init_request ( LassoNameIdManagement* name_id_management, char* remote_provider_id, char* new_name_id, LassoHttpMethod http_method ) LassoNameIdManagement* lasso_name_id_management_new ( LassoServer* server ) LassoNameIdManagement* lasso_name_id_management_new_from_dump ( LassoServer* server, const char* dump ) gint lasso_name_id_management_process_request_msg ( LassoNameIdManagement* name_id_management, gchar* request_msg ) gint lasso_name_id_management_process_response_msg ( LassoNameIdManagement* name_id_management, gchar* response_msg ) gint lasso_name_id_management_validate_request ( LassoNameIdManagement* name_id_management ) gint lasso_name_identifier_mapping_build_request_msg ( LassoNameIdentifierMapping* mapping ) gint lasso_name_identifier_mapping_build_response_msg ( LassoNameIdentifierMapping* mapping ) None lasso_name_identifier_mapping_destroy ( LassoNameIdentifierMapping* mapping ) GType lasso_name_identifier_mapping_get_type ( ) gint lasso_name_identifier_mapping_init_request ( LassoNameIdentifierMapping* mapping, gchar* targetNamespace, gchar* remote_providerID ) LassoNameIdentifierMapping* lasso_name_identifier_mapping_new ( LassoServer* server ) gint lasso_name_identifier_mapping_process_request_msg ( LassoNameIdentifierMapping* mapping, gchar* request_msg ) gint lasso_name_identifier_mapping_process_response_msg ( LassoNameIdentifierMapping* mapping, gchar* response_msg ) gint lasso_name_identifier_mapping_validate_request ( LassoNameIdentifierMapping* mapping ) gint lasso_name_registration_build_request_msg ( LassoNameRegistration* name_registration ) gint lasso_name_registration_build_response_msg ( LassoNameRegistration* name_registration ) None lasso_name_registration_destroy ( LassoNameRegistration* name_registration ) gchar* lasso_name_registration_dump ( LassoNameRegistration* name_registration ) GType lasso_name_registration_get_type ( ) gint lasso_name_registration_init_request ( LassoNameRegistration* name_registration, char* remote_providerID, LassoHttpMethod http_method ) LassoNameRegistration* lasso_name_registration_new ( LassoServer* server ) LassoNameRegistration* lasso_name_registration_new_from_dump ( LassoServer* server, const char* dump ) gint lasso_name_registration_process_request_msg ( LassoNameRegistration* name_registration, gchar* request_msg ) gint lasso_name_registration_process_response_msg ( LassoNameRegistration* name_registration, gchar* response_msg ) gint lasso_name_registration_validate_request ( LassoNameRegistration* name_registration ) None lasso_node_destroy ( LassoNode* node ) char* lasso_node_dump ( LassoNode* node ) char* lasso_node_export_to_base64 ( LassoNode* node ) char* lasso_node_export_to_ecp_soap_response ( LassoNode* node, const char* assertionConsumerURL ) char* lasso_node_export_to_paos_request ( LassoNode* node, const char* issuer, const char* responseConsumerURL, const char* relay_state ) char* lasso_node_export_to_query ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file ) char* lasso_node_export_to_soap ( LassoNode* node ) gchar* lasso_node_export_to_xml ( LassoNode* node ) GType lasso_node_get_type ( ) xmlNode* lasso_node_get_xmlNode ( LassoNode* node, gboolean lasso_dump ) LassoMessageFormat lasso_node_init_from_message ( LassoNode* node, const char* message ) gboolean lasso_node_init_from_query ( LassoNode* node, const char* query ) int lasso_node_init_from_xml ( LassoNode* node, xmlNode* xmlnode ) LassoNode* lasso_node_new ( ) LassoNode* lasso_node_new_from_dump ( const char* dump ) LassoNode* lasso_node_new_from_soap ( const char* soap ) LassoNode* lasso_node_new_from_xmlNode ( xmlNode* node ) char* lasso_profile_get_artifact ( LassoProfile* profile ) char* lasso_profile_get_artifact_message ( LassoProfile* profile ) LassoIdentity* lasso_profile_get_identity ( LassoProfile* profile ) LassoNode* lasso_profile_get_nameIdentifier ( LassoProfile* profile ) LassoRequestType lasso_profile_get_request_type_from_soap_msg ( const gchar* soap ) LassoSession* lasso_profile_get_session ( LassoProfile* profile ) GType lasso_profile_get_type ( ) gboolean lasso_profile_is_identity_dirty ( LassoProfile* profile ) gboolean lasso_profile_is_liberty_query ( const gchar* query ) gboolean lasso_profile_is_saml_query ( const gchar* query ) gboolean lasso_profile_is_session_dirty ( LassoProfile* profile ) None lasso_profile_set_artifact_message ( LassoProfile* profile, char* message ) gint lasso_profile_set_identity_from_dump ( LassoProfile* profile, const gchar* dump ) gint lasso_profile_set_session_from_dump ( LassoProfile* profile, const gchar* dump ) gboolean lasso_provider_accept_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type, LassoHttpMethod http_method, gboolean initiate_profile ) gchar* lasso_provider_get_assertion_consumer_service_url ( LassoProvider* provider, const char* service_id ) gchar* lasso_provider_get_base64_succinct_id ( LassoProvider* provider ) LassoHttpMethod lasso_provider_get_first_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type ) GList* lasso_provider_get_metadata_list ( LassoProvider* provider, const char* name ) gchar* lasso_provider_get_metadata_one ( LassoProvider* provider, const char* name ) xmlNode* lasso_provider_get_organization ( LassoProvider* provider ) LassoProtocolConformance lasso_provider_get_protocol_conformance ( LassoProvider* provider ) GType lasso_provider_get_type ( ) gboolean lasso_provider_has_protocol_profile ( LassoProvider* provider, LassoMdProtocolType protocol_type, const char* protocol_profile ) LassoProvider* lasso_provider_new ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_dump ( const gchar* dump ) None lasso_provider_set_encryption_mode ( LassoProvider* provider, LassoEncryptionMode encryption_mode ) None lasso_provider_set_encryption_sym_key_type ( LassoProvider* provider, LassoEncryptionSymKeyType encryption_sym_key_type ) None lasso_register_dst_service ( const char* prefix, const char* href ) None lasso_register_idwsf2_dst_service ( const gchar* prefix, const gchar* href ) GType lasso_saml2_action_get_type ( ) LassoNode* lasso_saml2_action_new ( ) LassoSaml2Action* lasso_saml2_action_new_with_string ( char* content ) GType lasso_saml2_advice_get_type ( ) LassoNode* lasso_saml2_advice_new ( ) GType lasso_saml2_assertion_get_type ( ) LassoNode* lasso_saml2_assertion_new ( ) GType lasso_saml2_attribute_get_type ( ) LassoNode* lasso_saml2_attribute_new ( ) GType lasso_saml2_attribute_statement_get_type ( ) LassoNode* lasso_saml2_attribute_statement_new ( ) GType lasso_saml2_attribute_value_get_type ( ) LassoSaml2AttributeValue* lasso_saml2_attribute_value_new ( ) GType lasso_saml2_audience_restriction_get_type ( ) LassoNode* lasso_saml2_audience_restriction_new ( ) GType lasso_saml2_authn_context_get_type ( ) LassoNode* lasso_saml2_authn_context_new ( ) GType lasso_saml2_authn_statement_get_type ( ) LassoNode* lasso_saml2_authn_statement_new ( ) GType lasso_saml2_authz_decision_statement_get_type ( ) LassoNode* lasso_saml2_authz_decision_statement_new ( ) GType lasso_saml2_base_idabstract_get_type ( ) LassoNode* lasso_saml2_base_idabstract_new ( ) GType lasso_saml2_condition_abstract_get_type ( ) LassoNode* lasso_saml2_condition_abstract_new ( ) GType lasso_saml2_conditions_get_type ( ) LassoNode* lasso_saml2_conditions_new ( ) GType lasso_saml2_encrypted_element_get_type ( ) LassoNode* lasso_saml2_encrypted_element_new ( ) GType lasso_saml2_evidence_get_type ( ) LassoNode* lasso_saml2_evidence_new ( ) GType lasso_saml2_key_info_confirmation_data_get_type ( ) LassoNode* lasso_saml2_key_info_confirmation_data_new ( ) GType lasso_saml2_name_id_get_type ( ) LassoNode* lasso_saml2_name_id_new ( ) LassoSaml2NameID* lasso_saml2_name_id_new_with_string ( char* content ) GType lasso_saml2_one_time_use_get_type ( ) LassoNode* lasso_saml2_one_time_use_new ( ) GType lasso_saml2_proxy_restriction_get_type ( ) LassoNode* lasso_saml2_proxy_restriction_new ( ) GType lasso_saml2_statement_abstract_get_type ( ) LassoNode* lasso_saml2_statement_abstract_new ( ) GType lasso_saml2_subject_confirmation_data_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_data_new ( ) GType lasso_saml2_subject_confirmation_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_new ( ) GType lasso_saml2_subject_get_type ( ) GType lasso_saml2_subject_locality_get_type ( ) LassoNode* lasso_saml2_subject_locality_new ( ) LassoNode* lasso_saml2_subject_new ( ) GType lasso_saml_advice_get_type ( ) LassoNode* lasso_saml_advice_new ( ) GType lasso_saml_assertion_get_type ( ) LassoSamlAssertion* lasso_saml_assertion_new ( ) GType lasso_saml_attribute_designator_get_type ( ) LassoNode* lasso_saml_attribute_designator_new ( ) GType lasso_saml_attribute_get_type ( ) LassoSamlAttribute* lasso_saml_attribute_new ( ) GType lasso_saml_attribute_statement_get_type ( ) LassoSamlAttributeStatement* lasso_saml_attribute_statement_new ( ) GType lasso_saml_attribute_value_get_type ( ) LassoSamlAttributeValue* lasso_saml_attribute_value_new ( ) GType lasso_saml_audience_restriction_condition_get_type ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new_full ( const char* audience ) GType lasso_saml_authentication_statement_get_type ( ) LassoNode* lasso_saml_authentication_statement_new ( ) GType lasso_saml_authority_binding_get_type ( ) LassoNode* lasso_saml_authority_binding_new ( ) GType lasso_saml_condition_abstract_get_type ( ) GType lasso_saml_conditions_get_type ( ) LassoSamlConditions* lasso_saml_conditions_new ( ) GType lasso_saml_name_identifier_get_type ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new_from_xmlNode ( xmlNode* xmlnode ) GType lasso_saml_statement_abstract_get_type ( ) GType lasso_saml_subject_confirmation_get_type ( ) LassoSamlSubjectConfirmation* lasso_saml_subject_confirmation_new ( ) GType lasso_saml_subject_get_type ( ) GType lasso_saml_subject_locality_get_type ( ) LassoNode* lasso_saml_subject_locality_new ( ) LassoNode* lasso_saml_subject_new ( ) GType lasso_saml_subject_statement_abstract_get_type ( ) GType lasso_saml_subject_statement_get_type ( ) LassoNode* lasso_saml_subject_statement_new ( ) GType lasso_samlp2_artifact_resolve_get_type ( ) LassoNode* lasso_samlp2_artifact_resolve_new ( ) GType lasso_samlp2_artifact_response_get_type ( ) LassoNode* lasso_samlp2_artifact_response_new ( ) GType lasso_samlp2_assertion_id_request_get_type ( ) LassoNode* lasso_samlp2_assertion_id_request_new ( ) GType lasso_samlp2_attribute_query_get_type ( ) LassoNode* lasso_samlp2_attribute_query_new ( ) GType lasso_samlp2_authn_query_get_type ( ) LassoNode* lasso_samlp2_authn_query_new ( ) GType lasso_samlp2_authn_request_get_type ( ) LassoNode* lasso_samlp2_authn_request_new ( ) GType lasso_samlp2_authz_decision_query_get_type ( ) LassoNode* lasso_samlp2_authz_decision_query_new ( ) GType lasso_samlp2_extensions_get_type ( ) LassoNode* lasso_samlp2_extensions_new ( ) GType lasso_samlp2_idp_entry_get_type ( ) LassoNode* lasso_samlp2_idp_entry_new ( ) GType lasso_samlp2_idp_list_get_type ( ) LassoNode* lasso_samlp2_idp_list_new ( ) GType lasso_samlp2_logout_request_get_type ( ) LassoNode* lasso_samlp2_logout_request_new ( ) GType lasso_samlp2_logout_response_get_type ( ) LassoNode* lasso_samlp2_logout_response_new ( ) GType lasso_samlp2_manage_name_id_request_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_request_new ( ) GType lasso_samlp2_manage_name_id_response_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_response_new ( ) GType lasso_samlp2_name_id_mapping_request_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_request_new ( ) GType lasso_samlp2_name_id_mapping_response_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_response_new ( ) GType lasso_samlp2_name_id_policy_get_type ( ) LassoNode* lasso_samlp2_name_id_policy_new ( ) GType lasso_samlp2_request_abstract_get_type ( ) LassoNode* lasso_samlp2_request_abstract_new ( ) GType lasso_samlp2_requested_authn_context_get_type ( ) LassoNode* lasso_samlp2_requested_authn_context_new ( ) GType lasso_samlp2_response_get_type ( ) LassoNode* lasso_samlp2_response_new ( ) GType lasso_samlp2_scoping_get_type ( ) LassoNode* lasso_samlp2_scoping_new ( ) GType lasso_samlp2_status_code_get_type ( ) LassoNode* lasso_samlp2_status_code_new ( ) GType lasso_samlp2_status_detail_get_type ( ) LassoNode* lasso_samlp2_status_detail_new ( ) GType lasso_samlp2_status_get_type ( ) LassoNode* lasso_samlp2_status_new ( ) GType lasso_samlp2_status_response_get_type ( ) LassoNode* lasso_samlp2_status_response_new ( ) GType lasso_samlp2_subject_query_abstract_get_type ( ) LassoNode* lasso_samlp2_subject_query_abstract_new ( ) GType lasso_samlp2_terminate_get_type ( ) LassoNode* lasso_samlp2_terminate_new ( ) GType lasso_samlp_request_abstract_get_type ( ) GType lasso_samlp_request_get_type ( ) LassoNode* lasso_samlp_request_new ( ) None lasso_samlp_response_abstract_fill ( LassoSamlpResponseAbstract* response, const char* InResponseTo, const char* Recipient ) GType lasso_samlp_response_abstract_get_type ( ) GType lasso_samlp_response_get_type ( ) LassoNode* lasso_samlp_response_new ( ) GType lasso_samlp_status_code_get_type ( ) LassoSamlpStatusCode* lasso_samlp_status_code_new ( ) GType lasso_samlp_status_get_type ( ) LassoSamlpStatus* lasso_samlp_status_new ( ) gint lasso_server_add_provider ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) None lasso_server_destroy ( LassoServer* server ) gchar* lasso_server_dump ( LassoServer* server ) LassoProvider* lasso_server_get_provider ( LassoServer* server, const gchar* providerID ) GType lasso_server_get_type ( ) int lasso_server_load_affiliation ( LassoServer* server, const gchar* filename ) LassoServer* lasso_server_new ( const gchar* metadata, const gchar* private_key, const gchar* private_key_password, const gchar* certificate ) LassoServer* lasso_server_new_from_dump ( const gchar* dump ) int lasso_server_set_encryption_private_key ( LassoServer* server, const gchar* filename ) None lasso_session_destroy ( LassoSession* session ) gchar* lasso_session_dump ( LassoSession* session ) GList* lasso_session_get_assertions ( LassoSession* session, const char* provider_id ) gchar* lasso_session_get_provider_index ( LassoSession* session, gint index ) GType lasso_session_get_type ( ) gboolean lasso_session_is_empty ( LassoSession* session ) LassoSession* lasso_session_new ( ) LassoSession* lasso_session_new_from_dump ( const gchar* dump ) int lasso_shutdown ( ) const char* lasso_strerror ( int error_code ) lasso-2.9.0/abi/PaxHeaders/abi-2.2.900000644000000000000000000000013013766621500013664 xustar0029 mtime=1608196928.71889494 30 atime=1754992978.145544976 29 ctime=1754993575.20113351 lasso-2.9.0/abi/abi-2.2.900000644000175000017500000017153113766621500015706 0ustar00bdauvergnebdauvergneLASSO_ASSERTION_QUERY_REQUEST_TYPE_ASSERTION_ID LASSO_ASSERTION_QUERY_REQUEST_TYPE_ATTRIBUTE LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHN LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHZ_DECISION LASSO_ASSERTION_QUERY_REQUEST_TYPE_UNSET LASSO_CHECK_VERSIONABI_COMPATIBLE LASSO_CHECK_VERSION_EXACT LASSO_CHECK_VERSION_NUMERIC LASSO_DATA_SERVICE_ERROR_CANNOT_ADD_ITEM LASSO_DATA_SERVICE_ERROR_UNREGISTERED_DST LASSO_DEFEDERATION_ERROR_MISSING_NAME_IDENTIFIER LASSO_DISCOVERY_ERROR_FAILED_TO_BUILD_ENDPOINT_REFERENCE LASSO_DISCOVERY_ERROR_MISSING_REQUESTED_SERVICE LASSO_DISCOVERY_ERROR_SVC_METADATA_ASSOCIATION_ADD_FAILED LASSO_DISCOVERY_ERROR_SVC_METADATA_REGISTER_FAILED LASSO_DST_ERROR_EMPTY_REQUEST LASSO_DST_ERROR_MALFORMED_QUERY LASSO_DST_ERROR_MISSING_SERVICE_DATA LASSO_DST_ERROR_MODIFY_FAILED LASSO_DST_ERROR_MODIFY_PARTIALLY_FAILED LASSO_DST_ERROR_NEW_DATA_MISSING LASSO_DST_ERROR_NO_DATA LASSO_DST_ERROR_QUERY_FAILED LASSO_DST_ERROR_QUERY_NOT_FOUND LASSO_DST_ERROR_QUERY_PARTIALLY_FAILED LASSO_DS_ERROR_CA_CERT_CHAIN_LOAD_FAILED LASSO_DS_ERROR_CERTIFICATE_LOAD_FAILED LASSO_DS_ERROR_CONTEXT_CREATION_FAILED LASSO_DS_ERROR_DECRYPTION_FAILED LASSO_DS_ERROR_DIGEST_COMPUTE_FAILED LASSO_DS_ERROR_ENCRYPTION_FAILED LASSO_DS_ERROR_INVALID_REFERENCE_FOR_SAML LASSO_DS_ERROR_INVALID_SIGALG LASSO_DS_ERROR_INVALID_SIGNATURE LASSO_DS_ERROR_KEYS_MNGR_CREATION_FAILED LASSO_DS_ERROR_KEYS_MNGR_INIT_FAILED LASSO_DS_ERROR_PRIVATE_KEY_LOAD_FAILED LASSO_DS_ERROR_PUBLIC_KEY_LOAD_FAILED LASSO_DS_ERROR_SIGNATURE_FAILED LASSO_DS_ERROR_SIGNATURE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TEMPLATE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TMPL_CREATION_FAILED LASSO_DS_ERROR_SIGNATURE_VERIFICATION_FAILED LASSO_DS_ERROR_TOO_MUCH_REFERENCES LASSO_DS_HREF LASSO_DS_PREFIX LASSO_DURATION_DAY LASSO_DURATION_HOUR LASSO_DURATION_MINUTE LASSO_DURATION_WEEK LASSO_ECP_HREF LASSO_ECP_PREFIX LASSO_ENCRYPTION_MODE_ASSERTION LASSO_ENCRYPTION_MODE_NAMEID LASSO_ENCRYPTION_MODE_NONE LASSO_ENCRYPTION_SYM_KEY_TYPE_3DES LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_128 LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_256 LASSO_ENCRYPTION_SYM_KEY_TYPE_DEFAULT LASSO_ERROR_CAST_FAILED LASSO_ERROR_OUT_OF_MEMORY LASSO_ERROR_UNDEFINED LASSO_ERROR_UNIMPLEMENTED LASSO_HTTP_METHOD_ANY LASSO_HTTP_METHOD_ARTIFACT_GET LASSO_HTTP_METHOD_ARTIFACT_POST LASSO_HTTP_METHOD_GET LASSO_HTTP_METHOD_IDP_INITIATED LASSO_HTTP_METHOD_LAST LASSO_HTTP_METHOD_NONE LASSO_HTTP_METHOD_PAOS LASSO_HTTP_METHOD_POST LASSO_HTTP_METHOD_REDIRECT LASSO_HTTP_METHOD_SOAP LASSO_IDWSF2_DISCOVERY_ERROR_DUPLICATE LASSO_IDWSF2_DISCOVERY_ERROR_FAILED LASSO_IDWSF2_DISCOVERY_ERROR_FORBIDDEN LASSO_IDWSF2_DISCOVERY_ERROR_LOGICAL_DUPLICATE LASSO_IDWSF2_DISCOVERY_ERROR_NOT_FOUND LASSO_IDWSF2_DISCOVERY_ERROR_NO_RESULTS LASSO_IDWSF2_DST_ERROR_DUPLICATE_ITEM LASSO_IDWSF2_DST_ERROR_ITEM_NOT_FOUND LASSO_IDWSF2_DST_ERROR_PARTIAL_FAILURE LASSO_IDWSF2_DST_ERROR_UNKNOWN_STATUS_CODE LASSO_LASSO_HREF LASSO_LASSO_PREFIX LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD_PROTECTED_TRANSPORT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PREVIOUS_SESSION LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SOFTWARE_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_TIME_SYNC_TOKEN LASSO_LIB_AUTHN_CONTEXT_COMPARISON_BETTER LASSO_LIB_AUTHN_CONTEXT_COMPARISON_EXACT LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MAXIMUM LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MINIMUM LASSO_LIB_CONSENT_INAPPLICABLE LASSO_LIB_CONSENT_OBTAINED LASSO_LIB_CONSENT_OBTAINED_CURRENT_EXPLICIT LASSO_LIB_CONSENT_OBTAINED_CURRENT_IMPLICIT LASSO_LIB_CONSENT_OBTAINED_PRIOR LASSO_LIB_CONSENT_UNAVAILABLE LASSO_LIB_HREF LASSO_LIB_MAJOR_VERSION_N LASSO_LIB_MINOR_VERSION_N LASSO_LIB_NAMEID_POLICY_TYPE_ANY LASSO_LIB_NAMEID_POLICY_TYPE_FEDERATED LASSO_LIB_NAMEID_POLICY_TYPE_NONE LASSO_LIB_NAMEID_POLICY_TYPE_ONE_TIME LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENTITYID LASSO_LIB_NAME_IDENTIFIER_FORMAT_FEDERATED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ONE_TIME LASSO_LIB_PREFIX LASSO_LIB_PROTOCOL_PROFILE_BRWS_ART LASSO_LIB_PROTOCOL_PROFILE_BRWS_LECP LASSO_LIB_PROTOCOL_PROFILE_BRWS_POST LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_NIM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_SOAP LASSO_LIB_STATUS_CODE_FEDERATION_DOES_NOT_EXIST LASSO_LIB_STATUS_CODE_INVALID_ASSERTION_CONSUMER_SERVICE_INDEX LASSO_LIB_STATUS_CODE_INVALID_SIGNATURE LASSO_LIB_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_LIB_STATUS_CODE_NO_AVAILABLEIDP LASSO_LIB_STATUS_CODE_NO_PASSIVE LASSO_LIB_STATUS_CODE_NO_SUPPORTEDIDP LASSO_LIB_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_LIB_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_LIB_STATUS_CODE_UNSIGNED_AUTHN_REQUEST LASSO_LIB_STATUS_CODE_UNSUPPORTED_PROFILE LASSO_LOGIN_ERROR_ASSERTION_DOES_NOT_MATCH_REQUEST_ID LASSO_LOGIN_ERROR_ASSERTION_REPLAY LASSO_LOGIN_ERROR_CONSENT_NOT_OBTAINED LASSO_LOGIN_ERROR_FEDERATION_NOT_FOUND LASSO_LOGIN_ERROR_INVALID_NAMEIDPOLICY LASSO_LOGIN_ERROR_INVALID_SIGNATURE LASSO_LOGIN_ERROR_NO_DEFAULT_ENDPOINT LASSO_LOGIN_ERROR_REQUEST_DENIED LASSO_LOGIN_ERROR_STATUS_NOT_SUCCESS LASSO_LOGIN_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGIN_ERROR_UNSIGNED_AUTHN_REQUEST LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_ART LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_LECP LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_POST LASSO_LOGIN_PROTOCOL_PROFILE_REDIRECT LASSO_LOGOUT_ERROR_FEDERATION_NOT_FOUND LASSO_LOGOUT_ERROR_REQUEST_DENIED LASSO_LOGOUT_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGOUT_ERROR_UNSUPPORTED_PROFILE LASSO_MD_PROTOCOL_TYPE_ARTIFACT_RESOLUTION LASSO_MD_PROTOCOL_TYPE_ASSERTION_ID_REQUEST LASSO_MD_PROTOCOL_TYPE_FEDERATION_TERMINATION LASSO_MD_PROTOCOL_TYPE_MANAGE_NAME_ID LASSO_MD_PROTOCOL_TYPE_NAME_IDENTIFIER_MAPPING LASSO_MD_PROTOCOL_TYPE_REGISTER_NAME_IDENTIFIER LASSO_MD_PROTOCOL_TYPE_SINGLE_LOGOUT LASSO_MD_PROTOCOL_TYPE_SINGLE_SIGN_ON LASSO_MESSAGE_FORMAT_BASE64 LASSO_MESSAGE_FORMAT_ERROR LASSO_MESSAGE_FORMAT_QUERY LASSO_MESSAGE_FORMAT_SOAP LASSO_MESSAGE_FORMAT_UNKNOWN LASSO_MESSAGE_FORMAT_XML LASSO_MESSAGE_FORMAT_XSCHEMA_ERROR LASSO_METADATA_HREF LASSO_METADATA_PREFIX LASSO_NAME_IDENTIFIER_MAPPING_ERROR_FORBIDDEN_CALL_ON_THIS_SIDE LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_IDENTIFIER LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_NAMESPACE LASSO_PAOS_HREF LASSO_PAOS_PREFIX LASSO_PARAM_ERROR_BAD_TYPE_OR_NULL_OBJ LASSO_PARAM_ERROR_CHECK_FAILED LASSO_PARAM_ERROR_INVALID_VALUE LASSO_PARAM_ERROR_NON_INITIALIZED_OBJECT LASSO_PROFILE_ERROR_BAD_IDENTITY_DUMP LASSO_PROFILE_ERROR_BAD_SESSION_DUMP LASSO_PROFILE_ERROR_BUILDING_MESSAGE_FAILED LASSO_PROFILE_ERROR_BUILDING_QUERY_FAILED LASSO_PROFILE_ERROR_BUILDING_REQUEST_FAILED LASSO_PROFILE_ERROR_BUILDING_RESPONSE_FAILED LASSO_PROFILE_ERROR_CANNOT_FIND_A_PROVIDER LASSO_PROFILE_ERROR_CANNOT_VERIFY_SIGNATURE LASSO_PROFILE_ERROR_FEDERATION_NOT_FOUND LASSO_PROFILE_ERROR_IDENTITY_NOT_FOUND LASSO_PROFILE_ERROR_INVALID_ARTIFACT LASSO_PROFILE_ERROR_INVALID_HTTP_METHOD LASSO_PROFILE_ERROR_INVALID_ISSUER LASSO_PROFILE_ERROR_INVALID_MSG LASSO_PROFILE_ERROR_INVALID_POST_MSG LASSO_PROFILE_ERROR_INVALID_PROTOCOLPROFILE LASSO_PROFILE_ERROR_INVALID_QUERY LASSO_PROFILE_ERROR_INVALID_REQUEST LASSO_PROFILE_ERROR_INVALID_RESPONSE LASSO_PROFILE_ERROR_INVALID_SOAP_MSG LASSO_PROFILE_ERROR_MISSING_ARTIFACT LASSO_PROFILE_ERROR_MISSING_ASSERTION LASSO_PROFILE_ERROR_MISSING_ENCRYPTION_PRIVATE_KEY LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE_ADDRESS LASSO_PROFILE_ERROR_MISSING_ISSUER LASSO_PROFILE_ERROR_MISSING_NAME_IDENTIFIER LASSO_PROFILE_ERROR_MISSING_REMOTE_PROVIDERID LASSO_PROFILE_ERROR_MISSING_REQUEST LASSO_PROFILE_ERROR_MISSING_RESOURCE_OFFERING LASSO_PROFILE_ERROR_MISSING_RESPONSE LASSO_PROFILE_ERROR_MISSING_SERVER LASSO_PROFILE_ERROR_MISSING_SERVICE_DESCRIPTION LASSO_PROFILE_ERROR_MISSING_SERVICE_INSTANCE LASSO_PROFILE_ERROR_MISSING_SERVICE_TYPE LASSO_PROFILE_ERROR_MISSING_STATUS_CODE LASSO_PROFILE_ERROR_MISSING_SUBJECT LASSO_PROFILE_ERROR_NAME_IDENTIFIER_NOT_FOUND LASSO_PROFILE_ERROR_RESPONSE_DOES_NOT_MATCH_REQUEST LASSO_PROFILE_ERROR_SESSION_NOT_FOUND LASSO_PROFILE_ERROR_STATUS_NOT_SUCCESS LASSO_PROFILE_ERROR_UNKNOWN_PROFILE_URL LASSO_PROFILE_ERROR_UNKNOWN_PROVIDER LASSO_PROFILE_ERROR_UNSUPPORTED_BINDING LASSO_PROFILE_ERROR_UNSUPPORTED_PROFILE LASSO_PROFILE_SIGNATURE_HINT_FORBID LASSO_PROFILE_SIGNATURE_HINT_FORCE LASSO_PROFILE_SIGNATURE_HINT_MAYBE LASSO_PROTOCOL_LIBERTY_1_0 LASSO_PROTOCOL_LIBERTY_1_1 LASSO_PROTOCOL_LIBERTY_1_2 LASSO_PROTOCOL_NONE LASSO_PROTOCOL_SAML_2_0 LASSO_PROVIDER_ERROR_MISSING_PUBLIC_KEY LASSO_PROVIDER_ROLE_BOTH LASSO_PROVIDER_ROLE_IDP LASSO_PROVIDER_ROLE_NONE LASSO_PROVIDER_ROLE_SP LASSO_PYTHON_HREF LASSO_REGISTRY_ERROR_KEY_EXISTS LASSO_REQUEST_TYPE_DEFEDERATION LASSO_REQUEST_TYPE_DISCO_MODIFY LASSO_REQUEST_TYPE_DISCO_QUERY LASSO_REQUEST_TYPE_DST_MODIFY LASSO_REQUEST_TYPE_DST_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_ASSOCIATION_ADD LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_REGISTER LASSO_REQUEST_TYPE_INVALID LASSO_REQUEST_TYPE_LECP LASSO_REQUEST_TYPE_LOGIN LASSO_REQUEST_TYPE_LOGOUT LASSO_REQUEST_TYPE_NAME_IDENTIFIER_MAPPING LASSO_REQUEST_TYPE_NAME_ID_MANAGEMENT LASSO_REQUEST_TYPE_NAME_REGISTRATION LASSO_REQUEST_TYPE_SASL_REQUEST LASSO_SAML2_ASSERTION_HREF LASSO_SAML2_ASSERTION_INDETERMINATE LASSO_SAML2_ASSERTION_INVALID LASSO_SAML2_ASSERTION_PREFIX LASSO_SAML2_ASSERTION_VALID LASSO_SAML2_ATTRIBUTE_NAME_EPR LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_URI LASSO_SAML2_AUTHN_CONTEXT_AUTHENTICATED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_KERBEROS LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_NOMAD_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_PASSWORD_PROTECTED_TRANSPORT LASSO_SAML2_AUTHN_CONTEXT_PERSONALIZED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PGP LASSO_SAML2_AUTHN_CONTEXT_PREVIOUS_SESSION LASSO_SAML2_AUTHN_CONTEXT_SECURE_REMOTE_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD_PKI LASSO_SAML2_AUTHN_CONTEXT_SOFTWARE_PKI LASSO_SAML2_AUTHN_CONTEXT_SPKI LASSO_SAML2_AUTHN_CONTEXT_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_TIME_SYNC_TOKEN LASSO_SAML2_AUTHN_CONTEXT_TLS_CLIENT LASSO_SAML2_AUTHN_CONTEXT_UNSPECIFIED LASSO_SAML2_AUTHN_CONTEXT_X509 LASSO_SAML2_AUTHN_CONTEXT_XMLDSIG LASSO_SAML2_CONFIRMATION_METHOD_BEARER LASSO_SAML2_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML2_CONSENT_EXPLICIT LASSO_SAML2_CONSENT_IMPLICIT LASSO_SAML2_CONSENT_INAPPLICABLE LASSO_SAML2_CONSENT_OBTAINED LASSO_SAML2_CONSENT_PRIOR LASSO_SAML2_CONSENT_UNAVAILABLE LASSO_SAML2_DEFLATE_ENCODING LASSO_SAML2_METADATA_BINDING_ARTIFACT LASSO_SAML2_METADATA_BINDING_PAOS LASSO_SAML2_METADATA_BINDING_POST LASSO_SAML2_METADATA_BINDING_REDIRECT LASSO_SAML2_METADATA_BINDING_SOAP LASSO_SAML2_METADATA_HREF LASSO_SAML2_NAME_IDENTIFIER_FORMAT_EMAIL LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENTITY LASSO_SAML2_NAME_IDENTIFIER_FORMAT_KERBEROS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_PERSISTENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_TRANSIENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_UNSPECIFIED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_WINDOWS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_X509 LASSO_SAML2_PROTOCOL_HREF LASSO_SAML2_PROTOCOL_PREFIX LASSO_SAML2_STATUS_CODE_AUTHN_FAILED LASSO_SAML2_STATUS_CODE_INVALID_ATTR_NAME LASSO_SAML2_STATUS_CODE_INVALID_NAME_ID_POLICY LASSO_SAML2_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_SAML2_STATUS_CODE_NO_AVAILABLE_IDP LASSO_SAML2_STATUS_CODE_NO_PASSIVE LASSO_SAML2_STATUS_CODE_NO_SUPPORTED_IDP LASSO_SAML2_STATUS_CODE_PARTIAL_LOGOUT LASSO_SAML2_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_SAML2_STATUS_CODE_REQUESTER LASSO_SAML2_STATUS_CODE_REQUEST_DENIED LASSO_SAML2_STATUS_CODE_REQUEST_UNSUPPORTED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML2_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML2_STATUS_CODE_RESPONDER LASSO_SAML2_STATUS_CODE_SUCCESS LASSO_SAML2_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML2_STATUS_CODE_UNKNOWN_ATTR_PROFILE LASSO_SAML2_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_SAML2_STATUS_CODE_UNSUPPORTED_BINDING LASSO_SAML2_STATUS_CODE_VERSION_MISMATCH LASSO_SAML_ASSERTION_HREF LASSO_SAML_ASSERTION_PREFIX LASSO_SAML_AUTHENTICATION_METHODS_PKI LASSO_SAML_AUTHENTICATION_METHOD_HARDWARE_TOKEN LASSO_SAML_AUTHENTICATION_METHOD_KERBEROS LASSO_SAML_AUTHENTICATION_METHOD_LIBERTY LASSO_SAML_AUTHENTICATION_METHOD_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_PGP LASSO_SAML_AUTHENTICATION_METHOD_SECURE_REMOTE_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_SMARTCARD_PKI LASSO_SAML_AUTHENTICATION_METHOD_SOFTWARE_PKI LASSO_SAML_AUTHENTICATION_METHOD_UNSPECIFIED LASSO_SAML_AUTHENTICATION_METHOD_XKMS LASSO_SAML_AUTHENTICATION_METHOD_XMLD_SIG LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT01 LASSO_SAML_CONFIRMATION_METHOD_BEARER LASSO_SAML_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML_CONFIRMATION_METHOD_SENDER_VOUCHES LASSO_SAML_MAJOR_VERSION_N LASSO_SAML_MINOR_VERSION_N LASSO_SAML_PROTOCOL_HREF LASSO_SAML_PROTOCOL_PREFIX LASSO_SAML_STATUS_CODE_REQUESTER LASSO_SAML_STATUS_CODE_REQUEST_DENIED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML_STATUS_CODE_RESPONDER LASSO_SAML_STATUS_CODE_SUCCESS LASSO_SAML_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML_STATUS_CODE_VERSION_MISMATCH LASSO_SERVER_ERROR_ADD_PROVIDER_FAILED LASSO_SERVER_ERROR_ADD_PROVIDER_PROTOCOL_MISMATCH LASSO_SERVER_ERROR_INVALID_XML LASSO_SERVER_ERROR_PROVIDER_NOT_FOUND LASSO_SERVER_ERROR_SET_ENCRYPTION_PRIVATE_KEY_FAILED LASSO_SIGNATURE_METHOD_DSA_SHA1 LASSO_SIGNATURE_METHOD_RSA_SHA1 LASSO_SIGNATURE_TYPE_NONE LASSO_SIGNATURE_TYPE_SIMPLE LASSO_SIGNATURE_TYPE_WITHX509 LASSO_SOAP_ENV_ACTOR LASSO_SOAP_ENV_HREF LASSO_SOAP_ENV_PREFIX LASSO_SOAP_ERROR_MISSING_BODY LASSO_SOAP_ERROR_MISSING_ENVELOPE LASSO_SOAP_ERROR_MISSING_HEADER LASSO_SOAP_ERROR_MISSING_SOAP_FAULT_DETAIL LASSO_SOAP_ERROR_REDIRECT_REQUEST_FAULT LASSO_SOAP_FAULT_CODE_CLIENT LASSO_SOAP_FAULT_CODE_MUST_UNDERSTAND LASSO_SOAP_FAULT_CODE_SERVER LASSO_SOAP_FAULT_CODE_VERSION_MISMATCH LASSO_WSF_ENABLED LASSO_WSF_PROFILE_ERROR_INVALID_OR_MISSING_REFERENCE_TO_MESSAGE_ID LASSO_WSF_PROFILE_ERROR_MISSING_ASSERTION_ID LASSO_WSF_PROFILE_ERROR_MISSING_CORRELATION LASSO_WSF_PROFILE_ERROR_MISSING_CREDENTIAL_REF LASSO_WSF_PROFILE_ERROR_MISSING_DESCRIPTION LASSO_WSF_PROFILE_ERROR_MISSING_ENDPOINT LASSO_WSF_PROFILE_ERROR_MISSING_RESOURCE_ID LASSO_WSF_PROFILE_ERROR_MISSING_SECURITY LASSO_WSF_PROFILE_ERROR_REDIRECT_REQUEST LASSO_WSF_PROFILE_ERROR_SECURITY_MECHANISM_CHECK_FAILED LASSO_WSF_PROFILE_ERROR_SERVER_INTERACTION_REQUIRED LASSO_WSF_PROFILE_ERROR_SERVER_INTERACTION_REQUIRED_FOR_DATA LASSO_WSF_PROFILE_ERROR_SOAP_FAULT LASSO_WSF_PROFILE_ERROR_UNKNOWN_STATUS_CODE LASSO_WSF_PROFILE_ERROR_UNSUPPORTED_SECURITY_MECHANISM LASSO_WSSEC_ERROR_MISSING_SECURITY_TOKEN LASSO_XML_ERROR_ATTR_NOT_FOUND LASSO_XML_ERROR_ATTR_VALUE_NOT_FOUND LASSO_XML_ERROR_INVALID_FILE LASSO_XML_ERROR_MISSING_NAMESPACE LASSO_XML_ERROR_NODE_CONTENT_NOT_FOUND LASSO_XML_ERROR_NODE_NOT_FOUND LASSO_XML_ERROR_OBJECT_CONSTRUCTION_FAILED LASSO_XSI_HREF LASSO_XSI_PREFIX struct LassoAssertionQuery { LassoAssertionQueryPrivate* private_data } LassoAssertionQueryRequestType LassoCheckVersionMode struct LassoDefederation { void* private_data } struct LassoDsKeyInfo { LassoDsKeyValue* KeyValue } struct LassoDsKeyValue { LassoDsRsaKeyValue* RSAKeyValue } struct LassoDsRsaKeyValue { char* Modulus, char* Exponent } struct LassoEcp { gchar* assertionConsumerURL, LassoEcpPrivate* private_data } LassoEncryptionMode LassoEncryptionSymKeyType struct LassoFederation { gchar* remote_providerID, LassoNode* local_nameIdentifier, LassoNode* remote_nameIdentifier, LassoFederationPrivate* private_data } LassoHttpMethod struct LassoIdentity { GHashTable* federations, gboolean is_dirty, LassoIdentityPrivate* private_data } struct LassoLecp { LassoLibAuthnRequestEnvelope* authnRequestEnvelope, LassoLibAuthnResponseEnvelope* authnResponseEnvelope, char* assertionConsumerServiceURL, void* private_data } struct LassoLibAssertion { char* InResponseTo } struct LassoLibAuthenticationStatement { LassoLibAuthnContext* AuthnContext, char* ReauthenticateOnOrAfter, char* SessionIndex } struct LassoLibAuthnContext { char* AuthnContextClassRef, char* AuthnContextStatementRef, void* AuthenticationContextStatement } struct LassoLibAuthnRequest { GList* Extension, char* ProviderID, char* AffiliationID, char* NameIDPolicy, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolProfile, char* AssertionConsumerServiceID, LassoLibRequestAuthnContext* RequestAuthnContext, char* RelayState, LassoLibScoping* Scoping, char* consent } struct LassoLibAuthnRequestEnvelope { GList* Extension, LassoLibAuthnRequest* AuthnRequest, char* ProviderID, char* ProviderName, char* AssertionConsumerServiceURL, LassoLibIDPList* IDPList, gboolean IsPassive } struct LassoLibAuthnResponse { GList* Extension, char* ProviderID, char* RelayState, char* consent } struct LassoLibAuthnResponseEnvelope { GList* Extension, LassoLibAuthnResponse* AuthnResponse, char* AssertionConsumerServiceURL } struct LassoLibFederationTerminationNotification { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* consent, char* RelayState } struct LassoLibIDPEntries { GList* IDPEntry } struct LassoLibIDPEntry { char* ProviderID, char* ProviderName, char* Loc } struct LassoLibIDPList { LassoLibIDPEntries* IDPEntries, char* GetComplete } struct LassoLibLogoutRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* SessionIndex, char* RelayState, char* consent, char* NotOnOrAfter } struct LassoLibLogoutResponse { } struct LassoLibNameIdentifierMappingRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* TargetNamespace, char* consent } struct LassoLibNameIdentifierMappingResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, LassoSamlNameIdentifier* NameIdentifier } struct LassoLibRegisterNameIdentifierRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* IDPProvidedNameIdentifier, LassoSamlNameIdentifier* SPProvidedNameIdentifier, LassoSamlNameIdentifier* OldProvidedNameIdentifier, char* RelayState } struct LassoLibRegisterNameIdentifierResponse { } struct LassoLibRequestAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextStatementRef, char* AuthnContextComparison } struct LassoLibScoping { int ProxyCount, LassoLibIDPList* IDPList } struct LassoLibStatusResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, char* RelayState } struct LassoLibSubject { LassoSamlNameIdentifier* IDPProvidedNameIdentifier } struct LassoLogin { LassoLoginProtocolProfile protocolProfile, gchar* assertionArtifact, LassoSamlAssertion* assertion, gchar* nameIDPolicy, LassoHttpMethod http_method, LassoLoginPrivate* private_data } LassoLoginProtocolProfile struct LassoLogout { LassoNode* initial_request, LassoNode* initial_response, gchar* initial_remote_providerID, gint providerID_index, LassoHttpMethod initial_http_request_method, LassoLogoutPrivate* private_data } LassoMdProtocolType LassoMessageFormat struct LassoMiscTextNode { char* content, char* name, char* ns_href, char* ns_prefix, gboolean text_child } struct LassoNameIdManagement { void* private_data } struct LassoNameIdentifierMapping { gchar* targetNameIdentifier, void* private_data } struct LassoNameRegistration { LassoSamlNameIdentifier* oldNameIdentifier, void* private_data } struct LassoNode { } struct LassoProfile { LassoServer* server, LassoNode* request, LassoNode* response, LassoNode* nameIdentifier, gchar* remote_providerID, gchar* msg_url, gchar* msg_body, gchar* msg_relayState, LassoIdentity* identity, LassoSession* session, LassoHttpMethod http_request_method, gint signature_status, LassoProfilePrivate* private_data } LassoProfileSignatureHint LassoProtocolConformance struct LassoProvider { gchar* ProviderID, LassoProviderRole role, char* metadata_filename, gchar* public_key, gchar* ca_cert_chain, LassoProviderPrivate* private_data } LassoProviderRole LassoRequestType struct LassoSaml2Action { char* content, char* Namespace } struct LassoSaml2Advice { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2Assertion { LassoSaml2NameID* Issuer, LassoSaml2Subject* Subject, LassoSaml2Conditions* Conditions, LassoSaml2Advice* Advice, GList* Statement, GList* AuthnStatement, GList* AuthzDecisionStatement, GList* AttributeStatement, char* Version, char* ID, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file, gboolean encryption_activated, char* encryption_public_key_str, LassoEncryptionSymKeyType encryption_sym_key_type } LassoSaml2AssertionValidationState struct LassoSaml2Attribute { GList* AttributeValue, char* Name, char* NameFormat, char* FriendlyName } struct LassoSaml2AttributeStatement { GList* Attribute, GList* EncryptedAttribute } struct LassoSaml2AttributeValue { GList* any } struct LassoSaml2AudienceRestriction { char* Audience } struct LassoSaml2AuthnContext { char* AuthnContextClassRef, char* AuthnContextDeclRef, char* AuthenticatingAuthority } struct LassoSaml2AuthnStatement { LassoSaml2SubjectLocality* SubjectLocality, LassoSaml2AuthnContext* AuthnContext, char* AuthnInstant, char* SessionIndex, char* SessionNotOnOrAfter } struct LassoSaml2AuthzDecisionStatement { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource, char* Decision } struct LassoSaml2BaseIDAbstract { char* NameQualifier, char* SPNameQualifier } struct LassoSaml2ConditionAbstract { } struct LassoSaml2Conditions { GList* Condition, GList* AudienceRestriction, GList* OneTimeUse, GList* ProxyRestriction, char* NotBefore, char* NotOnOrAfter } struct LassoSaml2EncryptedElement { xmlNode* EncryptedData, GList* EncryptedKey, LassoNode* original_data } struct LassoSaml2Evidence { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2KeyInfoConfirmationData { } struct LassoSaml2NameID { char* content, char* Format, char* SPProvidedID, char* NameQualifier, char* SPNameQualifier } struct LassoSaml2OneTimeUse { } struct LassoSaml2ProxyRestriction { char* Audience, char* Count } struct LassoSaml2StatementAbstract { } struct LassoSaml2Subject { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmation* SubjectConfirmation } struct LassoSaml2SubjectConfirmation { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmationData* SubjectConfirmationData, char* Method } struct LassoSaml2SubjectConfirmationData { char* NotBefore, char* NotOnOrAfter, char* Recipient, char* InResponseTo, char* Address } struct LassoSaml2SubjectLocality { char* Address, char* DNSName } struct LassoSamlAdvice { GList* any } struct LassoSamlAssertion { LassoSamlConditions* Conditions, LassoSamlAdvice* Advice, void* Statement, LassoSamlSubjectStatement* SubjectStatement, LassoSamlAuthenticationStatement* AuthenticationStatement, void* AuthorizationDecisionStatement, LassoSamlAttributeStatement* AttributeStatement, int MajorVersion, int MinorVersion, char* AssertionID, char* Issuer, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlAttribute { gchar* attributeName, gchar* attributeNameSpace, GList* AttributeValue } struct LassoSamlAttributeDesignator { char* AttributeName, char* AttributeNamespace } struct LassoSamlAttributeStatement { GList* Attribute } struct LassoSamlAttributeValue { GList* any } struct LassoSamlAudienceRestrictionCondition { GList* Audience } struct LassoSamlAuthenticationStatement { LassoSamlSubjectLocality* SubjectLocality, GList* AuthorityBinding, char* AuthenticationMethod, char* AuthenticationInstant } struct LassoSamlAuthorityBinding { char* AuthorityKind, char* Location, char* Binding } struct LassoSamlConditionAbstract { } struct LassoSamlConditions { GList* Condition, GList* AudienceRestrictionCondition, char* NotBefore, char* NotOnOrAfter } struct LassoSamlNameIdentifier { char* NameQualifier, char* Format, char* content } struct LassoSamlStatementAbstract { } struct LassoSamlSubject { LassoSamlNameIdentifier* NameIdentifier, LassoSamlSubjectConfirmation* SubjectConfirmation, LassoSaml2EncryptedElement* EncryptedNameIdentifier } struct LassoSamlSubjectConfirmation { GList* ConfirmationMethod, char* SubjectConfirmationData, LassoDsKeyInfo* KeyInfo } struct LassoSamlSubjectLocality { char* IPAddress, char* DNSAddress } struct LassoSamlSubjectStatement { } struct LassoSamlSubjectStatementAbstract { LassoSamlSubject* Subject } struct LassoSamlp2ArtifactResolve { char* Artifact } struct LassoSamlp2ArtifactResponse { LassoNode* any } struct LassoSamlp2AssertionIDRequest { char* AssertionIDRef } struct LassoSamlp2AttributeQuery { GList* Attribute } struct LassoSamlp2AuthnQuery { LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, char* SessionIndex } struct LassoSamlp2AuthnRequest { LassoSaml2Subject* Subject, LassoSamlp2NameIDPolicy* NameIDPolicy, LassoSaml2Conditions* Conditions, LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, LassoSamlp2Scoping* Scoping, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolBinding, int AssertionConsumerServiceIndex, char* AssertionConsumerServiceURL, int AttributeConsumingServiceIndex, char* ProviderName, G_GNUC_DEPRECATED char } struct LassoSamlp2AuthzDecisionQuery { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource } struct LassoSamlp2Extensions { } struct LassoSamlp2IDPEntry { char* ProviderID, char* Name, char* Loc } struct LassoSamlp2IDPList { LassoSamlp2IDPEntry* IDPEntry, char* GetComplete } struct LassoSamlp2LogoutRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* SessionIndex, char* Reason, char* NotOnOrAfter, G_GNUC_DEPRECATED char } struct LassoSamlp2LogoutResponse { G_GNUC_DEPRECATED char } struct LassoSamlp2ManageNameIDRequest { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* NewID, LassoSaml2EncryptedElement* NewEncryptedID, LassoSamlp2Terminate* Terminate } struct LassoSamlp2ManageNameIDResponse { } struct LassoSamlp2NameIDMappingRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSamlp2NameIDPolicy* NameIDPolicy } struct LassoSamlp2NameIDMappingResponse { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID } struct LassoSamlp2NameIDPolicy { char* Format, char* SPNameQualifier, gboolean AllowCreate } struct LassoSamlp2RequestAbstract { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, char* ID, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2RequestedAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextDeclRef, char* Comparison } struct LassoSamlp2Response { GList* Assertion, GList* EncryptedAssertion } struct LassoSamlp2Scoping { LassoSamlp2IDPList* IDPList, char* RequesterID, char* ProxyCount } struct LassoSamlp2Status { LassoSamlp2StatusCode* StatusCode, char* StatusMessage, LassoSamlp2StatusDetail* StatusDetail } struct LassoSamlp2StatusCode { LassoSamlp2StatusCode* StatusCode, char* Value } struct LassoSamlp2StatusDetail { } struct LassoSamlp2StatusResponse { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, LassoSamlp2Status* Status, char* ID, char* InResponseTo, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2SubjectQueryAbstract { LassoSaml2Subject* Subject } struct LassoSamlp2Terminate { } struct LassoSamlpRequest { char* AssertionArtifact } struct LassoSamlpRequestAbstract { GList* RespondWith, char* RequestID, int MajorVersion, int MinorVersion, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpResponse { LassoSamlpStatus* Status, GList* Assertion } struct LassoSamlpResponseAbstract { char* ResponseID, char* InResponseTo, int MajorVersion, int MinorVersion, char* IssueInstant, char* Recipient, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpStatus { LassoSamlpStatusCode* StatusCode, char* StatusMessage } struct LassoSamlpStatusCode { LassoSamlpStatusCode* StatusCode, char* Value } struct LassoServer { GHashTable* providers, GHashTable* services, gchar* private_key, gchar* private_key_password, gchar* certificate, LassoSignatureMethod signature_method, LassoServerPrivate* private_data } struct LassoSession { GHashTable* assertions, gboolean is_dirty, LassoSessionPrivate* private_data } LassoSignatureMethod LassoSignatureType gint lasso_assertion_query_build_request_msg ( LassoAssertionQuery* assertion_query ) int lasso_assertion_query_build_response_msg ( LassoAssertionQuery* assertion_query ) None lasso_assertion_query_destroy ( LassoAssertionQuery* assertion_query ) GType lasso_assertion_query_get_type ( ) gint lasso_assertion_query_init_request ( LassoAssertionQuery* assertion_query, char* remote_provider_id, LassoHttpMethod http_method, LassoAssertionQueryRequestType query_request_type ) LassoAssertionQuery* lasso_assertion_query_new ( LassoServer* server ) gint lasso_assertion_query_process_request_msg ( LassoAssertionQuery* assertion_query, gchar* request_msg ) gint lasso_assertion_query_process_response_msg ( LassoAssertionQuery* assertion_query, gchar* response_msg ) gint lasso_assertion_query_validate_request ( LassoAssertionQuery* assertion_query ) int lasso_check_version ( int major, int minor, int subminor, LassoCheckVersionMode mode ) gint lasso_defederation_build_notification_msg ( LassoDefederation* defederation ) None lasso_defederation_destroy ( LassoDefederation* defederation ) GType lasso_defederation_get_type ( ) gint lasso_defederation_init_notification ( LassoDefederation* defederation, gchar* remote_providerID, LassoHttpMethod http_method ) LassoDefederation* lasso_defederation_new ( LassoServer* server ) gint lasso_defederation_process_notification_msg ( LassoDefederation* defederation, gchar* notification_msg ) gint lasso_defederation_validate_notification ( LassoDefederation* defederation ) GType lasso_ds_key_info_get_type ( ) LassoDsKeyInfo* lasso_ds_key_info_new ( ) GType lasso_ds_key_value_get_type ( ) LassoDsKeyValue* lasso_ds_key_value_new ( ) GType lasso_ds_rsa_key_value_get_type ( ) LassoDsRsaKeyValue* lasso_ds_rsa_key_value_new ( ) None lasso_ecp_destroy ( LassoEcp* ecp ) GType lasso_ecp_get_type ( ) LassoEcp* lasso_ecp_new ( LassoServer* server ) int lasso_ecp_process_authn_request_msg ( LassoEcp* ecp, const char* authn_request_msg ) int lasso_ecp_process_response_msg ( LassoEcp* ecp, const char* response_msg ) None lasso_federation_build_local_name_identifier ( LassoFederation* federation, const gchar* nameQualifier, const gchar* format, const gchar* content ) None lasso_federation_destroy ( LassoFederation* federation ) GType lasso_federation_get_type ( ) LassoFederation* lasso_federation_new ( gchar* remote_providerID ) gboolean lasso_federation_verify_name_identifier ( LassoFederation* federation, LassoNode* name_identifier ) char* lasso_get_prefix_for_dst_service_href ( const char* href ) gchar* lasso_get_prefix_for_idwsf2_dst_service_href ( const gchar* href ) None lasso_identity_destroy ( LassoIdentity* identity ) gchar* lasso_identity_dump ( LassoIdentity* identity ) LassoFederation* lasso_identity_get_federation ( LassoIdentity* identity, const char* providerID ) GType lasso_identity_get_type ( ) LassoIdentity* lasso_identity_new ( ) LassoIdentity* lasso_identity_new_from_dump ( const gchar* dump ) int lasso_init ( ) int lasso_lecp_build_authn_request_envelope_msg ( LassoLecp* lecp ) int lasso_lecp_build_authn_request_msg ( LassoLecp* lecp ) int lasso_lecp_build_authn_response_envelope_msg ( LassoLecp* lecp ) int lasso_lecp_build_authn_response_msg ( LassoLecp* lecp ) None lasso_lecp_destroy ( LassoLecp* lecp ) GType lasso_lecp_get_type ( ) int lasso_lecp_init_authn_request ( LassoLecp* lecp, const char* remote_providerID ) LassoLecp* lasso_lecp_new ( LassoServer* server ) int lasso_lecp_process_authn_request_envelope_msg ( LassoLecp* lecp, const char* request_msg ) int lasso_lecp_process_authn_request_msg ( LassoLecp* lecp, const char* authn_request_msg ) int lasso_lecp_process_authn_response_envelope_msg ( LassoLecp* lecp, const char* response_msg ) GType lasso_lib_assertion_get_type ( ) LassoLibAssertion* lasso_lib_assertion_new ( ) LassoLibAssertion* lasso_lib_assertion_new_full ( const char* issuer, const char* requestID, const char* audience, const char* notBefore, const char* notOnOrAfter ) GType lasso_lib_authentication_statement_get_type ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new_full ( const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, LassoSamlNameIdentifier* sp_identifier, LassoSamlNameIdentifier* idp_identifier ) GType lasso_lib_authn_context_get_type ( ) LassoNode* lasso_lib_authn_context_new ( ) GType lasso_lib_authn_request_envelope_get_type ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new_full ( LassoLibAuthnRequest* authnRequest, char* providerID, char* assertionConsumerServiceURL ) GType lasso_lib_authn_request_get_type ( ) LassoLibAuthnRequest* lasso_lib_authn_request_new ( ) GType lasso_lib_authn_response_envelope_get_type ( ) LassoLibAuthnResponseEnvelope* lasso_lib_authn_response_envelope_new ( LassoLibAuthnResponse* response, char* assertionConsumerServiceURL ) GType lasso_lib_authn_response_get_type ( ) LassoNode* lasso_lib_authn_response_new ( char* providerID, LassoLibAuthnRequest* request ) GType lasso_lib_federation_termination_notification_get_type ( ) LassoNode* lasso_lib_federation_termination_notification_new ( ) LassoLibFederationTerminationNotification* lasso_lib_federation_termination_notification_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_idp_entries_get_type ( ) LassoNode* lasso_lib_idp_entries_new ( ) GType lasso_lib_idp_entry_get_type ( ) LassoNode* lasso_lib_idp_entry_new ( ) GType lasso_lib_idp_list_get_type ( ) LassoNode* lasso_lib_idp_list_new ( ) GType lasso_lib_logout_request_get_type ( ) LassoNode* lasso_lib_logout_request_new ( ) LassoLibLogoutRequest* lasso_lib_logout_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_logout_response_get_type ( ) LassoNode* lasso_lib_logout_response_new ( ) LassoLibLogoutResponse* lasso_lib_logout_response_new_full ( char* providerID, const char* statusCodeValue, LassoLibLogoutRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_request_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new ( ) LassoLibNameIdentifierMappingRequest* lasso_lib_name_identifier_mapping_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, const char* targetNamespace, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_response_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new ( ) LassoLibNameIdentifierMappingResponse* lasso_lib_name_identifier_mapping_response_new_full ( char* provideRID, const char* statusCodeValue, LassoLibNameIdentifierMappingRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_request_get_type ( ) LassoNode* lasso_lib_register_name_identifier_request_new ( ) LassoLibRegisterNameIdentifierRequest* lasso_lib_register_name_identifier_request_new_full ( const char* providerID, LassoSamlNameIdentifier* idpNameIdentifier, LassoSamlNameIdentifier* spNameIdentifier, LassoSamlNameIdentifier* oldNameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_response_get_type ( ) LassoNode* lasso_lib_register_name_identifier_response_new ( ) LassoLibRegisterNameIdentifierResponse* lasso_lib_register_name_identifier_response_new_full ( const char* providerID, const char* statusCodeValue, LassoLibRegisterNameIdentifierRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_request_authn_context_get_type ( ) LassoLibRequestAuthnContext* lasso_lib_request_authn_context_new ( ) GType lasso_lib_scoping_get_type ( ) LassoLibScoping* lasso_lib_scoping_new ( ) GType lasso_lib_status_response_get_type ( ) LassoNode* lasso_lib_status_response_new ( ) GType lasso_lib_subject_get_type ( ) LassoLibSubject* lasso_lib_subject_new ( ) gint lasso_login_accept_sso ( LassoLogin* login ) gint lasso_login_build_artifact_msg ( LassoLogin* login, LassoHttpMethod http_method ) int lasso_login_build_assertion ( LassoLogin* login, const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, const char* notBefore, const char* notOnOrAfter ) gint lasso_login_build_authn_request_msg ( LassoLogin* login ) gint lasso_login_build_authn_response_msg ( LassoLogin* login ) gint lasso_login_build_request_msg ( LassoLogin* login ) gint lasso_login_build_response_msg ( LassoLogin* login, gchar* remote_providerID ) None lasso_login_destroy ( LassoLogin* login ) gchar* lasso_login_dump ( LassoLogin* login ) LassoNode* lasso_login_get_assertion ( LassoLogin* login ) GType lasso_login_get_type ( ) gint lasso_login_init_authn_request ( LassoLogin* login, const gchar* remote_providerID, LassoHttpMethod http_method ) gint lasso_login_init_idp_initiated_authn_request ( LassoLogin* login, const gchar* remote_providerID ) gint lasso_login_init_request ( LassoLogin* login, gchar* response_msg, LassoHttpMethod response_http_method ) gboolean lasso_login_must_ask_for_consent ( LassoLogin* login ) gboolean lasso_login_must_authenticate ( LassoLogin* login ) LassoLogin* lasso_login_new ( LassoServer* server ) LassoLogin* lasso_login_new_from_dump ( LassoServer* server, const gchar* dump ) int lasso_login_process_authn_request_msg ( LassoLogin* login, const char* authn_request_msg ) gint lasso_login_process_authn_response_msg ( LassoLogin* login, gchar* authn_response_msg ) int lasso_login_process_paos_response_msg ( LassoLogin* login, gchar* msg ) gint lasso_login_process_request_msg ( LassoLogin* login, gchar* request_msg ) gint lasso_login_process_response_msg ( LassoLogin* login, gchar* response_msg ) int lasso_login_validate_request_msg ( LassoLogin* login, gboolean authentication_result, gboolean is_consent_obtained ) gint lasso_logout_build_request_msg ( LassoLogout* logout ) gint lasso_logout_build_response_msg ( LassoLogout* logout ) None lasso_logout_destroy ( LassoLogout* logout ) gchar* lasso_logout_dump ( LassoLogout* logout ) gchar* lasso_logout_get_next_providerID ( LassoLogout* logout ) GType lasso_logout_get_type ( ) gint lasso_logout_init_request ( LassoLogout* logout, gchar* remote_providerID, LassoHttpMethod request_method ) LassoLogout* lasso_logout_new ( LassoServer* server ) LassoLogout* lasso_logout_new_from_dump ( LassoServer* server, const gchar* dump ) gint lasso_logout_process_request_msg ( LassoLogout* logout, gchar* request_msg ) gint lasso_logout_process_response_msg ( LassoLogout* logout, gchar* response_msg ) gint lasso_logout_reset_providerID_index ( LassoLogout* logout ) gint lasso_logout_validate_request ( LassoLogout* logout ) GType lasso_misc_text_node_get_type ( ) xmlNode* lasso_misc_text_node_get_xml_content ( LassoMiscTextNode* misc_text_node ) LassoNode* lasso_misc_text_node_new ( ) LassoMiscTextNode* lasso_misc_text_node_new_with_string ( const char* content ) LassoMiscTextNode* lasso_misc_text_node_new_with_xml_node ( xmlNode* xml_node ) None lasso_misc_text_node_set_xml_content ( LassoMiscTextNode* misc_text_node, xmlNode* node ) gint lasso_name_id_management_build_request_msg ( LassoNameIdManagement* name_id_management ) int lasso_name_id_management_build_response_msg ( LassoNameIdManagement* name_id_management ) None lasso_name_id_management_destroy ( LassoNameIdManagement* name_id_management ) char* lasso_name_id_management_dump ( LassoNameIdManagement* name_id_management ) GType lasso_name_id_management_get_type ( ) gint lasso_name_id_management_init_request ( LassoNameIdManagement* name_id_management, char* remote_provider_id, char* new_name_id, LassoHttpMethod http_method ) LassoNameIdManagement* lasso_name_id_management_new ( LassoServer* server ) LassoNameIdManagement* lasso_name_id_management_new_from_dump ( LassoServer* server, const char* dump ) gint lasso_name_id_management_process_request_msg ( LassoNameIdManagement* name_id_management, gchar* request_msg ) gint lasso_name_id_management_process_response_msg ( LassoNameIdManagement* name_id_management, gchar* response_msg ) gint lasso_name_id_management_validate_request ( LassoNameIdManagement* name_id_management ) gint lasso_name_identifier_mapping_build_request_msg ( LassoNameIdentifierMapping* mapping ) gint lasso_name_identifier_mapping_build_response_msg ( LassoNameIdentifierMapping* mapping ) None lasso_name_identifier_mapping_destroy ( LassoNameIdentifierMapping* mapping ) GType lasso_name_identifier_mapping_get_type ( ) gint lasso_name_identifier_mapping_init_request ( LassoNameIdentifierMapping* mapping, gchar* targetNamespace, gchar* remote_providerID ) LassoNameIdentifierMapping* lasso_name_identifier_mapping_new ( LassoServer* server ) gint lasso_name_identifier_mapping_process_request_msg ( LassoNameIdentifierMapping* mapping, gchar* request_msg ) gint lasso_name_identifier_mapping_process_response_msg ( LassoNameIdentifierMapping* mapping, gchar* response_msg ) gint lasso_name_identifier_mapping_validate_request ( LassoNameIdentifierMapping* mapping ) gint lasso_name_registration_build_request_msg ( LassoNameRegistration* name_registration ) gint lasso_name_registration_build_response_msg ( LassoNameRegistration* name_registration ) None lasso_name_registration_destroy ( LassoNameRegistration* name_registration ) gchar* lasso_name_registration_dump ( LassoNameRegistration* name_registration ) GType lasso_name_registration_get_type ( ) gint lasso_name_registration_init_request ( LassoNameRegistration* name_registration, char* remote_providerID, LassoHttpMethod http_method ) LassoNameRegistration* lasso_name_registration_new ( LassoServer* server ) LassoNameRegistration* lasso_name_registration_new_from_dump ( LassoServer* server, const char* dump ) gint lasso_name_registration_process_request_msg ( LassoNameRegistration* name_registration, gchar* request_msg ) gint lasso_name_registration_process_response_msg ( LassoNameRegistration* name_registration, gchar* response_msg ) gint lasso_name_registration_validate_request ( LassoNameRegistration* name_registration ) None lasso_node_cleanup_original_xmlnodes ( LassoNode* node ) None lasso_node_destroy ( LassoNode* node ) char* lasso_node_dump ( LassoNode* node ) char* lasso_node_export_to_base64 ( LassoNode* node ) char* lasso_node_export_to_ecp_soap_response ( LassoNode* node, const char* assertionConsumerURL ) char* lasso_node_export_to_paos_request ( LassoNode* node, const char* issuer, const char* responseConsumerURL, const char* relay_state ) char* lasso_node_export_to_query ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file ) char* lasso_node_export_to_soap ( LassoNode* node ) gchar* lasso_node_export_to_xml ( LassoNode* node ) const char* lasso_node_get_name ( LassoNode* node ) xmlNode* lasso_node_get_original_xmlnode ( LassoNode* node ) GType lasso_node_get_type ( ) xmlNode* lasso_node_get_xmlNode ( LassoNode* node, gboolean lasso_dump ) LassoMessageFormat lasso_node_init_from_message ( LassoNode* node, const char* message ) gboolean lasso_node_init_from_query ( LassoNode* node, const char* query ) int lasso_node_init_from_xml ( LassoNode* node, xmlNode* xmlnode ) LassoNode* lasso_node_new ( ) LassoNode* lasso_node_new_from_dump ( const char* dump ) LassoNode* lasso_node_new_from_soap ( const char* soap ) LassoNode* lasso_node_new_from_xmlNode ( xmlNode* node ) None lasso_node_set_custom_namespace ( LassoNode* node, char* prefix, char* href ) None lasso_node_set_custom_nodename ( LassoNode* node, char* nodename ) None lasso_node_set_original_xmlnode ( LassoNode* node, xmlNode* xmlnode ) char* lasso_profile_get_artifact ( LassoProfile* profile ) char* lasso_profile_get_artifact_message ( LassoProfile* profile ) LassoIdentity* lasso_profile_get_identity ( LassoProfile* profile ) LassoNode* lasso_profile_get_nameIdentifier ( LassoProfile* profile ) LassoRequestType lasso_profile_get_request_type_from_soap_msg ( const gchar* soap ) LassoSession* lasso_profile_get_session ( LassoProfile* profile ) LassoProfileSignatureHint lasso_profile_get_signature_hint ( LassoProfile* profile ) GType lasso_profile_get_type ( ) gboolean lasso_profile_is_identity_dirty ( LassoProfile* profile ) gboolean lasso_profile_is_liberty_query ( const gchar* query ) gboolean lasso_profile_is_saml_query ( const gchar* query ) gboolean lasso_profile_is_session_dirty ( LassoProfile* profile ) None lasso_profile_set_artifact_message ( LassoProfile* profile, char* message ) gint lasso_profile_set_identity_from_dump ( LassoProfile* profile, const gchar* dump ) gint lasso_profile_set_session_from_dump ( LassoProfile* profile, const gchar* dump ) None lasso_profile_set_signature_hint ( LassoProfile* profile, LassoProfileSignatureHint signature_hint ) gboolean lasso_provider_accept_http_method ( LassoProvider* provider, const LassoProvider* remote_provider, LassoMdProtocolType protocol_type, LassoHttpMethod http_method, gboolean initiate_profile ) gchar* lasso_provider_get_assertion_consumer_service_url ( const LassoProvider* provider, const char* service_id ) gchar* lasso_provider_get_base64_succinct_id ( const LassoProvider* provider ) gchar* lasso_provider_get_default_name_id_format ( const LassoProvider* provider ) LassoEncryptionMode lasso_provider_get_encryption_mode ( LassoProvider* provider ) LassoHttpMethod lasso_provider_get_first_http_method ( LassoProvider* provider, const LassoProvider* remote_provider, LassoMdProtocolType protocol_type ) const GList* lasso_provider_get_metadata_list ( const LassoProvider* provider, const char* name ) gchar* lasso_provider_get_metadata_one ( const LassoProvider* provider, const char* name ) xmlNode* lasso_provider_get_organization ( const LassoProvider* provider ) LassoProtocolConformance lasso_provider_get_protocol_conformance ( const LassoProvider* provider ) char* lasso_provider_get_sp_name_qualifier ( LassoProvider* provider ) GType lasso_provider_get_type ( ) gboolean lasso_provider_has_protocol_profile ( const LassoProvider* provider, LassoMdProtocolType protocol_type, const char* protocol_profile ) LassoProvider* lasso_provider_new ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_buffer ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_dump ( const gchar* dump ) LassoSaml2EncryptedElement* lasso_provider_saml2_node_encrypt ( const LassoProvider* provider, LassoNode* lasso_node ) None lasso_provider_set_encryption_mode ( LassoProvider* provider, LassoEncryptionMode encryption_mode ) None lasso_provider_set_encryption_sym_key_type ( LassoProvider* provider, LassoEncryptionSymKeyType encryption_sym_key_type ) int lasso_provider_verify_single_node_signature ( LassoProvider* provider, LassoNode* node, const char* id_attr_name ) None lasso_register_dst_service ( const char* prefix, const char* href ) None lasso_register_idwsf2_dst_service ( const gchar* prefix, const gchar* href ) GType lasso_saml2_action_get_type ( ) LassoNode* lasso_saml2_action_new ( ) LassoSaml2Action* lasso_saml2_action_new_with_string ( char* content ) GType lasso_saml2_advice_get_type ( ) LassoNode* lasso_saml2_advice_new ( ) int lasso_saml2_assertion_add_attribute_with_node ( LassoSaml2Assertion* assertion, const char* name, const char* nameformat, LassoNode* content ) None lasso_saml2_assertion_add_audience_restriction ( LassoSaml2Assertion* saml2_assertion, const char* providerID ) None lasso_saml2_assertion_add_proxy_limit ( LassoSaml2Assertion* saml2_assertion, int proxy_count, GList* proxy_audiences ) LassoProvider* lasso_saml2_assertion_get_issuer_provider ( const LassoSaml2Assertion* saml2_assertion, const LassoServer* server ) LassoSaml2SubjectConfirmationData* lasso_saml2_assertion_get_subject_confirmation_data ( LassoSaml2Assertion* saml2_assertion, gboolean create ) GType lasso_saml2_assertion_get_type ( ) gboolean lasso_saml2_assertion_has_audience_restriction ( LassoSaml2Assertion* saml2_assertion ) gboolean lasso_saml2_assertion_is_audience_restricted ( LassoSaml2Assertion* saml2_assertion, char* providerID ) LassoNode* lasso_saml2_assertion_new ( ) None lasso_saml2_assertion_set_basic_conditions ( LassoSaml2Assertion* saml2_assertion, time_t tolerance, time_t length, gboolean one_time_use ) None lasso_saml2_assertion_set_subject_confirmation_data ( LassoSaml2Assertion* saml2_assertion, time_t tolerance, time_t length, const char* Recipient, const char* InResponseTo, const char* Address ) None lasso_saml2_assertion_set_subject_confirmation_name_id ( LassoSaml2Assertion* saml2_assertion, LassoNode* node ) None lasso_saml2_assertion_set_subject_name_id ( LassoSaml2Assertion* saml2_assertion, LassoNode* node ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_conditions ( LassoSaml2Assertion* saml2_assertion, const char* relaying_party_providerID ) GType lasso_saml2_attribute_get_type ( ) LassoNode* lasso_saml2_attribute_new ( ) GType lasso_saml2_attribute_statement_get_type ( ) LassoNode* lasso_saml2_attribute_statement_new ( ) GType lasso_saml2_attribute_value_get_type ( ) LassoSaml2AttributeValue* lasso_saml2_attribute_value_new ( ) GType lasso_saml2_audience_restriction_get_type ( ) LassoNode* lasso_saml2_audience_restriction_new ( ) GType lasso_saml2_authn_context_get_type ( ) LassoNode* lasso_saml2_authn_context_new ( ) GType lasso_saml2_authn_statement_get_type ( ) LassoNode* lasso_saml2_authn_statement_new ( ) GType lasso_saml2_authz_decision_statement_get_type ( ) LassoNode* lasso_saml2_authz_decision_statement_new ( ) GType lasso_saml2_base_idabstract_get_type ( ) LassoNode* lasso_saml2_base_idabstract_new ( ) GType lasso_saml2_condition_abstract_get_type ( ) LassoNode* lasso_saml2_condition_abstract_new ( ) GType lasso_saml2_conditions_get_type ( ) LassoNode* lasso_saml2_conditions_new ( ) LassoSaml2EncryptedElement* lasso_saml2_encrypted_element_build_encrypted_persistent_name_id ( const char* id, const char* idpID, const LassoProvider* provider ) GType lasso_saml2_encrypted_element_get_type ( ) LassoNode* lasso_saml2_encrypted_element_new ( ) GType lasso_saml2_evidence_get_type ( ) LassoNode* lasso_saml2_evidence_new ( ) GType lasso_saml2_key_info_confirmation_data_get_type ( ) LassoNode* lasso_saml2_key_info_confirmation_data_new ( ) LassoSaml2NameID* lasso_saml2_name_id_build_persistent ( const char* id, const char* idpID, const char* providerID ) gboolean lasso_saml2_name_id_equals ( LassoSaml2NameID* name_id, LassoSaml2NameID* other_name_id ) GType lasso_saml2_name_id_get_type ( ) LassoNode* lasso_saml2_name_id_new ( ) LassoSaml2NameID* lasso_saml2_name_id_new_with_string ( char* content ) GType lasso_saml2_one_time_use_get_type ( ) LassoNode* lasso_saml2_one_time_use_new ( ) GType lasso_saml2_proxy_restriction_get_type ( ) LassoNode* lasso_saml2_proxy_restriction_new ( ) GType lasso_saml2_statement_abstract_get_type ( ) LassoNode* lasso_saml2_statement_abstract_new ( ) GType lasso_saml2_subject_confirmation_data_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_data_new ( ) GType lasso_saml2_subject_confirmation_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_new ( ) GType lasso_saml2_subject_get_type ( ) GType lasso_saml2_subject_locality_get_type ( ) LassoNode* lasso_saml2_subject_locality_new ( ) LassoNode* lasso_saml2_subject_new ( ) GType lasso_saml_advice_get_type ( ) LassoNode* lasso_saml_advice_new ( ) GType lasso_saml_assertion_get_type ( ) LassoSamlAssertion* lasso_saml_assertion_new ( ) GType lasso_saml_attribute_designator_get_type ( ) LassoNode* lasso_saml_attribute_designator_new ( ) GType lasso_saml_attribute_get_type ( ) LassoSamlAttribute* lasso_saml_attribute_new ( ) GType lasso_saml_attribute_statement_get_type ( ) LassoSamlAttributeStatement* lasso_saml_attribute_statement_new ( ) GType lasso_saml_attribute_value_get_type ( ) LassoSamlAttributeValue* lasso_saml_attribute_value_new ( ) GType lasso_saml_audience_restriction_condition_get_type ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new_full ( const char* audience ) GType lasso_saml_authentication_statement_get_type ( ) LassoNode* lasso_saml_authentication_statement_new ( ) GType lasso_saml_authority_binding_get_type ( ) LassoNode* lasso_saml_authority_binding_new ( ) GType lasso_saml_condition_abstract_get_type ( ) GType lasso_saml_conditions_get_type ( ) LassoSamlConditions* lasso_saml_conditions_new ( ) GType lasso_saml_name_identifier_get_type ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new_from_xmlNode ( xmlNode* xmlnode ) GType lasso_saml_statement_abstract_get_type ( ) GType lasso_saml_subject_confirmation_get_type ( ) LassoSamlSubjectConfirmation* lasso_saml_subject_confirmation_new ( ) GType lasso_saml_subject_get_type ( ) GType lasso_saml_subject_locality_get_type ( ) LassoNode* lasso_saml_subject_locality_new ( ) LassoNode* lasso_saml_subject_new ( ) GType lasso_saml_subject_statement_abstract_get_type ( ) GType lasso_saml_subject_statement_get_type ( ) LassoNode* lasso_saml_subject_statement_new ( ) GType lasso_samlp2_artifact_resolve_get_type ( ) LassoNode* lasso_samlp2_artifact_resolve_new ( ) GType lasso_samlp2_artifact_response_get_type ( ) LassoNode* lasso_samlp2_artifact_response_new ( ) GType lasso_samlp2_assertion_id_request_get_type ( ) LassoNode* lasso_samlp2_assertion_id_request_new ( ) GType lasso_samlp2_attribute_query_get_type ( ) LassoNode* lasso_samlp2_attribute_query_new ( ) GType lasso_samlp2_authn_query_get_type ( ) LassoNode* lasso_samlp2_authn_query_new ( ) GType lasso_samlp2_authn_request_get_type ( ) LassoNode* lasso_samlp2_authn_request_new ( ) GType lasso_samlp2_authz_decision_query_get_type ( ) LassoNode* lasso_samlp2_authz_decision_query_new ( ) GType lasso_samlp2_extensions_get_type ( ) LassoNode* lasso_samlp2_extensions_new ( ) GType lasso_samlp2_idp_entry_get_type ( ) LassoNode* lasso_samlp2_idp_entry_new ( ) GType lasso_samlp2_idp_list_get_type ( ) LassoNode* lasso_samlp2_idp_list_new ( ) GType lasso_samlp2_logout_request_get_type ( ) LassoNode* lasso_samlp2_logout_request_new ( ) GType lasso_samlp2_logout_response_get_type ( ) LassoNode* lasso_samlp2_logout_response_new ( ) GType lasso_samlp2_manage_name_id_request_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_request_new ( ) GType lasso_samlp2_manage_name_id_response_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_response_new ( ) GType lasso_samlp2_name_id_mapping_request_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_request_new ( ) GType lasso_samlp2_name_id_mapping_response_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_response_new ( ) GType lasso_samlp2_name_id_policy_get_type ( ) LassoNode* lasso_samlp2_name_id_policy_new ( ) GType lasso_samlp2_request_abstract_get_type ( ) LassoNode* lasso_samlp2_request_abstract_new ( ) GType lasso_samlp2_requested_authn_context_get_type ( ) LassoNode* lasso_samlp2_requested_authn_context_new ( ) GType lasso_samlp2_response_get_type ( ) LassoNode* lasso_samlp2_response_new ( ) GType lasso_samlp2_scoping_get_type ( ) LassoNode* lasso_samlp2_scoping_new ( ) GType lasso_samlp2_status_code_get_type ( ) LassoNode* lasso_samlp2_status_code_new ( ) GType lasso_samlp2_status_detail_get_type ( ) LassoNode* lasso_samlp2_status_detail_new ( ) GType lasso_samlp2_status_get_type ( ) LassoNode* lasso_samlp2_status_new ( ) GType lasso_samlp2_status_response_get_type ( ) LassoNode* lasso_samlp2_status_response_new ( ) GType lasso_samlp2_subject_query_abstract_get_type ( ) LassoNode* lasso_samlp2_subject_query_abstract_new ( ) GType lasso_samlp2_terminate_get_type ( ) LassoNode* lasso_samlp2_terminate_new ( ) GType lasso_samlp_request_abstract_get_type ( ) GType lasso_samlp_request_get_type ( ) LassoNode* lasso_samlp_request_new ( ) None lasso_samlp_response_abstract_fill ( LassoSamlpResponseAbstract* response, const char* InResponseTo, const char* Recipient ) GType lasso_samlp_response_abstract_get_type ( ) GType lasso_samlp_response_get_type ( ) LassoNode* lasso_samlp_response_new ( ) GType lasso_samlp_status_code_get_type ( ) LassoSamlpStatusCode* lasso_samlp_status_code_new ( ) GType lasso_samlp_status_get_type ( ) LassoSamlpStatus* lasso_samlp_status_new ( ) gint lasso_server_add_provider ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) gint lasso_server_add_provider_from_buffer ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) None lasso_server_destroy ( LassoServer* server ) gchar* lasso_server_dump ( LassoServer* server ) LassoProvider* lasso_server_get_provider ( const LassoServer* server, const gchar* providerID ) GType lasso_server_get_type ( ) int lasso_server_load_affiliation ( LassoServer* server, const gchar* filename ) LassoServer* lasso_server_new ( const gchar* metadata, const gchar* private_key, const gchar* private_key_password, const gchar* certificate ) LassoServer* lasso_server_new_from_buffers ( const gchar* metadata, const gchar* private_key, const gchar* private_key_password, const gchar* certificate ) LassoServer* lasso_server_new_from_dump ( const gchar* dump ) int lasso_server_saml2_assertion_setup_signature ( LassoServer* server, LassoSaml2Assertion* saml2_assertion ) int lasso_server_set_encryption_private_key ( LassoServer* server, const gchar* filename ) None lasso_session_destroy ( LassoSession* session ) gchar* lasso_session_dump ( LassoSession* session ) GList* lasso_session_get_assertions ( LassoSession* session, const char* provider_id ) gchar* lasso_session_get_provider_index ( LassoSession* session, gint index ) GType lasso_session_get_type ( ) gboolean lasso_session_is_empty ( LassoSession* session ) LassoSession* lasso_session_new ( ) LassoSession* lasso_session_new_from_dump ( const gchar* dump ) None lasso_set_flag ( char* flag ) int lasso_shutdown ( ) const char* lasso_strerror ( int error_code ) lasso-2.9.0/abi/PaxHeaders/abi-2.3.00000644000000000000000000000013013766621500013574 xustar0029 mtime=1608196928.71889494 30 atime=1754992978.145544976 29 ctime=1754993575.20113351 lasso-2.9.0/abi/abi-2.3.00000644000175000017500000020565113766621500015617 0ustar00bdauvergnebdauvergneBACKWARD_COMP_H LASSO_ASSERTION_QUERY_ERROR_ATTRIBUTE_REQUEST_ALREADY_EXIST LASSO_ASSERTION_QUERY_ERROR_NOT_AN_ATTRIBUTE_QUERY LASSO_ASSERTION_QUERY_REQUEST_TYPE_ASSERTION_ID LASSO_ASSERTION_QUERY_REQUEST_TYPE_ATTRIBUTE LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHN LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHZ_DECISION LASSO_ASSERTION_QUERY_REQUEST_TYPE_LAST LASSO_ASSERTION_QUERY_REQUEST_TYPE_UNSET LASSO_CHECK_VERSIONABI_COMPATIBLE LASSO_CHECK_VERSION_EXACT LASSO_CHECK_VERSION_NUMERIC LASSO_DATA_SERVICE_ERROR_CANNOT_ADD_ITEM LASSO_DATA_SERVICE_ERROR_UNREGISTERED_DST LASSO_DEFEDERATION_ERROR_MISSING_NAME_IDENTIFIER LASSO_DISCOVERY_ERROR_FAILED_TO_BUILD_ENDPOINT_REFERENCE LASSO_DISCOVERY_ERROR_MISSING_REQUESTED_SERVICE LASSO_DISCOVERY_ERROR_SVC_METADATA_ASSOCIATION_ADD_FAILED LASSO_DISCOVERY_ERROR_SVC_METADATA_REGISTER_FAILED LASSO_DST_ERROR_EMPTY_REQUEST LASSO_DST_ERROR_MALFORMED_QUERY LASSO_DST_ERROR_MISSING_SERVICE_DATA LASSO_DST_ERROR_MODIFY_FAILED LASSO_DST_ERROR_MODIFY_PARTIALLY_FAILED LASSO_DST_ERROR_NEW_DATA_MISSING LASSO_DST_ERROR_NO_DATA LASSO_DST_ERROR_QUERY_FAILED LASSO_DST_ERROR_QUERY_NOT_FOUND LASSO_DST_ERROR_QUERY_PARTIALLY_FAILED LASSO_DS_ERROR_CA_CERT_CHAIN_LOAD_FAILED LASSO_DS_ERROR_CERTIFICATE_LOAD_FAILED LASSO_DS_ERROR_CONTEXT_CREATION_FAILED LASSO_DS_ERROR_DECRYPTION_FAILED LASSO_DS_ERROR_DECRYPTION_FAILED_MISSING_PRIVATE_KEY LASSO_DS_ERROR_DIGEST_COMPUTE_FAILED LASSO_DS_ERROR_ENCRYPTION_FAILED LASSO_DS_ERROR_INVALID_REFERENCE_FOR_SAML LASSO_DS_ERROR_INVALID_SIGALG LASSO_DS_ERROR_INVALID_SIGNATURE LASSO_DS_ERROR_KEYS_MNGR_CREATION_FAILED LASSO_DS_ERROR_KEYS_MNGR_INIT_FAILED LASSO_DS_ERROR_PRIVATE_KEY_LOAD_FAILED LASSO_DS_ERROR_PUBLIC_KEY_LOAD_FAILED LASSO_DS_ERROR_SIGNATURE_FAILED LASSO_DS_ERROR_SIGNATURE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TEMPLATE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TMPL_CREATION_FAILED LASSO_DS_ERROR_SIGNATURE_VERIFICATION_FAILED LASSO_DS_ERROR_TOO_MUCH_REFERENCES LASSO_DS_HREF LASSO_DS_PREFIX LASSO_DURATION_DAY LASSO_DURATION_HOUR LASSO_DURATION_MINUTE LASSO_DURATION_WEEK LASSO_ECP_HREF LASSO_ECP_PREFIX LASSO_ENCRYPTION_MODE_ASSERTION LASSO_ENCRYPTION_MODE_NAMEID LASSO_ENCRYPTION_MODE_NONE LASSO_ENCRYPTION_SYM_KEY_TYPE_3DES LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_128 LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_256 LASSO_ENCRYPTION_SYM_KEY_TYPE_DEFAULT LASSO_ERROR_CAST_FAILED LASSO_ERROR_OUT_OF_MEMORY LASSO_ERROR_UNDEFINED LASSO_ERROR_UNIMPLEMENTED LASSO_HTTP_METHOD_ANY LASSO_HTTP_METHOD_ARTIFACT_GET LASSO_HTTP_METHOD_ARTIFACT_POST LASSO_HTTP_METHOD_GET LASSO_HTTP_METHOD_IDP_INITIATED LASSO_HTTP_METHOD_LAST LASSO_HTTP_METHOD_NONE LASSO_HTTP_METHOD_PAOS LASSO_HTTP_METHOD_POST LASSO_HTTP_METHOD_REDIRECT LASSO_HTTP_METHOD_SOAP LASSO_IDWSF2_DISCOVERY_ERROR_DUPLICATE LASSO_IDWSF2_DISCOVERY_ERROR_FAILED LASSO_IDWSF2_DISCOVERY_ERROR_FORBIDDEN LASSO_IDWSF2_DISCOVERY_ERROR_LOGICAL_DUPLICATE LASSO_IDWSF2_DISCOVERY_ERROR_NOT_FOUND LASSO_IDWSF2_DISCOVERY_ERROR_NO_RESULTS LASSO_IDWSF2_DST_ERROR_DUPLICATE_ITEM LASSO_IDWSF2_DST_ERROR_ITEM_NOT_FOUND LASSO_IDWSF2_DST_ERROR_PARTIAL_FAILURE LASSO_IDWSF2_DST_ERROR_UNKNOWN_STATUS_CODE LASSO_LASSO_HREF LASSO_LASSO_PREFIX LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD_PROTECTED_TRANSPORT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PREVIOUS_SESSION LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SOFTWARE_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_TIME_SYNC_TOKEN LASSO_LIB_AUTHN_CONTEXT_COMPARISON_BETTER LASSO_LIB_AUTHN_CONTEXT_COMPARISON_EXACT LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MAXIMUM LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MINIMUM LASSO_LIB_CONSENT_INAPPLICABLE LASSO_LIB_CONSENT_OBTAINED LASSO_LIB_CONSENT_OBTAINED_CURRENT_EXPLICIT LASSO_LIB_CONSENT_OBTAINED_CURRENT_IMPLICIT LASSO_LIB_CONSENT_OBTAINED_PRIOR LASSO_LIB_CONSENT_UNAVAILABLE LASSO_LIB_HREF LASSO_LIB_MAJOR_VERSION_N LASSO_LIB_MINOR_VERSION_N LASSO_LIB_NAMEID_POLICY_TYPE_ANY LASSO_LIB_NAMEID_POLICY_TYPE_FEDERATED LASSO_LIB_NAMEID_POLICY_TYPE_NONE LASSO_LIB_NAMEID_POLICY_TYPE_ONE_TIME LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENTITYID LASSO_LIB_NAME_IDENTIFIER_FORMAT_FEDERATED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ONE_TIME LASSO_LIB_PREFIX LASSO_LIB_PROTOCOL_PROFILE_BRWS_ART LASSO_LIB_PROTOCOL_PROFILE_BRWS_LECP LASSO_LIB_PROTOCOL_PROFILE_BRWS_POST LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_NIM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_SOAP LASSO_LIB_STATUS_CODE_FEDERATION_DOES_NOT_EXIST LASSO_LIB_STATUS_CODE_INVALID_ASSERTION_CONSUMER_SERVICE_INDEX LASSO_LIB_STATUS_CODE_INVALID_SIGNATURE LASSO_LIB_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_LIB_STATUS_CODE_NO_AVAILABLEIDP LASSO_LIB_STATUS_CODE_NO_PASSIVE LASSO_LIB_STATUS_CODE_NO_SUPPORTEDIDP LASSO_LIB_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_LIB_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_LIB_STATUS_CODE_UNSIGNED_AUTHN_REQUEST LASSO_LIB_STATUS_CODE_UNSUPPORTED_PROFILE LASSO_LOGIN_ERROR_ASSERTION_DOES_NOT_MATCH_REQUEST_ID LASSO_LOGIN_ERROR_ASSERTION_REPLAY LASSO_LOGIN_ERROR_CONSENT_NOT_OBTAINED LASSO_LOGIN_ERROR_FEDERATION_NOT_FOUND LASSO_LOGIN_ERROR_INVALID_ASSERTION_SIGNATURE LASSO_LOGIN_ERROR_INVALID_NAMEIDPOLICY LASSO_LOGIN_ERROR_INVALID_SIGNATURE LASSO_LOGIN_ERROR_NO_DEFAULT_ENDPOINT LASSO_LOGIN_ERROR_REQUEST_DENIED LASSO_LOGIN_ERROR_STATUS_NOT_SUCCESS LASSO_LOGIN_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGIN_ERROR_UNSIGNED_AUTHN_REQUEST LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_ART LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_LECP LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_POST LASSO_LOGIN_PROTOCOL_PROFILE_REDIRECT LASSO_LOGOUT_ERROR_FEDERATION_NOT_FOUND LASSO_LOGOUT_ERROR_REQUEST_DENIED LASSO_LOGOUT_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGOUT_ERROR_UNSUPPORTED_PROFILE LASSO_MD_PROTOCOL_TYPE_ARTIFACT_RESOLUTION LASSO_MD_PROTOCOL_TYPE_ASSERTION_ID_REQUEST LASSO_MD_PROTOCOL_TYPE_ATTRIBUTE LASSO_MD_PROTOCOL_TYPE_AUTHN_QUERY LASSO_MD_PROTOCOL_TYPE_AUTHZ LASSO_MD_PROTOCOL_TYPE_FEDERATION_TERMINATION LASSO_MD_PROTOCOL_TYPE_LAST LASSO_MD_PROTOCOL_TYPE_MANAGE_NAME_ID LASSO_MD_PROTOCOL_TYPE_NAME_IDENTIFIER_MAPPING LASSO_MD_PROTOCOL_TYPE_REGISTER_NAME_IDENTIFIER LASSO_MD_PROTOCOL_TYPE_SINGLE_LOGOUT LASSO_MD_PROTOCOL_TYPE_SINGLE_SIGN_ON LASSO_MESSAGE_FORMAT_BASE64 LASSO_MESSAGE_FORMAT_ERROR LASSO_MESSAGE_FORMAT_QUERY LASSO_MESSAGE_FORMAT_SOAP LASSO_MESSAGE_FORMAT_UNKNOWN LASSO_MESSAGE_FORMAT_XML LASSO_MESSAGE_FORMAT_XSCHEMA_ERROR LASSO_METADATA_HREF LASSO_METADATA_PREFIX LASSO_NAME_IDENTIFIER_MAPPING_ERROR_FORBIDDEN_CALL_ON_THIS_SIDE LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_IDENTIFIER LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_NAMESPACE LASSO_PAOS_HREF LASSO_PAOS_PREFIX LASSO_PARAM_ERROR_BAD_TYPE_OR_NULL_OBJ LASSO_PARAM_ERROR_CHECK_FAILED LASSO_PARAM_ERROR_INVALID_VALUE LASSO_PARAM_ERROR_NON_INITIALIZED_OBJECT LASSO_PROFILE_ERROR_BAD_IDENTITY_DUMP LASSO_PROFILE_ERROR_BAD_SESSION_DUMP LASSO_PROFILE_ERROR_BUILDING_MESSAGE_FAILED LASSO_PROFILE_ERROR_BUILDING_QUERY_FAILED LASSO_PROFILE_ERROR_BUILDING_REQUEST_FAILED LASSO_PROFILE_ERROR_BUILDING_RESPONSE_FAILED LASSO_PROFILE_ERROR_CANNOT_FIND_A_PROVIDER LASSO_PROFILE_ERROR_CANNOT_VERIFY_SIGNATURE LASSO_PROFILE_ERROR_FEDERATION_NOT_FOUND LASSO_PROFILE_ERROR_IDENTITY_NOT_FOUND LASSO_PROFILE_ERROR_INVALID_ARTIFACT LASSO_PROFILE_ERROR_INVALID_ASSERTION LASSO_PROFILE_ERROR_INVALID_ASSERTION_CONDITIONS LASSO_PROFILE_ERROR_INVALID_HTTP_METHOD LASSO_PROFILE_ERROR_INVALID_ISSUER LASSO_PROFILE_ERROR_INVALID_MSG LASSO_PROFILE_ERROR_INVALID_POST_MSG LASSO_PROFILE_ERROR_INVALID_PROTOCOLPROFILE LASSO_PROFILE_ERROR_INVALID_QUERY LASSO_PROFILE_ERROR_INVALID_REQUEST LASSO_PROFILE_ERROR_INVALID_RESPONSE LASSO_PROFILE_ERROR_INVALID_SOAP_MSG LASSO_PROFILE_ERROR_ISSUER_IS_NOT_AN_IDP LASSO_PROFILE_ERROR_MISSING_ARTIFACT LASSO_PROFILE_ERROR_MISSING_ASSERTION LASSO_PROFILE_ERROR_MISSING_ENCRYPTION_PRIVATE_KEY LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE_ADDRESS LASSO_PROFILE_ERROR_MISSING_ISSUER LASSO_PROFILE_ERROR_MISSING_NAME_IDENTIFIER LASSO_PROFILE_ERROR_MISSING_REMOTE_PROVIDERID LASSO_PROFILE_ERROR_MISSING_REQUEST LASSO_PROFILE_ERROR_MISSING_RESOURCE_OFFERING LASSO_PROFILE_ERROR_MISSING_RESPONSE LASSO_PROFILE_ERROR_MISSING_SERVER LASSO_PROFILE_ERROR_MISSING_SERVICE_DESCRIPTION LASSO_PROFILE_ERROR_MISSING_SERVICE_INSTANCE LASSO_PROFILE_ERROR_MISSING_SERVICE_TYPE LASSO_PROFILE_ERROR_MISSING_STATUS_CODE LASSO_PROFILE_ERROR_MISSING_SUBJECT LASSO_PROFILE_ERROR_NAME_IDENTIFIER_NOT_FOUND LASSO_PROFILE_ERROR_RESPONSE_DOES_NOT_MATCH_REQUEST LASSO_PROFILE_ERROR_SESSION_NOT_FOUND LASSO_PROFILE_ERROR_STATUS_NOT_SUCCESS LASSO_PROFILE_ERROR_UNKNOWN_ISSUER LASSO_PROFILE_ERROR_UNKNOWN_PROFILE_URL LASSO_PROFILE_ERROR_UNKNOWN_PROVIDER LASSO_PROFILE_ERROR_UNSUPPORTED_BINDING LASSO_PROFILE_ERROR_UNSUPPORTED_PROFILE LASSO_PROFILE_SIGNATURE_HINT_FORBID LASSO_PROFILE_SIGNATURE_HINT_FORCE LASSO_PROFILE_SIGNATURE_HINT_MAYBE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_FORCE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_IGNORE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_LAST LASSO_PROFILE_SIGNATURE_VERIFY_HINT_MAYBE LASSO_PROTOCOL_LIBERTY_1_0 LASSO_PROTOCOL_LIBERTY_1_1 LASSO_PROTOCOL_LIBERTY_1_2 LASSO_PROTOCOL_NONE LASSO_PROTOCOL_SAML_2_0 LASSO_PROVIDER_ERROR_MISSING_PUBLIC_KEY LASSO_PROVIDER_ROLE_ANY LASSO_PROVIDER_ROLE_ATTRIBUTE_AUTHORITY LASSO_PROVIDER_ROLE_AUTHN_AUTHORITY LASSO_PROVIDER_ROLE_AUTHZ_AUTHORITY LASSO_PROVIDER_ROLE_BOTH LASSO_PROVIDER_ROLE_IDP LASSO_PROVIDER_ROLE_LAST LASSO_PROVIDER_ROLE_NONE LASSO_PROVIDER_ROLE_SP LASSO_PYTHON_HREF LASSO_REGISTRY_ERROR_KEY_EXISTS LASSO_REQUEST_TYPE_DEFEDERATION LASSO_REQUEST_TYPE_DISCO_MODIFY LASSO_REQUEST_TYPE_DISCO_QUERY LASSO_REQUEST_TYPE_DST_MODIFY LASSO_REQUEST_TYPE_DST_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_ASSOCIATION_ADD LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_REGISTER LASSO_REQUEST_TYPE_INVALID LASSO_REQUEST_TYPE_LECP LASSO_REQUEST_TYPE_LOGIN LASSO_REQUEST_TYPE_LOGOUT LASSO_REQUEST_TYPE_NAME_IDENTIFIER_MAPPING LASSO_REQUEST_TYPE_NAME_ID_MANAGEMENT LASSO_REQUEST_TYPE_NAME_REGISTRATION LASSO_REQUEST_TYPE_SASL_REQUEST LASSO_SAML2_ACTION_GHPP_GET LASSO_SAML2_ACTION_GHPP_HEAD LASSO_SAML2_ACTION_GHPP_POST LASSO_SAML2_ACTION_GHPP_PUT LASSO_SAML2_ACTION_NAMESPACE_GHPP LASSO_SAML2_ACTION_NAMESPACE_RWEDC LASSO_SAML2_ACTION_NAMESPACE_RWEDC_NEGATION LASSO_SAML2_ACTION_NAMESPACE_UNIX LASSO_SAML2_ACTION_RWEDC_CONTROL LASSO_SAML2_ACTION_RWEDC_DELETE LASSO_SAML2_ACTION_RWEDC_EXECUTE LASSO_SAML2_ACTION_RWEDC_NEGATION LASSO_SAML2_ACTION_RWEDC_READ LASSO_SAML2_ACTION_RWEDC_WRITE LASSO_SAML2_ASSERTION_HREF LASSO_SAML2_ASSERTION_INDETERMINATE LASSO_SAML2_ASSERTION_INVALID LASSO_SAML2_ASSERTION_PREFIX LASSO_SAML2_ASSERTION_VALID LASSO_SAML2_ATTRIBUTE_NAME_EPR LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_BASIC LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_UNSPECIFIED LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_URI LASSO_SAML2_ATTRIBUTE_PROFILE_BASIC LASSO_SAML2_ATTRIBUTE_PROFILE_DCE LASSO_SAML2_ATTRIBUTE_PROFILE_UUID LASSO_SAML2_ATTRIBUTE_PROFILE_X500 LASSO_SAML2_AUTHN_CONTEXT_AUTHENTICATED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_KERBEROS LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_NOMAD_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_PASSWORD_PROTECTED_TRANSPORT LASSO_SAML2_AUTHN_CONTEXT_PERSONALIZED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PGP LASSO_SAML2_AUTHN_CONTEXT_PREVIOUS_SESSION LASSO_SAML2_AUTHN_CONTEXT_SECURE_REMOTE_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD_PKI LASSO_SAML2_AUTHN_CONTEXT_SOFTWARE_PKI LASSO_SAML2_AUTHN_CONTEXT_SPKI LASSO_SAML2_AUTHN_CONTEXT_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_TIME_SYNC_TOKEN LASSO_SAML2_AUTHN_CONTEXT_TLS_CLIENT LASSO_SAML2_AUTHN_CONTEXT_UNSPECIFIED LASSO_SAML2_AUTHN_CONTEXT_X509 LASSO_SAML2_AUTHN_CONTEXT_XMLDSIG LASSO_SAML2_CONFIRMATION_METHOD_BEARER LASSO_SAML2_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML2_CONSENT_EXPLICIT LASSO_SAML2_CONSENT_IMPLICIT LASSO_SAML2_CONSENT_INAPPLICABLE LASSO_SAML2_CONSENT_OBTAINED LASSO_SAML2_CONSENT_PRIOR LASSO_SAML2_CONSENT_UNAVAILABLE LASSO_SAML2_DEFLATE_ENCODING LASSO_SAML2_FIELD_ARTIFACT LASSO_SAML2_FIELD_ENCODING LASSO_SAML2_FIELD_RELAYSTATE LASSO_SAML2_FIELD_REQUEST LASSO_SAML2_FIELD_RESPONSE LASSO_SAML2_FIELD_SIGALG LASSO_SAML2_FIELD_SIGNATURE LASSO_SAML2_METADATA_BINDING_ARTIFACT LASSO_SAML2_METADATA_BINDING_PAOS LASSO_SAML2_METADATA_BINDING_POST LASSO_SAML2_METADATA_BINDING_REDIRECT LASSO_SAML2_METADATA_BINDING_SOAP LASSO_SAML2_METADATA_BINDING_URI LASSO_SAML2_METADATA_HREF LASSO_SAML2_METADATA_PREFIX LASSO_SAML2_NAME_IDENTIFIER_FORMAT_EMAIL LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENTITY LASSO_SAML2_NAME_IDENTIFIER_FORMAT_KERBEROS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_PERSISTENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_TRANSIENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_UNSPECIFIED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_WINDOWS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_X509 LASSO_SAML2_PROTOCOL_HREF LASSO_SAML2_PROTOCOL_PREFIX LASSO_SAML2_STATUS_CODE_AUTHN_FAILED LASSO_SAML2_STATUS_CODE_INVALID_ATTR_NAME LASSO_SAML2_STATUS_CODE_INVALID_NAME_ID_POLICY LASSO_SAML2_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_SAML2_STATUS_CODE_NO_AVAILABLE_IDP LASSO_SAML2_STATUS_CODE_NO_PASSIVE LASSO_SAML2_STATUS_CODE_NO_SUPPORTED_IDP LASSO_SAML2_STATUS_CODE_PARTIAL_LOGOUT LASSO_SAML2_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_SAML2_STATUS_CODE_REQUESTER LASSO_SAML2_STATUS_CODE_REQUEST_DENIED LASSO_SAML2_STATUS_CODE_REQUEST_UNSUPPORTED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML2_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML2_STATUS_CODE_RESPONDER LASSO_SAML2_STATUS_CODE_SUCCESS LASSO_SAML2_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML2_STATUS_CODE_UNKNOWN_ATTR_PROFILE LASSO_SAML2_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_SAML2_STATUS_CODE_UNSUPPORTED_BINDING LASSO_SAML2_STATUS_CODE_VERSION_MISMATCH LASSO_SAML_ASSERTION_HREF LASSO_SAML_ASSERTION_PREFIX LASSO_SAML_AUTHENTICATION_METHODS_PKI LASSO_SAML_AUTHENTICATION_METHOD_HARDWARE_TOKEN LASSO_SAML_AUTHENTICATION_METHOD_KERBEROS LASSO_SAML_AUTHENTICATION_METHOD_LIBERTY LASSO_SAML_AUTHENTICATION_METHOD_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_PGP LASSO_SAML_AUTHENTICATION_METHOD_SECURE_REMOTE_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_SMARTCARD_PKI LASSO_SAML_AUTHENTICATION_METHOD_SOFTWARE_PKI LASSO_SAML_AUTHENTICATION_METHOD_UNSPECIFIED LASSO_SAML_AUTHENTICATION_METHOD_XKMS LASSO_SAML_AUTHENTICATION_METHOD_XMLD_SIG LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT01 LASSO_SAML_CONFIRMATION_METHOD_BEARER LASSO_SAML_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML_CONFIRMATION_METHOD_SENDER_VOUCHES LASSO_SAML_MAJOR_VERSION_N LASSO_SAML_MINOR_VERSION_N LASSO_SAML_PROTOCOL_HREF LASSO_SAML_PROTOCOL_PREFIX LASSO_SAML_STATUS_CODE_REQUESTER LASSO_SAML_STATUS_CODE_REQUEST_DENIED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML_STATUS_CODE_RESPONDER LASSO_SAML_STATUS_CODE_SUCCESS LASSO_SAML_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML_STATUS_CODE_VERSION_MISMATCH LASSO_SERVER_ERROR_ADD_PROVIDER_FAILED LASSO_SERVER_ERROR_ADD_PROVIDER_PROTOCOL_MISMATCH LASSO_SERVER_ERROR_INVALID_XML LASSO_SERVER_ERROR_PROVIDER_NOT_FOUND LASSO_SERVER_ERROR_SET_ENCRYPTION_PRIVATE_KEY_FAILED LASSO_SIGNATURE_METHOD_DSA_SHA1 LASSO_SIGNATURE_METHOD_RSA_SHA1 LASSO_SIGNATURE_TYPE_NONE LASSO_SIGNATURE_TYPE_SIMPLE LASSO_SIGNATURE_TYPE_WITHX509 LASSO_SOAP_ENV_ACTOR LASSO_SOAP_ENV_HREF LASSO_SOAP_ENV_PREFIX LASSO_SOAP_ERROR_MISSING_BODY LASSO_SOAP_ERROR_MISSING_ENVELOPE LASSO_SOAP_ERROR_MISSING_HEADER LASSO_SOAP_ERROR_MISSING_SOAP_FAULT_DETAIL LASSO_SOAP_ERROR_REDIRECT_REQUEST_FAULT LASSO_SOAP_FAULT_CODE_CLIENT LASSO_SOAP_FAULT_CODE_MUST_UNDERSTAND LASSO_SOAP_FAULT_CODE_SERVER LASSO_SOAP_FAULT_CODE_VERSION_MISMATCH LASSO_SOAP_FAULT_REDIRECT_REQUEST LASSO_WSF_ENABLED LASSO_WSF_PROFILE_ERROR_INVALID_OR_MISSING_REFERENCE_TO_MESSAGE_ID LASSO_WSF_PROFILE_ERROR_MISSING_ASSERTION_ID LASSO_WSF_PROFILE_ERROR_MISSING_CORRELATION LASSO_WSF_PROFILE_ERROR_MISSING_CREDENTIAL_REF LASSO_WSF_PROFILE_ERROR_MISSING_DESCRIPTION LASSO_WSF_PROFILE_ERROR_MISSING_ENDPOINT LASSO_WSF_PROFILE_ERROR_MISSING_RESOURCE_ID LASSO_WSF_PROFILE_ERROR_MISSING_SECURITY LASSO_WSF_PROFILE_ERROR_MISSING_SENDER_ID LASSO_WSF_PROFILE_ERROR_REDIRECT_REQUEST LASSO_WSF_PROFILE_ERROR_REDIRECT_REQUEST_UNSUPPORTED_BY_REQUESTER LASSO_WSF_PROFILE_ERROR_SECURITY_MECHANISM_CHECK_FAILED LASSO_WSF_PROFILE_ERROR_SERVER_INTERACTION_REQUIRED LASSO_WSF_PROFILE_ERROR_SERVER_INTERACTION_REQUIRED_FOR_DATA LASSO_WSF_PROFILE_ERROR_SOAP_FAULT LASSO_WSF_PROFILE_ERROR_UNKNOWN_STATUS_CODE LASSO_WSF_PROFILE_ERROR_UNSUPPORTED_SECURITY_MECHANISM LASSO_WSSEC_ERROR_BAD_PASSWORD LASSO_WSSEC_ERROR_MISSING_SECURITY_TOKEN LASSO_XML_ERROR_ATTR_NOT_FOUND LASSO_XML_ERROR_ATTR_VALUE_NOT_FOUND LASSO_XML_ERROR_INVALID_FILE LASSO_XML_ERROR_MISSING_NAMESPACE LASSO_XML_ERROR_NODE_CONTENT_NOT_FOUND LASSO_XML_ERROR_NODE_NOT_FOUND LASSO_XML_ERROR_OBJECT_CONSTRUCTION_FAILED LASSO_XML_ERROR_SCHEMA_INVALID_FRAGMENT LASSO_XSI_HREF LASSO_XSI_PREFIX struct LassoAssertionQuery { LassoAssertionQueryPrivate* private_data } LassoAssertionQueryRequestType LassoCheckVersionMode struct LassoDefederation { } struct LassoDsKeyInfo { LassoDsKeyValue* KeyValue } struct LassoDsKeyValue { LassoDsRsaKeyValue* RSAKeyValue } struct LassoDsRsaKeyValue { char* Modulus, char* Exponent } struct LassoEcp { gchar* assertionConsumerURL, LassoEcpPrivate* private_data } LassoEncryptionMode LassoEncryptionSymKeyType struct LassoFederation { gchar* remote_providerID, LassoNode* local_nameIdentifier, LassoNode* remote_nameIdentifier, LassoFederationPrivate* private_data } LassoHttpMethod struct LassoIdentity { GHashTable* federations, gboolean is_dirty, LassoIdentityPrivate* private_data } struct LassoLecp { LassoLibAuthnRequestEnvelope* authnRequestEnvelope, LassoLibAuthnResponseEnvelope* authnResponseEnvelope, char* assertionConsumerServiceURL } struct LassoLibAssertion { char* InResponseTo } struct LassoLibAuthenticationStatement { LassoLibAuthnContext* AuthnContext, char* ReauthenticateOnOrAfter, char* SessionIndex } struct LassoLibAuthnContext { char* AuthnContextClassRef, char* AuthnContextStatementRef } struct LassoLibAuthnRequest { GList* Extension, char* ProviderID, char* AffiliationID, char* NameIDPolicy, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolProfile, char* AssertionConsumerServiceID, LassoLibRequestAuthnContext* RequestAuthnContext, char* RelayState, LassoLibScoping* Scoping, char* consent } struct LassoLibAuthnRequestEnvelope { GList* Extension, LassoLibAuthnRequest* AuthnRequest, char* ProviderID, char* ProviderName, char* AssertionConsumerServiceURL, LassoLibIDPList* IDPList, gboolean IsPassive } struct LassoLibAuthnResponse { GList* Extension, char* ProviderID, char* RelayState, char* consent } struct LassoLibAuthnResponseEnvelope { GList* Extension, LassoLibAuthnResponse* AuthnResponse, char* AssertionConsumerServiceURL } struct LassoLibFederationTerminationNotification { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* consent, char* RelayState } struct LassoLibIDPEntries { GList* IDPEntry } struct LassoLibIDPEntry { char* ProviderID, char* ProviderName, char* Loc } struct LassoLibIDPList { LassoLibIDPEntries* IDPEntries, char* GetComplete } struct LassoLibLogoutRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* SessionIndex, char* RelayState, char* consent, char* NotOnOrAfter } struct LassoLibLogoutResponse { } struct LassoLibNameIdentifierMappingRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* TargetNamespace, char* consent } struct LassoLibNameIdentifierMappingResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, LassoSamlNameIdentifier* NameIdentifier } struct LassoLibRegisterNameIdentifierRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* IDPProvidedNameIdentifier, LassoSamlNameIdentifier* SPProvidedNameIdentifier, LassoSamlNameIdentifier* OldProvidedNameIdentifier, char* RelayState } struct LassoLibRegisterNameIdentifierResponse { } struct LassoLibRequestAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextStatementRef, char* AuthnContextComparison } struct LassoLibScoping { int ProxyCount, LassoLibIDPList* IDPList } struct LassoLibStatusResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, char* RelayState } struct LassoLibSubject { LassoSamlNameIdentifier* IDPProvidedNameIdentifier } struct LassoLogin { LassoLoginProtocolProfile protocolProfile, gchar* assertionArtifact, LassoSamlAssertion* assertion, gchar* nameIDPolicy, LassoHttpMethod http_method, LassoLoginPrivate* private_data } LassoLoginProtocolProfile struct LassoLogout { LassoNode* initial_request, LassoNode* initial_response, gchar* initial_remote_providerID, gint providerID_index, LassoHttpMethod initial_http_request_method, LassoLogoutPrivate* private_data } LassoMdProtocolType LassoMessageFormat struct LassoMiscTextNode { char* content, char* name, char* ns_href, char* ns_prefix, gboolean text_child } struct LassoNameIdManagement { } struct LassoNameIdentifierMapping { gchar* targetNameIdentifier } struct LassoNameRegistration { LassoSamlNameIdentifier* oldNameIdentifier } struct LassoNode { } struct LassoProfile { LassoServer* server, LassoNode* request, LassoNode* response, LassoNode* nameIdentifier, gchar* remote_providerID, gchar* msg_url, gchar* msg_body, gchar* msg_relayState, LassoIdentity* identity, LassoSession* session, LassoHttpMethod http_request_method, gint signature_status, LassoProfilePrivate* private_data } LassoProfileSignatureHint LassoProfileSignatureVerifyHint LassoProtocolConformance struct LassoProvider { gchar* ProviderID, LassoProviderRole role, char* metadata_filename, gchar* public_key, gchar* ca_cert_chain, LassoProviderPrivate* private_data } LassoProviderRole LassoRequestType struct LassoSaml2Action { char* content, char* Namespace } struct LassoSaml2Advice { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2Assertion { LassoSaml2NameID* Issuer, LassoSaml2Subject* Subject, LassoSaml2Conditions* Conditions, LassoSaml2Advice* Advice, GList* Statement, GList* AuthnStatement, GList* AuthzDecisionStatement, GList* AttributeStatement, char* Version, char* ID, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file, gboolean encryption_activated, char* encryption_public_key_str, LassoEncryptionSymKeyType encryption_sym_key_type } LassoSaml2AssertionValidationState struct LassoSaml2Attribute { GList* AttributeValue, char* Name, char* NameFormat, char* FriendlyName } struct LassoSaml2AttributeStatement { GList* Attribute, GList* EncryptedAttribute } struct LassoSaml2AttributeValue { GList* any } struct LassoSaml2AudienceRestriction { char* Audience } struct LassoSaml2AuthnContext { char* AuthnContextClassRef, char* AuthnContextDeclRef, char* AuthenticatingAuthority } struct LassoSaml2AuthnStatement { LassoSaml2SubjectLocality* SubjectLocality, LassoSaml2AuthnContext* AuthnContext, char* AuthnInstant, char* SessionIndex, char* SessionNotOnOrAfter } struct LassoSaml2AuthzDecisionStatement { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource, char* Decision } struct LassoSaml2BaseIDAbstract { char* NameQualifier, char* SPNameQualifier } struct LassoSaml2ConditionAbstract { } struct LassoSaml2Conditions { GList* Condition, GList* AudienceRestriction, GList* OneTimeUse, GList* ProxyRestriction, char* NotBefore, char* NotOnOrAfter } struct LassoSaml2EncryptedElement { xmlNode* EncryptedData, GList* EncryptedKey, LassoNode* original_data } struct LassoSaml2Evidence { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2KeyInfoConfirmationData { } struct LassoSaml2NameID { char* content, char* Format, char* SPProvidedID, char* NameQualifier, char* SPNameQualifier } struct LassoSaml2OneTimeUse { } struct LassoSaml2ProxyRestriction { char* Audience, char* Count } struct LassoSaml2StatementAbstract { } struct LassoSaml2Subject { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmation* SubjectConfirmation } struct LassoSaml2SubjectConfirmation { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmationData* SubjectConfirmationData, char* Method } struct LassoSaml2SubjectConfirmationData { char* NotBefore, char* NotOnOrAfter, char* Recipient, char* InResponseTo, char* Address } struct LassoSaml2SubjectLocality { char* Address, char* DNSName } struct LassoSamlAdvice { GList* AssertionIDReference, LassoNode* Assertion } struct LassoSamlAssertion { LassoSamlConditions* Conditions, LassoSamlAdvice* Advice, LassoSamlSubjectStatement* SubjectStatement, LassoSamlAuthenticationStatement* AuthenticationStatement, LassoSamlAttributeStatement* AttributeStatement, int MajorVersion, int MinorVersion, char* AssertionID, char* Issuer, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlAttribute { gchar* attributeName, gchar* attributeNameSpace, GList* AttributeValue } struct LassoSamlAttributeDesignator { char* AttributeName, char* AttributeNamespace } struct LassoSamlAttributeStatement { GList* Attribute } struct LassoSamlAttributeValue { GList* any } struct LassoSamlAudienceRestrictionCondition { GList* Audience } struct LassoSamlAuthenticationStatement { LassoSamlSubjectLocality* SubjectLocality, GList* AuthorityBinding, char* AuthenticationMethod, char* AuthenticationInstant } struct LassoSamlAuthorityBinding { char* AuthorityKind, char* Location, char* Binding } struct LassoSamlConditionAbstract { } struct LassoSamlConditions { GList* Condition, GList* AudienceRestrictionCondition, char* NotBefore, char* NotOnOrAfter } struct LassoSamlNameIdentifier { char* NameQualifier, char* Format, char* content } struct LassoSamlStatementAbstract { } struct LassoSamlSubject { LassoSamlNameIdentifier* NameIdentifier, LassoSamlSubjectConfirmation* SubjectConfirmation, LassoSaml2EncryptedElement* EncryptedNameIdentifier } struct LassoSamlSubjectConfirmation { GList* ConfirmationMethod, char* SubjectConfirmationData, LassoDsKeyInfo* KeyInfo } struct LassoSamlSubjectLocality { char* IPAddress, char* DNSAddress } struct LassoSamlSubjectStatement { } struct LassoSamlSubjectStatementAbstract { LassoSamlSubject* Subject } struct LassoSamlp2ArtifactResolve { char* Artifact } struct LassoSamlp2ArtifactResponse { LassoNode* any } struct LassoSamlp2AssertionIDRequest { char* AssertionIDRef } struct LassoSamlp2AttributeQuery { GList* Attribute } struct LassoSamlp2AuthnQuery { LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, char* SessionIndex } struct LassoSamlp2AuthnRequest { LassoSaml2Subject* Subject, LassoSamlp2NameIDPolicy* NameIDPolicy, LassoSaml2Conditions* Conditions, LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, LassoSamlp2Scoping* Scoping, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolBinding, int AssertionConsumerServiceIndex, char* AssertionConsumerServiceURL, int AttributeConsumingServiceIndex, char* ProviderName, G_GNUC_DEPRECATED char } struct LassoSamlp2AuthzDecisionQuery { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource } struct LassoSamlp2Extensions { } struct LassoSamlp2IDPEntry { char* ProviderID, char* Name, char* Loc } struct LassoSamlp2IDPList { LassoSamlp2IDPEntry* IDPEntry, char* GetComplete } struct LassoSamlp2LogoutRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* SessionIndex, char* Reason, char* NotOnOrAfter, G_GNUC_DEPRECATED char } struct LassoSamlp2LogoutResponse { G_GNUC_DEPRECATED char } struct LassoSamlp2ManageNameIDRequest { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* NewID, LassoSaml2EncryptedElement* NewEncryptedID, LassoSamlp2Terminate* Terminate } struct LassoSamlp2ManageNameIDResponse { } struct LassoSamlp2NameIDMappingRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSamlp2NameIDPolicy* NameIDPolicy } struct LassoSamlp2NameIDMappingResponse { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID } struct LassoSamlp2NameIDPolicy { char* Format, char* SPNameQualifier, gboolean AllowCreate } struct LassoSamlp2RequestAbstract { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, char* ID, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2RequestedAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextDeclRef, char* Comparison } struct LassoSamlp2Response { GList* Assertion, GList* EncryptedAssertion } struct LassoSamlp2Scoping { LassoSamlp2IDPList* IDPList, char* RequesterID, char* ProxyCount } struct LassoSamlp2Status { LassoSamlp2StatusCode* StatusCode, char* StatusMessage, LassoSamlp2StatusDetail* StatusDetail } struct LassoSamlp2StatusCode { LassoSamlp2StatusCode* StatusCode, char* Value } struct LassoSamlp2StatusDetail { } struct LassoSamlp2StatusResponse { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, LassoSamlp2Status* Status, char* ID, char* InResponseTo, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2SubjectQueryAbstract { LassoSaml2Subject* Subject } struct LassoSamlp2Terminate { } struct LassoSamlpRequest { char* AssertionArtifact } struct LassoSamlpRequestAbstract { GList* RespondWith, char* RequestID, int MajorVersion, int MinorVersion, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpResponse { LassoSamlpStatus* Status, GList* Assertion } struct LassoSamlpResponseAbstract { char* ResponseID, char* InResponseTo, int MajorVersion, int MinorVersion, char* IssueInstant, char* Recipient, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpStatus { LassoSamlpStatusCode* StatusCode, char* StatusMessage } struct LassoSamlpStatusCode { LassoSamlpStatusCode* StatusCode, char* Value } struct LassoServer { GHashTable* providers, GHashTable* services, gchar* private_key, gchar* private_key_password, gchar* certificate, LassoSignatureMethod signature_method, LassoServerPrivate* private_data } struct LassoSession { GHashTable* assertions, gboolean is_dirty, LassoSessionPrivate* private_data } LassoSignatureMethod LassoSignatureType lasso_error_t lasso_assertion_query_add_attribute_request ( LassoAssertionQuery* assertion_query, char* format, char* name ) lasso_error_t lasso_assertion_query_build_request_msg ( LassoAssertionQuery* assertion_query ) lasso_error_t lasso_assertion_query_build_response_msg ( LassoAssertionQuery* assertion_query ) None lasso_assertion_query_destroy ( LassoAssertionQuery* assertion_query ) LassoAssertionQueryRequestType lasso_assertion_query_get_request_type ( LassoAssertionQuery* assertion_query ) GType lasso_assertion_query_get_type ( ) lasso_error_t lasso_assertion_query_init_request ( LassoAssertionQuery* assertion_query, char* remote_provider_id, LassoHttpMethod http_method, LassoAssertionQueryRequestType query_request_type ) LassoAssertionQuery* lasso_assertion_query_new ( LassoServer* server ) lasso_error_t lasso_assertion_query_process_request_msg ( LassoAssertionQuery* assertion_query, gchar* request_msg ) lasso_error_t lasso_assertion_query_process_response_msg ( LassoAssertionQuery* assertion_query, gchar* response_msg ) lasso_error_t lasso_assertion_query_validate_request ( LassoAssertionQuery* assertion_query ) char* lasso_build_unique_id ( unsigned int size ) int lasso_check_version ( int major, int minor, int subminor, LassoCheckVersionMode mode ) lasso_error_t lasso_defederation_build_notification_msg ( LassoDefederation* defederation ) None lasso_defederation_destroy ( LassoDefederation* defederation ) GType lasso_defederation_get_type ( ) lasso_error_t lasso_defederation_init_notification ( LassoDefederation* defederation, gchar* remote_providerID, LassoHttpMethod http_method ) LassoDefederation* lasso_defederation_new ( LassoServer* server ) lasso_error_t lasso_defederation_process_notification_msg ( LassoDefederation* defederation, gchar* notification_msg ) lasso_error_t lasso_defederation_validate_notification ( LassoDefederation* defederation ) GType lasso_ds_key_info_get_type ( ) LassoDsKeyInfo* lasso_ds_key_info_new ( ) GType lasso_ds_key_value_get_type ( ) LassoDsKeyValue* lasso_ds_key_value_new ( ) GType lasso_ds_rsa_key_value_get_type ( ) LassoDsRsaKeyValue* lasso_ds_rsa_key_value_new ( ) None lasso_ecp_destroy ( LassoEcp* ecp ) GType lasso_ecp_get_type ( ) LassoEcp* lasso_ecp_new ( LassoServer* server ) lasso_error_t lasso_ecp_process_authn_request_msg ( LassoEcp* ecp, const char* authn_request_msg ) lasso_error_t lasso_ecp_process_response_msg ( LassoEcp* ecp, const char* response_msg ) None lasso_federation_build_local_name_identifier ( LassoFederation* federation, const gchar* nameQualifier, const gchar* format, const gchar* content ) None lasso_federation_destroy ( LassoFederation* federation ) GType lasso_federation_get_type ( ) LassoFederation* lasso_federation_new ( const gchar* remote_providerID ) gboolean lasso_federation_verify_name_identifier ( LassoFederation* federation, LassoNode* name_identifier ) char* lasso_get_prefix_for_dst_service_href ( const char* href ) gchar* lasso_get_prefix_for_idwsf2_dst_service_href ( const gchar* href ) None lasso_identity_destroy ( LassoIdentity* identity ) gchar* lasso_identity_dump ( LassoIdentity* identity ) LassoFederation* lasso_identity_get_federation ( LassoIdentity* identity, const char* providerID ) GType lasso_identity_get_type ( ) LassoIdentity* lasso_identity_new ( ) LassoIdentity* lasso_identity_new_from_dump ( const gchar* dump ) lasso_error_t lasso_init ( ) lasso_error_t lasso_lecp_build_authn_request_envelope_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_request_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_response_envelope_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_response_msg ( LassoLecp* lecp ) None lasso_lecp_destroy ( LassoLecp* lecp ) GType lasso_lecp_get_type ( ) lasso_error_t lasso_lecp_init_authn_request ( LassoLecp* lecp, const char* remote_providerID ) LassoLecp* lasso_lecp_new ( LassoServer* server ) lasso_error_t lasso_lecp_process_authn_request_envelope_msg ( LassoLecp* lecp, const char* request_msg ) lasso_error_t lasso_lecp_process_authn_request_msg ( LassoLecp* lecp, const char* authn_request_msg ) lasso_error_t lasso_lecp_process_authn_response_envelope_msg ( LassoLecp* lecp, const char* response_msg ) GType lasso_lib_assertion_get_type ( ) LassoLibAssertion* lasso_lib_assertion_new ( ) LassoLibAssertion* lasso_lib_assertion_new_full ( const char* issuer, const char* requestID, const char* audience, const char* notBefore, const char* notOnOrAfter ) GType lasso_lib_authentication_statement_get_type ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new_full ( const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, LassoSamlNameIdentifier* sp_identifier, LassoSamlNameIdentifier* idp_identifier ) GType lasso_lib_authn_context_get_type ( ) LassoNode* lasso_lib_authn_context_new ( ) GType lasso_lib_authn_request_envelope_get_type ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new_full ( LassoLibAuthnRequest* authnRequest, char* providerID, char* assertionConsumerServiceURL ) GType lasso_lib_authn_request_get_type ( ) LassoLibAuthnRequest* lasso_lib_authn_request_new ( ) GType lasso_lib_authn_response_envelope_get_type ( ) LassoLibAuthnResponseEnvelope* lasso_lib_authn_response_envelope_new ( LassoLibAuthnResponse* response, char* assertionConsumerServiceURL ) GType lasso_lib_authn_response_get_type ( ) LassoNode* lasso_lib_authn_response_new ( char* providerID, LassoLibAuthnRequest* request ) GType lasso_lib_federation_termination_notification_get_type ( ) LassoNode* lasso_lib_federation_termination_notification_new ( ) LassoNode* lasso_lib_federation_termination_notification_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_idp_entries_get_type ( ) LassoNode* lasso_lib_idp_entries_new ( ) GType lasso_lib_idp_entry_get_type ( ) LassoNode* lasso_lib_idp_entry_new ( ) GType lasso_lib_idp_list_get_type ( ) LassoNode* lasso_lib_idp_list_new ( ) GType lasso_lib_logout_request_get_type ( ) LassoNode* lasso_lib_logout_request_new ( ) LassoNode* lasso_lib_logout_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_logout_response_get_type ( ) LassoNode* lasso_lib_logout_response_new ( ) LassoNode* lasso_lib_logout_response_new_full ( char* providerID, const char* statusCodeValue, LassoLibLogoutRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_request_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, const char* targetNamespace, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_response_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new_full ( char* provideRID, const char* statusCodeValue, LassoLibNameIdentifierMappingRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_request_get_type ( ) LassoNode* lasso_lib_register_name_identifier_request_new ( ) LassoNode* lasso_lib_register_name_identifier_request_new_full ( const char* providerID, LassoSamlNameIdentifier* idpNameIdentifier, LassoSamlNameIdentifier* spNameIdentifier, LassoSamlNameIdentifier* oldNameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_response_get_type ( ) LassoNode* lasso_lib_register_name_identifier_response_new ( ) LassoNode* lasso_lib_register_name_identifier_response_new_full ( const char* providerID, const char* statusCodeValue, LassoLibRegisterNameIdentifierRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_request_authn_context_get_type ( ) LassoLibRequestAuthnContext* lasso_lib_request_authn_context_new ( ) GType lasso_lib_scoping_get_type ( ) LassoLibScoping* lasso_lib_scoping_new ( ) GType lasso_lib_status_response_get_type ( ) LassoNode* lasso_lib_status_response_new ( ) GType lasso_lib_subject_get_type ( ) LassoLibSubject* lasso_lib_subject_new ( ) lasso_error_t lasso_login_accept_sso ( LassoLogin* login ) lasso_error_t lasso_login_build_artifact_msg ( LassoLogin* login, LassoHttpMethod http_method ) lasso_error_t lasso_login_build_assertion ( LassoLogin* login, const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, const char* notBefore, const char* notOnOrAfter ) lasso_error_t lasso_login_build_authn_request_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_authn_response_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_request_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_response_msg ( LassoLogin* login, gchar* remote_providerID ) None lasso_login_destroy ( LassoLogin* login ) gchar* lasso_login_dump ( LassoLogin* login ) LassoNode* lasso_login_get_assertion ( LassoLogin* login ) GType lasso_login_get_type ( ) lasso_error_t lasso_login_init_authn_request ( LassoLogin* login, const gchar* remote_providerID, LassoHttpMethod http_method ) lasso_error_t lasso_login_init_idp_initiated_authn_request ( LassoLogin* login, const gchar* remote_providerID ) lasso_error_t lasso_login_init_request ( LassoLogin* login, gchar* response_msg, LassoHttpMethod response_http_method ) gboolean lasso_login_must_ask_for_consent ( LassoLogin* login ) gboolean lasso_login_must_authenticate ( LassoLogin* login ) LassoLogin* lasso_login_new ( LassoServer* server ) LassoLogin* lasso_login_new_from_dump ( LassoServer* server, const gchar* dump ) lasso_error_t lasso_login_process_authn_request_msg ( LassoLogin* login, const char* authn_request_msg ) lasso_error_t lasso_login_process_authn_response_msg ( LassoLogin* login, gchar* authn_response_msg ) lasso_error_t lasso_login_process_paos_response_msg ( LassoLogin* login, gchar* msg ) lasso_error_t lasso_login_process_request_msg ( LassoLogin* login, gchar* request_msg ) lasso_error_t lasso_login_process_response_msg ( LassoLogin* login, gchar* response_msg ) lasso_error_t lasso_login_validate_request_msg ( LassoLogin* login, gboolean authentication_result, gboolean is_consent_obtained ) lasso_error_t lasso_logout_build_request_msg ( LassoLogout* logout ) lasso_error_t lasso_logout_build_response_msg ( LassoLogout* logout ) None lasso_logout_destroy ( LassoLogout* logout ) gchar* lasso_logout_dump ( LassoLogout* logout ) gchar* lasso_logout_get_next_providerID ( LassoLogout* logout ) GType lasso_logout_get_type ( ) lasso_error_t lasso_logout_init_request ( LassoLogout* logout, gchar* remote_providerID, LassoHttpMethod request_method ) LassoLogout* lasso_logout_new ( LassoServer* server ) LassoLogout* lasso_logout_new_from_dump ( LassoServer* server, const gchar* dump ) lasso_error_t lasso_logout_process_request_msg ( LassoLogout* logout, gchar* request_msg ) lasso_error_t lasso_logout_process_response_msg ( LassoLogout* logout, gchar* response_msg ) lasso_error_t lasso_logout_reset_providerID_index ( LassoLogout* logout ) lasso_error_t lasso_logout_validate_request ( LassoLogout* logout ) GType lasso_misc_text_node_get_type ( ) xmlNode* lasso_misc_text_node_get_xml_content ( LassoMiscTextNode* misc_text_node ) LassoNode* lasso_misc_text_node_new ( ) LassoMiscTextNode* lasso_misc_text_node_new_with_string ( const char* content ) LassoMiscTextNode* lasso_misc_text_node_new_with_xml_node ( xmlNode* xml_node ) None lasso_misc_text_node_set_xml_content ( LassoMiscTextNode* misc_text_node, xmlNode* node ) lasso_error_t lasso_name_id_management_build_request_msg ( LassoNameIdManagement* name_id_management ) lasso_error_t lasso_name_id_management_build_response_msg ( LassoNameIdManagement* name_id_management ) None lasso_name_id_management_destroy ( LassoNameIdManagement* name_id_management ) char* lasso_name_id_management_dump ( LassoNameIdManagement* name_id_management ) GType lasso_name_id_management_get_type ( ) lasso_error_t lasso_name_id_management_init_request ( LassoNameIdManagement* name_id_management, char* remote_provider_id, char* new_name_id, LassoHttpMethod http_method ) LassoNameIdManagement* lasso_name_id_management_new ( LassoServer* server ) LassoNameIdManagement* lasso_name_id_management_new_from_dump ( LassoServer* server, const char* dump ) lasso_error_t lasso_name_id_management_process_request_msg ( LassoNameIdManagement* name_id_management, gchar* request_msg ) lasso_error_t lasso_name_id_management_process_response_msg ( LassoNameIdManagement* name_id_management, gchar* response_msg ) lasso_error_t lasso_name_id_management_validate_request ( LassoNameIdManagement* name_id_management ) lasso_error_t lasso_name_identifier_mapping_build_request_msg ( LassoNameIdentifierMapping* mapping ) lasso_error_t lasso_name_identifier_mapping_build_response_msg ( LassoNameIdentifierMapping* mapping ) None lasso_name_identifier_mapping_destroy ( LassoNameIdentifierMapping* mapping ) GType lasso_name_identifier_mapping_get_type ( ) lasso_error_t lasso_name_identifier_mapping_init_request ( LassoNameIdentifierMapping* mapping, gchar* targetNamespace, gchar* remote_providerID ) LassoNameIdentifierMapping* lasso_name_identifier_mapping_new ( LassoServer* server ) lasso_error_t lasso_name_identifier_mapping_process_request_msg ( LassoNameIdentifierMapping* mapping, gchar* request_msg ) lasso_error_t lasso_name_identifier_mapping_process_response_msg ( LassoNameIdentifierMapping* mapping, gchar* response_msg ) lasso_error_t lasso_name_identifier_mapping_validate_request ( LassoNameIdentifierMapping* mapping ) lasso_error_t lasso_name_registration_build_request_msg ( LassoNameRegistration* name_registration ) lasso_error_t lasso_name_registration_build_response_msg ( LassoNameRegistration* name_registration ) None lasso_name_registration_destroy ( LassoNameRegistration* name_registration ) gchar* lasso_name_registration_dump ( LassoNameRegistration* name_registration ) GType lasso_name_registration_get_type ( ) lasso_error_t lasso_name_registration_init_request ( LassoNameRegistration* name_registration, char* remote_providerID, LassoHttpMethod http_method ) LassoNameRegistration* lasso_name_registration_new ( LassoServer* server ) LassoNameRegistration* lasso_name_registration_new_from_dump ( LassoServer* server, const char* dump ) lasso_error_t lasso_name_registration_process_request_msg ( LassoNameRegistration* name_registration, gchar* request_msg ) lasso_error_t lasso_name_registration_process_response_msg ( LassoNameRegistration* name_registration, gchar* response_msg ) lasso_error_t lasso_name_registration_validate_request ( LassoNameRegistration* name_registration ) None lasso_node_cleanup_original_xmlnodes ( LassoNode* node ) char* lasso_node_debug ( LassoNode* node, int level ) None lasso_node_destroy ( LassoNode* node ) char* lasso_node_dump ( LassoNode* node ) char* lasso_node_export_to_base64 ( LassoNode* node ) char* lasso_node_export_to_ecp_soap_response ( LassoNode* node, const char* assertionConsumerURL ) char* lasso_node_export_to_paos_request ( LassoNode* node, const char* issuer, const char* responseConsumerURL, const char* relay_state ) char* lasso_node_export_to_query ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file ) char* lasso_node_export_to_query_with_password ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file, const char* private_key_file_password ) char* lasso_node_export_to_soap ( LassoNode* node ) gchar* lasso_node_export_to_xml ( LassoNode* node ) const char* lasso_node_get_name ( LassoNode* node ) const char* lasso_node_get_namespace ( LassoNode* node ) xmlNode* lasso_node_get_original_xmlnode ( LassoNode* node ) GType lasso_node_get_type ( ) xmlNode* lasso_node_get_xmlNode ( LassoNode* node, gboolean lasso_dump ) LassoMessageFormat lasso_node_init_from_message ( LassoNode* node, const char* message ) gboolean lasso_node_init_from_query ( LassoNode* node, const char* query ) lasso_error_t lasso_node_init_from_xml ( LassoNode* node, xmlNode* xmlnode ) LassoNode* lasso_node_new ( ) LassoNode* lasso_node_new_from_dump ( const char* dump ) LassoNode* lasso_node_new_from_soap ( const char* soap ) LassoNode* lasso_node_new_from_xmlNode ( xmlNode* node ) None lasso_node_set_custom_namespace ( LassoNode* node, const char* prefix, const char* href ) None lasso_node_set_custom_nodename ( LassoNode* node, const char* nodename ) None lasso_node_set_original_xmlnode ( LassoNode* node, xmlNode* xmlnode ) char* lasso_profile_get_artifact ( LassoProfile* profile ) char* lasso_profile_get_artifact_message ( LassoProfile* profile ) LassoIdentity* lasso_profile_get_identity ( LassoProfile* profile ) LassoNode* lasso_profile_get_nameIdentifier ( LassoProfile* profile ) LassoRequestType lasso_profile_get_request_type_from_soap_msg ( const gchar* soap ) LassoSession* lasso_profile_get_session ( LassoProfile* profile ) LassoProfileSignatureHint lasso_profile_get_signature_hint ( LassoProfile* profile ) lasso_error_t lasso_profile_get_signature_status ( LassoProfile* profile ) LassoProfileSignatureVerifyHint lasso_profile_get_signature_verify_hint ( LassoProfile* profile ) GType lasso_profile_get_type ( ) gboolean lasso_profile_is_identity_dirty ( LassoProfile* profile ) gboolean lasso_profile_is_liberty_query ( const gchar* query ) gboolean lasso_profile_is_saml_query ( const gchar* query ) gboolean lasso_profile_is_session_dirty ( LassoProfile* profile ) None lasso_profile_set_artifact_message ( LassoProfile* profile, const char* message ) lasso_error_t lasso_profile_set_identity_from_dump ( LassoProfile* profile, const gchar* dump ) lasso_error_t lasso_profile_set_session_from_dump ( LassoProfile* profile, const gchar* dump ) None lasso_profile_set_signature_hint ( LassoProfile* profile, LassoProfileSignatureHint signature_hint ) None lasso_profile_set_signature_verify_hint ( LassoProfile* profile, LassoProfileSignatureVerifyHint signature_verify_hint ) lasso_error_t lasso_profile_set_soap_fault_response ( LassoProfile* profile, const char* faultcode, const char* faultstring, GList* details ) LassoProviderRole lasso_profile_sso_role_with ( LassoProfile* profile, const char* remote_provider_id ) gboolean lasso_provider_accept_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type, LassoHttpMethod http_method, gboolean initiate_profile ) gchar* lasso_provider_get_assertion_consumer_service_url ( LassoProvider* provider, const char* service_id ) gchar* lasso_provider_get_base64_succinct_id ( const LassoProvider* provider ) char* lasso_provider_get_cache_duration ( LassoProvider* provider ) gchar* lasso_provider_get_default_name_id_format ( LassoProvider* provider ) LassoEncryptionMode lasso_provider_get_encryption_mode ( LassoProvider* provider ) LassoHttpMethod lasso_provider_get_first_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type ) GList* lasso_provider_get_idp_supported_attributes ( LassoProvider* provider ) GList* lasso_provider_get_metadata_keys_for_role ( LassoProvider* provider, LassoProviderRole role ) GList* lasso_provider_get_metadata_list ( LassoProvider* provider, const char* name ) GList* lasso_provider_get_metadata_list_for_role ( const LassoProvider* provider, LassoProviderRole role, const char* name ) gchar* lasso_provider_get_metadata_one ( LassoProvider* provider, const char* name ) char* lasso_provider_get_metadata_one_for_role ( LassoProvider* provider, LassoProviderRole role, const char* name ) xmlNode* lasso_provider_get_organization ( const LassoProvider* provider ) LassoProtocolConformance lasso_provider_get_protocol_conformance ( const LassoProvider* provider ) LassoProviderRole lasso_provider_get_roles ( LassoProvider* provider ) const char* lasso_provider_get_sp_name_qualifier ( LassoProvider* provider ) GType lasso_provider_get_type ( ) char* lasso_provider_get_valid_until ( LassoProvider* provider ) gboolean lasso_provider_has_protocol_profile ( LassoProvider* provider, LassoMdProtocolType protocol_type, const char* protocol_profile ) gboolean lasso_provider_match_conformance ( LassoProvider* provider, LassoProvider* another_provider ) LassoProvider* lasso_provider_new ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_buffer ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_dump ( const gchar* dump ) LassoSaml2EncryptedElement* lasso_provider_saml2_node_encrypt ( const LassoProvider* provider, LassoNode* lasso_node ) None lasso_provider_set_encryption_mode ( LassoProvider* provider, LassoEncryptionMode encryption_mode ) None lasso_provider_set_encryption_sym_key_type ( LassoProvider* provider, LassoEncryptionSymKeyType encryption_sym_key_type ) lasso_error_t lasso_provider_verify_single_node_signature ( LassoProvider* provider, LassoNode* node, const char* id_attr_name ) None lasso_register_dst_service ( const char* prefix, const char* href ) None lasso_register_idwsf2_dst_service ( const gchar* prefix, const gchar* href ) GType lasso_saml2_action_get_type ( ) LassoNode* lasso_saml2_action_new ( ) LassoNode* lasso_saml2_action_new_with_string ( char* content ) GType lasso_saml2_advice_get_type ( ) LassoNode* lasso_saml2_advice_new ( ) lasso_error_t lasso_saml2_assertion_add_attribute_with_node ( LassoSaml2Assertion* assertion, const char* name, const char* nameformat, LassoNode* content ) None lasso_saml2_assertion_add_audience_restriction ( LassoSaml2Assertion* saml2_assertion, const char* providerID ) None lasso_saml2_assertion_add_proxy_limit ( LassoSaml2Assertion* saml2_assertion, int proxy_count, GList* proxy_audiences ) LassoSaml2AssertionValidationState lasso_saml2_assertion_allows_proxying ( LassoSaml2Assertion* saml2_assertion ) LassoSaml2AssertionValidationState lasso_saml2_assertion_allows_proxying_to ( LassoSaml2Assertion* saml2_assertion, const char* audience ) lasso_error_t lasso_saml2_assertion_decrypt_subject ( LassoSaml2Assertion* assertion, LassoServer* server ) const char* lasso_saml2_assertion_get_in_response_to ( LassoSaml2Assertion* assertion ) LassoProvider* lasso_saml2_assertion_get_issuer_provider ( const LassoSaml2Assertion* saml2_assertion, const LassoServer* server ) LassoSaml2SubjectConfirmationData* lasso_saml2_assertion_get_subject_confirmation_data ( LassoSaml2Assertion* saml2_assertion, gboolean create ) GType lasso_saml2_assertion_get_type ( ) gboolean lasso_saml2_assertion_has_audience_restriction ( LassoSaml2Assertion* saml2_assertion ) gboolean lasso_saml2_assertion_has_one_time_use ( LassoSaml2Assertion* saml2_assertion ) gboolean lasso_saml2_assertion_is_audience_restricted ( LassoSaml2Assertion* saml2_assertion, char* providerID ) LassoNode* lasso_saml2_assertion_new ( ) None lasso_saml2_assertion_set_basic_conditions ( LassoSaml2Assertion* saml2_assertion, time_t tolerance, time_t length, gboolean one_time_use ) None lasso_saml2_assertion_set_one_time_use ( LassoSaml2Assertion* saml2_assertion, gboolean one_time_use ) None lasso_saml2_assertion_set_subject_confirmation_data ( LassoSaml2Assertion* saml2_assertion, time_t tolerance, time_t length, const char* Recipient, const char* InResponseTo, const char* Address ) None lasso_saml2_assertion_set_subject_confirmation_name_id ( LassoSaml2Assertion* saml2_assertion, LassoNode* node ) None lasso_saml2_assertion_set_subject_name_id ( LassoSaml2Assertion* saml2_assertion, LassoNode* node ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_audience ( LassoSaml2Assertion* saml2_assertion, const gchar* audience ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_conditions ( LassoSaml2Assertion* saml2_assertion, const char* relaying_party_providerID ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_time_checks ( LassoSaml2Assertion* saml2_assertion, unsigned int tolerance, time_t now ) GType lasso_saml2_attribute_get_type ( ) LassoNode* lasso_saml2_attribute_new ( ) GType lasso_saml2_attribute_statement_get_type ( ) LassoNode* lasso_saml2_attribute_statement_new ( ) GType lasso_saml2_attribute_value_get_type ( ) LassoSaml2AttributeValue* lasso_saml2_attribute_value_new ( ) GType lasso_saml2_audience_restriction_get_type ( ) LassoNode* lasso_saml2_audience_restriction_new ( ) GType lasso_saml2_authn_context_get_type ( ) LassoNode* lasso_saml2_authn_context_new ( ) GType lasso_saml2_authn_statement_get_type ( ) LassoNode* lasso_saml2_authn_statement_new ( ) GType lasso_saml2_authz_decision_statement_get_type ( ) LassoNode* lasso_saml2_authz_decision_statement_new ( ) GType lasso_saml2_base_idabstract_get_type ( ) LassoNode* lasso_saml2_base_idabstract_new ( ) GType lasso_saml2_condition_abstract_get_type ( ) LassoNode* lasso_saml2_condition_abstract_new ( ) GType lasso_saml2_conditions_get_type ( ) LassoNode* lasso_saml2_conditions_new ( ) LassoSaml2EncryptedElement* lasso_saml2_encrypted_element_build_encrypted_persistent_name_id ( const char* id, const char* idpID, const LassoProvider* provider ) GType lasso_saml2_encrypted_element_get_type ( ) LassoNode* lasso_saml2_encrypted_element_new ( ) lasso_error_t lasso_saml2_encrypted_element_server_decrypt ( LassoSaml2EncryptedElement* encrypted_element, LassoServer* server, LassoNode** decrypted_node ) GType lasso_saml2_evidence_get_type ( ) LassoNode* lasso_saml2_evidence_new ( ) GType lasso_saml2_key_info_confirmation_data_get_type ( ) LassoNode* lasso_saml2_key_info_confirmation_data_new ( ) LassoSaml2NameID* lasso_saml2_name_id_build_persistent ( const char* id, const char* idpID, const char* providerID ) gboolean lasso_saml2_name_id_equals ( LassoSaml2NameID* name_id, LassoSaml2NameID* other_name_id ) GType lasso_saml2_name_id_get_type ( ) LassoNode* lasso_saml2_name_id_new ( ) LassoSaml2NameID* lasso_saml2_name_id_new_with_persistent_format ( const char* id, const char* idpID, const char* providerID ) LassoNode* lasso_saml2_name_id_new_with_string ( char* content ) GType lasso_saml2_one_time_use_get_type ( ) LassoNode* lasso_saml2_one_time_use_new ( ) GType lasso_saml2_proxy_restriction_get_type ( ) LassoNode* lasso_saml2_proxy_restriction_new ( ) GType lasso_saml2_statement_abstract_get_type ( ) LassoNode* lasso_saml2_statement_abstract_new ( ) GType lasso_saml2_subject_confirmation_data_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_data_new ( ) GType lasso_saml2_subject_confirmation_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_new ( ) GType lasso_saml2_subject_get_type ( ) GType lasso_saml2_subject_locality_get_type ( ) LassoNode* lasso_saml2_subject_locality_new ( ) LassoNode* lasso_saml2_subject_new ( ) GType lasso_saml_advice_get_type ( ) LassoNode* lasso_saml_advice_new ( ) GType lasso_saml_assertion_get_type ( ) LassoSamlAssertion* lasso_saml_assertion_new ( ) GType lasso_saml_attribute_designator_get_type ( ) LassoNode* lasso_saml_attribute_designator_new ( ) GType lasso_saml_attribute_get_type ( ) LassoSamlAttribute* lasso_saml_attribute_new ( ) GType lasso_saml_attribute_statement_get_type ( ) LassoSamlAttributeStatement* lasso_saml_attribute_statement_new ( ) GType lasso_saml_attribute_value_get_type ( ) LassoSamlAttributeValue* lasso_saml_attribute_value_new ( ) GType lasso_saml_audience_restriction_condition_get_type ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new_full ( const char* audience ) GType lasso_saml_authentication_statement_get_type ( ) LassoNode* lasso_saml_authentication_statement_new ( ) GType lasso_saml_authority_binding_get_type ( ) LassoNode* lasso_saml_authority_binding_new ( ) GType lasso_saml_condition_abstract_get_type ( ) GType lasso_saml_conditions_get_type ( ) LassoSamlConditions* lasso_saml_conditions_new ( ) GType lasso_saml_name_identifier_get_type ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new_from_xmlNode ( xmlNode* xmlnode ) GType lasso_saml_statement_abstract_get_type ( ) GType lasso_saml_subject_confirmation_get_type ( ) LassoSamlSubjectConfirmation* lasso_saml_subject_confirmation_new ( ) GType lasso_saml_subject_get_type ( ) GType lasso_saml_subject_locality_get_type ( ) LassoNode* lasso_saml_subject_locality_new ( ) LassoNode* lasso_saml_subject_new ( ) GType lasso_saml_subject_statement_abstract_get_type ( ) GType lasso_saml_subject_statement_get_type ( ) LassoNode* lasso_saml_subject_statement_new ( ) GType lasso_samlp2_artifact_resolve_get_type ( ) LassoNode* lasso_samlp2_artifact_resolve_new ( ) GType lasso_samlp2_artifact_response_get_type ( ) LassoNode* lasso_samlp2_artifact_response_new ( ) GType lasso_samlp2_assertion_id_request_get_type ( ) LassoNode* lasso_samlp2_assertion_id_request_new ( ) GType lasso_samlp2_attribute_query_get_type ( ) LassoNode* lasso_samlp2_attribute_query_new ( ) GType lasso_samlp2_authn_query_get_type ( ) LassoNode* lasso_samlp2_authn_query_new ( ) GType lasso_samlp2_authn_request_get_type ( ) LassoNode* lasso_samlp2_authn_request_new ( ) GType lasso_samlp2_authz_decision_query_get_type ( ) LassoNode* lasso_samlp2_authz_decision_query_new ( ) GType lasso_samlp2_extensions_get_type ( ) LassoNode* lasso_samlp2_extensions_new ( ) GType lasso_samlp2_idp_entry_get_type ( ) LassoNode* lasso_samlp2_idp_entry_new ( ) GType lasso_samlp2_idp_list_get_type ( ) LassoNode* lasso_samlp2_idp_list_new ( ) GList* lasso_samlp2_logout_request_get_session_indexes ( LassoSamlp2LogoutRequest* logout_request ) GType lasso_samlp2_logout_request_get_type ( ) LassoNode* lasso_samlp2_logout_request_new ( ) None lasso_samlp2_logout_request_set_session_indexes ( LassoSamlp2LogoutRequest* logout_request, GList* session_index ) GType lasso_samlp2_logout_response_get_type ( ) LassoNode* lasso_samlp2_logout_response_new ( ) GType lasso_samlp2_manage_name_id_request_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_request_new ( ) GType lasso_samlp2_manage_name_id_response_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_response_new ( ) GType lasso_samlp2_name_id_mapping_request_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_request_new ( ) GType lasso_samlp2_name_id_mapping_response_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_response_new ( ) GType lasso_samlp2_name_id_policy_get_type ( ) LassoNode* lasso_samlp2_name_id_policy_new ( ) GType lasso_samlp2_request_abstract_get_type ( ) LassoNode* lasso_samlp2_request_abstract_new ( ) GType lasso_samlp2_requested_authn_context_get_type ( ) LassoNode* lasso_samlp2_requested_authn_context_new ( ) GType lasso_samlp2_response_get_type ( ) LassoNode* lasso_samlp2_response_new ( ) GType lasso_samlp2_scoping_get_type ( ) LassoNode* lasso_samlp2_scoping_new ( ) GType lasso_samlp2_status_code_get_type ( ) LassoNode* lasso_samlp2_status_code_new ( ) GType lasso_samlp2_status_detail_get_type ( ) LassoNode* lasso_samlp2_status_detail_new ( ) GType lasso_samlp2_status_get_type ( ) LassoNode* lasso_samlp2_status_new ( ) GType lasso_samlp2_status_response_get_type ( ) LassoNode* lasso_samlp2_status_response_new ( ) GType lasso_samlp2_subject_query_abstract_get_type ( ) LassoNode* lasso_samlp2_subject_query_abstract_new ( ) GType lasso_samlp2_terminate_get_type ( ) LassoNode* lasso_samlp2_terminate_new ( ) GType lasso_samlp_request_abstract_get_type ( ) GType lasso_samlp_request_get_type ( ) LassoNode* lasso_samlp_request_new ( ) None lasso_samlp_response_abstract_fill ( LassoSamlpResponseAbstract* response, const char* InResponseTo, const char* Recipient ) GType lasso_samlp_response_abstract_get_type ( ) GType lasso_samlp_response_get_type ( ) LassoNode* lasso_samlp_response_new ( ) GType lasso_samlp_status_code_get_type ( ) LassoSamlpStatusCode* lasso_samlp_status_code_new ( ) GType lasso_samlp_status_get_type ( ) LassoSamlpStatus* lasso_samlp_status_new ( ) lasso_error_t lasso_server_add_provider ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) lasso_error_t lasso_server_add_provider_from_buffer ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) None lasso_server_destroy ( LassoServer* server ) gchar* lasso_server_dump ( LassoServer* server ) LassoProvider* lasso_server_get_provider ( const LassoServer* server, const gchar* providerID ) GType lasso_server_get_type ( ) lasso_error_t lasso_server_load_affiliation ( LassoServer* server, const gchar* filename ) LassoServer* lasso_server_new ( const gchar* metadata, const gchar* private_key, const gchar* private_key_password, const gchar* certificate ) LassoServer* lasso_server_new_from_buffers ( const gchar* metadata, const gchar* private_key_content, const gchar* private_key_password, const gchar* certificate_content ) LassoServer* lasso_server_new_from_dump ( const gchar* dump ) lasso_error_t lasso_server_saml2_assertion_setup_signature ( LassoServer* server, LassoSaml2Assertion* saml2_assertion ) lasso_error_t lasso_server_set_encryption_private_key ( LassoServer* server, const gchar* filename_or_buffer ) lasso_error_t lasso_server_set_encryption_private_key_with_password ( LassoServer* server, const gchar* filename_or_buffer, const gchar* password ) lasso_error_t lasso_session_add_assertion ( LassoSession* session, const char* providerID, LassoNode* assertion ) None lasso_session_destroy ( LassoSession* session ) gchar* lasso_session_dump ( LassoSession* session ) LassoNode* lasso_session_get_assertion ( LassoSession* session, const gchar* providerID ) GList* lasso_session_get_assertions ( LassoSession* session, const char* provider_id ) gchar* lasso_session_get_provider_index ( LassoSession* session, gint index ) GType lasso_session_get_type ( ) gboolean lasso_session_is_empty ( LassoSession* session ) LassoSession* lasso_session_new ( ) LassoSession* lasso_session_new_from_dump ( const gchar* dump ) lasso_error_t lasso_session_remove_assertion ( LassoSession* session, const gchar* providerID ) None lasso_set_flag ( char* flag ) lasso_error_t lasso_shutdown ( ) const char* lasso_strerror ( int error_code ) lasso-2.9.0/abi/PaxHeaders/abi-2.3.10000644000000000000000000000013013766621500013575 xustar0029 mtime=1608196928.71889494 30 atime=1754992978.149544894 29 ctime=1754993575.20113351 lasso-2.9.0/abi/abi-2.3.10000644000175000017500000020626113766621500015616 0ustar00bdauvergnebdauvergneBACKWARD_COMP_H LASSO_ASSERTION_QUERY_ERROR_ATTRIBUTE_REQUEST_ALREADY_EXIST LASSO_ASSERTION_QUERY_ERROR_NOT_AN_ATTRIBUTE_QUERY LASSO_ASSERTION_QUERY_REQUEST_TYPE_ASSERTION_ID LASSO_ASSERTION_QUERY_REQUEST_TYPE_ATTRIBUTE LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHN LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHZ_DECISION LASSO_ASSERTION_QUERY_REQUEST_TYPE_LAST LASSO_ASSERTION_QUERY_REQUEST_TYPE_UNSET LASSO_CERTIFICATE_ATTRIBUTE LASSO_CHECK_VERSIONABI_COMPATIBLE LASSO_CHECK_VERSION_EXACT LASSO_CHECK_VERSION_NUMERIC LASSO_DATA_SERVICE_ERROR_CANNOT_ADD_ITEM LASSO_DATA_SERVICE_ERROR_UNREGISTERED_DST LASSO_DEFEDERATION_ERROR_MISSING_NAME_IDENTIFIER LASSO_DISCOVERY_ERROR_FAILED_TO_BUILD_ENDPOINT_REFERENCE LASSO_DISCOVERY_ERROR_MISSING_REQUESTED_SERVICE LASSO_DISCOVERY_ERROR_SVC_METADATA_ASSOCIATION_ADD_FAILED LASSO_DISCOVERY_ERROR_SVC_METADATA_REGISTER_FAILED LASSO_DST_ERROR_EMPTY_REQUEST LASSO_DST_ERROR_MALFORMED_QUERY LASSO_DST_ERROR_MISSING_SERVICE_DATA LASSO_DST_ERROR_MODIFY_FAILED LASSO_DST_ERROR_MODIFY_PARTIALLY_FAILED LASSO_DST_ERROR_NEW_DATA_MISSING LASSO_DST_ERROR_NO_DATA LASSO_DST_ERROR_QUERY_FAILED LASSO_DST_ERROR_QUERY_NOT_FOUND LASSO_DST_ERROR_QUERY_PARTIALLY_FAILED LASSO_DS_ERROR_CA_CERT_CHAIN_LOAD_FAILED LASSO_DS_ERROR_CERTIFICATE_LOAD_FAILED LASSO_DS_ERROR_CONTEXT_CREATION_FAILED LASSO_DS_ERROR_DECRYPTION_FAILED LASSO_DS_ERROR_DECRYPTION_FAILED_MISSING_PRIVATE_KEY LASSO_DS_ERROR_DIGEST_COMPUTE_FAILED LASSO_DS_ERROR_ENCRYPTION_FAILED LASSO_DS_ERROR_INVALID_REFERENCE_FOR_SAML LASSO_DS_ERROR_INVALID_SIGALG LASSO_DS_ERROR_INVALID_SIGNATURE LASSO_DS_ERROR_KEYS_MNGR_CREATION_FAILED LASSO_DS_ERROR_KEYS_MNGR_INIT_FAILED LASSO_DS_ERROR_PRIVATE_KEY_LOAD_FAILED LASSO_DS_ERROR_PUBLIC_KEY_LOAD_FAILED LASSO_DS_ERROR_SIGNATURE_FAILED LASSO_DS_ERROR_SIGNATURE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TEMPLATE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TMPL_CREATION_FAILED LASSO_DS_ERROR_SIGNATURE_VERIFICATION_FAILED LASSO_DS_ERROR_TOO_MUCH_REFERENCES LASSO_DS_HREF LASSO_DS_PREFIX LASSO_DURATION_DAY LASSO_DURATION_HOUR LASSO_DURATION_MINUTE LASSO_DURATION_WEEK LASSO_ECP_HREF LASSO_ECP_PREFIX LASSO_ENCRYPTION_MODE_ASSERTION LASSO_ENCRYPTION_MODE_NAMEID LASSO_ENCRYPTION_MODE_NONE LASSO_ENCRYPTION_SYM_KEY_TYPE_3DES LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_128 LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_256 LASSO_ENCRYPTION_SYM_KEY_TYPE_DEFAULT LASSO_ERROR_CAST_FAILED LASSO_ERROR_OUT_OF_MEMORY LASSO_ERROR_UNDEFINED LASSO_ERROR_UNIMPLEMENTED LASSO_HTTP_METHOD_ANY LASSO_HTTP_METHOD_ARTIFACT_GET LASSO_HTTP_METHOD_ARTIFACT_POST LASSO_HTTP_METHOD_GET LASSO_HTTP_METHOD_IDP_INITIATED LASSO_HTTP_METHOD_LAST LASSO_HTTP_METHOD_NONE LASSO_HTTP_METHOD_PAOS LASSO_HTTP_METHOD_POST LASSO_HTTP_METHOD_REDIRECT LASSO_HTTP_METHOD_SOAP LASSO_IDWSF2_DISCOVERY_ERROR_DUPLICATE LASSO_IDWSF2_DISCOVERY_ERROR_FAILED LASSO_IDWSF2_DISCOVERY_ERROR_FORBIDDEN LASSO_IDWSF2_DISCOVERY_ERROR_LOGICAL_DUPLICATE LASSO_IDWSF2_DISCOVERY_ERROR_NOT_FOUND LASSO_IDWSF2_DISCOVERY_ERROR_NO_RESULTS LASSO_IDWSF2_DST_ERROR_DUPLICATE_ITEM LASSO_IDWSF2_DST_ERROR_ITEM_NOT_FOUND LASSO_IDWSF2_DST_ERROR_PARTIAL_FAILURE LASSO_IDWSF2_DST_ERROR_UNKNOWN_STATUS_CODE LASSO_LASSO_HREF LASSO_LASSO_PREFIX LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD_PROTECTED_TRANSPORT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PREVIOUS_SESSION LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SOFTWARE_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_TIME_SYNC_TOKEN LASSO_LIB_AUTHN_CONTEXT_COMPARISON_BETTER LASSO_LIB_AUTHN_CONTEXT_COMPARISON_EXACT LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MAXIMUM LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MINIMUM LASSO_LIB_CONSENT_INAPPLICABLE LASSO_LIB_CONSENT_OBTAINED LASSO_LIB_CONSENT_OBTAINED_CURRENT_EXPLICIT LASSO_LIB_CONSENT_OBTAINED_CURRENT_IMPLICIT LASSO_LIB_CONSENT_OBTAINED_PRIOR LASSO_LIB_CONSENT_UNAVAILABLE LASSO_LIB_HREF LASSO_LIB_MAJOR_VERSION_N LASSO_LIB_MINOR_VERSION_N LASSO_LIB_NAMEID_POLICY_TYPE_ANY LASSO_LIB_NAMEID_POLICY_TYPE_FEDERATED LASSO_LIB_NAMEID_POLICY_TYPE_NONE LASSO_LIB_NAMEID_POLICY_TYPE_ONE_TIME LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENTITYID LASSO_LIB_NAME_IDENTIFIER_FORMAT_FEDERATED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ONE_TIME LASSO_LIB_PREFIX LASSO_LIB_PROTOCOL_PROFILE_BRWS_ART LASSO_LIB_PROTOCOL_PROFILE_BRWS_LECP LASSO_LIB_PROTOCOL_PROFILE_BRWS_POST LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_NIM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_SOAP LASSO_LIB_STATUS_CODE_FEDERATION_DOES_NOT_EXIST LASSO_LIB_STATUS_CODE_INVALID_ASSERTION_CONSUMER_SERVICE_INDEX LASSO_LIB_STATUS_CODE_INVALID_SIGNATURE LASSO_LIB_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_LIB_STATUS_CODE_NO_AVAILABLEIDP LASSO_LIB_STATUS_CODE_NO_PASSIVE LASSO_LIB_STATUS_CODE_NO_SUPPORTEDIDP LASSO_LIB_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_LIB_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_LIB_STATUS_CODE_UNSIGNED_AUTHN_REQUEST LASSO_LIB_STATUS_CODE_UNSUPPORTED_PROFILE LASSO_LOGIN_ERROR_ASSERTION_DOES_NOT_MATCH_REQUEST_ID LASSO_LOGIN_ERROR_ASSERTION_REPLAY LASSO_LOGIN_ERROR_CONSENT_NOT_OBTAINED LASSO_LOGIN_ERROR_FEDERATION_NOT_FOUND LASSO_LOGIN_ERROR_INVALID_ASSERTION_SIGNATURE LASSO_LOGIN_ERROR_INVALID_NAMEIDPOLICY LASSO_LOGIN_ERROR_INVALID_SIGNATURE LASSO_LOGIN_ERROR_NO_DEFAULT_ENDPOINT LASSO_LOGIN_ERROR_REQUEST_DENIED LASSO_LOGIN_ERROR_STATUS_NOT_SUCCESS LASSO_LOGIN_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGIN_ERROR_UNSIGNED_AUTHN_REQUEST LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_ART LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_LECP LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_POST LASSO_LOGIN_PROTOCOL_PROFILE_REDIRECT LASSO_LOGOUT_ERROR_FEDERATION_NOT_FOUND LASSO_LOGOUT_ERROR_REQUEST_DENIED LASSO_LOGOUT_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGOUT_ERROR_UNSUPPORTED_PROFILE LASSO_MD_PROTOCOL_TYPE_ARTIFACT_RESOLUTION LASSO_MD_PROTOCOL_TYPE_ASSERTION_ID_REQUEST LASSO_MD_PROTOCOL_TYPE_ATTRIBUTE LASSO_MD_PROTOCOL_TYPE_AUTHN_QUERY LASSO_MD_PROTOCOL_TYPE_AUTHZ LASSO_MD_PROTOCOL_TYPE_FEDERATION_TERMINATION LASSO_MD_PROTOCOL_TYPE_LAST LASSO_MD_PROTOCOL_TYPE_MANAGE_NAME_ID LASSO_MD_PROTOCOL_TYPE_NAME_IDENTIFIER_MAPPING LASSO_MD_PROTOCOL_TYPE_REGISTER_NAME_IDENTIFIER LASSO_MD_PROTOCOL_TYPE_SINGLE_LOGOUT LASSO_MD_PROTOCOL_TYPE_SINGLE_SIGN_ON LASSO_MESSAGE_FORMAT_BASE64 LASSO_MESSAGE_FORMAT_ERROR LASSO_MESSAGE_FORMAT_QUERY LASSO_MESSAGE_FORMAT_SOAP LASSO_MESSAGE_FORMAT_UNKNOWN LASSO_MESSAGE_FORMAT_XML LASSO_MESSAGE_FORMAT_XSCHEMA_ERROR LASSO_METADATA_HREF LASSO_METADATA_PREFIX LASSO_NAME_IDENTIFIER_MAPPING_ERROR_FORBIDDEN_CALL_ON_THIS_SIDE LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_IDENTIFIER LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_NAMESPACE LASSO_PAOS_HREF LASSO_PAOS_PREFIX LASSO_PARAM_ERROR_BAD_TYPE_OR_NULL_OBJ LASSO_PARAM_ERROR_CHECK_FAILED LASSO_PARAM_ERROR_INVALID_VALUE LASSO_PARAM_ERROR_NON_INITIALIZED_OBJECT LASSO_PRIVATE_KEY_ATTRIBUTE LASSO_PRIVATE_KEY_PASSWORD_ATTRIBUTE LASSO_PRIVATE_STATUS_CODE_FAILED_TO_RESTORE_ARTIFACT LASSO_PROFILE_ERROR_BAD_IDENTITY_DUMP LASSO_PROFILE_ERROR_BAD_SESSION_DUMP LASSO_PROFILE_ERROR_BUILDING_MESSAGE_FAILED LASSO_PROFILE_ERROR_BUILDING_QUERY_FAILED LASSO_PROFILE_ERROR_BUILDING_REQUEST_FAILED LASSO_PROFILE_ERROR_BUILDING_RESPONSE_FAILED LASSO_PROFILE_ERROR_CANNOT_FIND_A_PROVIDER LASSO_PROFILE_ERROR_CANNOT_VERIFY_SIGNATURE LASSO_PROFILE_ERROR_FEDERATION_NOT_FOUND LASSO_PROFILE_ERROR_IDENTITY_NOT_FOUND LASSO_PROFILE_ERROR_INVALID_ARTIFACT LASSO_PROFILE_ERROR_INVALID_ASSERTION LASSO_PROFILE_ERROR_INVALID_ASSERTION_CONDITIONS LASSO_PROFILE_ERROR_INVALID_HTTP_METHOD LASSO_PROFILE_ERROR_INVALID_ISSUER LASSO_PROFILE_ERROR_INVALID_MSG LASSO_PROFILE_ERROR_INVALID_POST_MSG LASSO_PROFILE_ERROR_INVALID_PROTOCOLPROFILE LASSO_PROFILE_ERROR_INVALID_QUERY LASSO_PROFILE_ERROR_INVALID_REQUEST LASSO_PROFILE_ERROR_INVALID_RESPONSE LASSO_PROFILE_ERROR_INVALID_SOAP_MSG LASSO_PROFILE_ERROR_ISSUER_IS_NOT_AN_IDP LASSO_PROFILE_ERROR_MISSING_ARTIFACT LASSO_PROFILE_ERROR_MISSING_ASSERTION LASSO_PROFILE_ERROR_MISSING_ENCRYPTION_PRIVATE_KEY LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE_ADDRESS LASSO_PROFILE_ERROR_MISSING_ISSUER LASSO_PROFILE_ERROR_MISSING_NAME_IDENTIFIER LASSO_PROFILE_ERROR_MISSING_REMOTE_PROVIDERID LASSO_PROFILE_ERROR_MISSING_REQUEST LASSO_PROFILE_ERROR_MISSING_RESOURCE_OFFERING LASSO_PROFILE_ERROR_MISSING_RESPONSE LASSO_PROFILE_ERROR_MISSING_SERVER LASSO_PROFILE_ERROR_MISSING_SERVICE_DESCRIPTION LASSO_PROFILE_ERROR_MISSING_SERVICE_INSTANCE LASSO_PROFILE_ERROR_MISSING_SERVICE_TYPE LASSO_PROFILE_ERROR_MISSING_STATUS_CODE LASSO_PROFILE_ERROR_MISSING_SUBJECT LASSO_PROFILE_ERROR_NAME_IDENTIFIER_NOT_FOUND LASSO_PROFILE_ERROR_RESPONSE_DOES_NOT_MATCH_REQUEST LASSO_PROFILE_ERROR_SESSION_NOT_FOUND LASSO_PROFILE_ERROR_STATUS_NOT_SUCCESS LASSO_PROFILE_ERROR_UNKNOWN_ISSUER LASSO_PROFILE_ERROR_UNKNOWN_PROFILE_URL LASSO_PROFILE_ERROR_UNKNOWN_PROVIDER LASSO_PROFILE_ERROR_UNSUPPORTED_BINDING LASSO_PROFILE_ERROR_UNSUPPORTED_PROFILE LASSO_PROFILE_SIGNATURE_HINT_FORBID LASSO_PROFILE_SIGNATURE_HINT_FORCE LASSO_PROFILE_SIGNATURE_HINT_MAYBE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_FORCE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_IGNORE LASSO_PROFILE_SIGNATURE_VERIFY_HINT_LAST LASSO_PROFILE_SIGNATURE_VERIFY_HINT_MAYBE LASSO_PROTOCOL_LIBERTY_1_0 LASSO_PROTOCOL_LIBERTY_1_1 LASSO_PROTOCOL_LIBERTY_1_2 LASSO_PROTOCOL_NONE LASSO_PROTOCOL_SAML_2_0 LASSO_PROVIDER_ERROR_MISSING_PUBLIC_KEY LASSO_PROVIDER_ROLE_ANY LASSO_PROVIDER_ROLE_ATTRIBUTE_AUTHORITY LASSO_PROVIDER_ROLE_AUTHN_AUTHORITY LASSO_PROVIDER_ROLE_AUTHZ_AUTHORITY LASSO_PROVIDER_ROLE_BOTH LASSO_PROVIDER_ROLE_IDP LASSO_PROVIDER_ROLE_LAST LASSO_PROVIDER_ROLE_NONE LASSO_PROVIDER_ROLE_SP LASSO_PYTHON_HREF LASSO_REGISTRY_ERROR_KEY_EXISTS LASSO_REQUEST_TYPE_DEFEDERATION LASSO_REQUEST_TYPE_DISCO_MODIFY LASSO_REQUEST_TYPE_DISCO_QUERY LASSO_REQUEST_TYPE_DST_MODIFY LASSO_REQUEST_TYPE_DST_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_ASSOCIATION_ADD LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_REGISTER LASSO_REQUEST_TYPE_INVALID LASSO_REQUEST_TYPE_LECP LASSO_REQUEST_TYPE_LOGIN LASSO_REQUEST_TYPE_LOGOUT LASSO_REQUEST_TYPE_NAME_IDENTIFIER_MAPPING LASSO_REQUEST_TYPE_NAME_ID_MANAGEMENT LASSO_REQUEST_TYPE_NAME_REGISTRATION LASSO_REQUEST_TYPE_SASL_REQUEST LASSO_SAML2_ACTION_GHPP_GET LASSO_SAML2_ACTION_GHPP_HEAD LASSO_SAML2_ACTION_GHPP_POST LASSO_SAML2_ACTION_GHPP_PUT LASSO_SAML2_ACTION_NAMESPACE_GHPP LASSO_SAML2_ACTION_NAMESPACE_RWEDC LASSO_SAML2_ACTION_NAMESPACE_RWEDC_NEGATION LASSO_SAML2_ACTION_NAMESPACE_UNIX LASSO_SAML2_ACTION_RWEDC_CONTROL LASSO_SAML2_ACTION_RWEDC_DELETE LASSO_SAML2_ACTION_RWEDC_EXECUTE LASSO_SAML2_ACTION_RWEDC_NEGATION LASSO_SAML2_ACTION_RWEDC_READ LASSO_SAML2_ACTION_RWEDC_WRITE LASSO_SAML2_ASSERTION_HREF LASSO_SAML2_ASSERTION_INDETERMINATE LASSO_SAML2_ASSERTION_INVALID LASSO_SAML2_ASSERTION_PREFIX LASSO_SAML2_ASSERTION_VALID LASSO_SAML2_ATTRIBUTE_NAME_EPR LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_BASIC LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_UNSPECIFIED LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_URI LASSO_SAML2_ATTRIBUTE_PROFILE_BASIC LASSO_SAML2_ATTRIBUTE_PROFILE_DCE LASSO_SAML2_ATTRIBUTE_PROFILE_UUID LASSO_SAML2_ATTRIBUTE_PROFILE_X500 LASSO_SAML2_AUTHN_CONTEXT_AUTHENTICATED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_KERBEROS LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_NOMAD_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_PASSWORD_PROTECTED_TRANSPORT LASSO_SAML2_AUTHN_CONTEXT_PERSONALIZED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PGP LASSO_SAML2_AUTHN_CONTEXT_PREVIOUS_SESSION LASSO_SAML2_AUTHN_CONTEXT_SECURE_REMOTE_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD_PKI LASSO_SAML2_AUTHN_CONTEXT_SOFTWARE_PKI LASSO_SAML2_AUTHN_CONTEXT_SPKI LASSO_SAML2_AUTHN_CONTEXT_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_TIME_SYNC_TOKEN LASSO_SAML2_AUTHN_CONTEXT_TLS_CLIENT LASSO_SAML2_AUTHN_CONTEXT_UNSPECIFIED LASSO_SAML2_AUTHN_CONTEXT_X509 LASSO_SAML2_AUTHN_CONTEXT_XMLDSIG LASSO_SAML2_CONFIRMATION_METHOD_BEARER LASSO_SAML2_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML2_CONSENT_EXPLICIT LASSO_SAML2_CONSENT_IMPLICIT LASSO_SAML2_CONSENT_INAPPLICABLE LASSO_SAML2_CONSENT_OBTAINED LASSO_SAML2_CONSENT_PRIOR LASSO_SAML2_CONSENT_UNAVAILABLE LASSO_SAML2_DEFLATE_ENCODING LASSO_SAML2_FIELD_ARTIFACT LASSO_SAML2_FIELD_ENCODING LASSO_SAML2_FIELD_RELAYSTATE LASSO_SAML2_FIELD_REQUEST LASSO_SAML2_FIELD_RESPONSE LASSO_SAML2_FIELD_SIGALG LASSO_SAML2_FIELD_SIGNATURE LASSO_SAML2_METADATA_BINDING_ARTIFACT LASSO_SAML2_METADATA_BINDING_PAOS LASSO_SAML2_METADATA_BINDING_POST LASSO_SAML2_METADATA_BINDING_REDIRECT LASSO_SAML2_METADATA_BINDING_SOAP LASSO_SAML2_METADATA_BINDING_URI LASSO_SAML2_METADATA_HREF LASSO_SAML2_METADATA_PREFIX LASSO_SAML2_NAME_IDENTIFIER_FORMAT_EMAIL LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENTITY LASSO_SAML2_NAME_IDENTIFIER_FORMAT_KERBEROS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_PERSISTENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_TRANSIENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_UNSPECIFIED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_WINDOWS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_X509 LASSO_SAML2_PROTOCOL_HREF LASSO_SAML2_PROTOCOL_PREFIX LASSO_SAML2_STATUS_CODE_AUTHN_FAILED LASSO_SAML2_STATUS_CODE_INVALID_ATTR_NAME LASSO_SAML2_STATUS_CODE_INVALID_NAME_ID_POLICY LASSO_SAML2_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_SAML2_STATUS_CODE_NO_AVAILABLE_IDP LASSO_SAML2_STATUS_CODE_NO_PASSIVE LASSO_SAML2_STATUS_CODE_NO_SUPPORTED_IDP LASSO_SAML2_STATUS_CODE_PARTIAL_LOGOUT LASSO_SAML2_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_SAML2_STATUS_CODE_REQUESTER LASSO_SAML2_STATUS_CODE_REQUEST_DENIED LASSO_SAML2_STATUS_CODE_REQUEST_UNSUPPORTED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML2_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML2_STATUS_CODE_RESPONDER LASSO_SAML2_STATUS_CODE_SUCCESS LASSO_SAML2_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML2_STATUS_CODE_UNKNOWN_ATTR_PROFILE LASSO_SAML2_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_SAML2_STATUS_CODE_UNSUPPORTED_BINDING LASSO_SAML2_STATUS_CODE_VERSION_MISMATCH LASSO_SAML_ASSERTION_HREF LASSO_SAML_ASSERTION_PREFIX LASSO_SAML_AUTHENTICATION_METHODS_PKI LASSO_SAML_AUTHENTICATION_METHOD_HARDWARE_TOKEN LASSO_SAML_AUTHENTICATION_METHOD_KERBEROS LASSO_SAML_AUTHENTICATION_METHOD_LIBERTY LASSO_SAML_AUTHENTICATION_METHOD_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_PGP LASSO_SAML_AUTHENTICATION_METHOD_SECURE_REMOTE_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_SMARTCARD_PKI LASSO_SAML_AUTHENTICATION_METHOD_SOFTWARE_PKI LASSO_SAML_AUTHENTICATION_METHOD_UNSPECIFIED LASSO_SAML_AUTHENTICATION_METHOD_XKMS LASSO_SAML_AUTHENTICATION_METHOD_XMLD_SIG LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT01 LASSO_SAML_CONFIRMATION_METHOD_BEARER LASSO_SAML_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML_CONFIRMATION_METHOD_SENDER_VOUCHES LASSO_SAML_MAJOR_VERSION_N LASSO_SAML_MINOR_VERSION_N LASSO_SAML_PROTOCOL_HREF LASSO_SAML_PROTOCOL_PREFIX LASSO_SAML_STATUS_CODE_REQUESTER LASSO_SAML_STATUS_CODE_REQUEST_DENIED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML_STATUS_CODE_RESPONDER LASSO_SAML_STATUS_CODE_SUCCESS LASSO_SAML_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML_STATUS_CODE_VERSION_MISMATCH LASSO_SERVER_ERROR_ADD_PROVIDER_FAILED LASSO_SERVER_ERROR_ADD_PROVIDER_PROTOCOL_MISMATCH LASSO_SERVER_ERROR_INVALID_XML LASSO_SERVER_ERROR_PROVIDER_NOT_FOUND LASSO_SERVER_ERROR_SET_ENCRYPTION_PRIVATE_KEY_FAILED LASSO_SIGNATURE_METHOD_ATTRIBUTE LASSO_SIGNATURE_METHOD_DSA_SHA1 LASSO_SIGNATURE_METHOD_LAST LASSO_SIGNATURE_METHOD_RSA_SHA1 LASSO_SIGNATURE_TYPE_ATTRIBUTE LASSO_SIGNATURE_TYPE_LAST LASSO_SIGNATURE_TYPE_NONE LASSO_SIGNATURE_TYPE_SIMPLE LASSO_SIGNATURE_TYPE_WITHX509 LASSO_SOAP_ENV_ACTOR LASSO_SOAP_ENV_HREF LASSO_SOAP_ENV_PREFIX LASSO_SOAP_ERROR_MISSING_BODY LASSO_SOAP_ERROR_MISSING_ENVELOPE LASSO_SOAP_ERROR_MISSING_HEADER LASSO_SOAP_ERROR_MISSING_SOAP_FAULT_DETAIL LASSO_SOAP_ERROR_REDIRECT_REQUEST_FAULT LASSO_SOAP_FAULT_CODE_CLIENT LASSO_SOAP_FAULT_CODE_MUST_UNDERSTAND LASSO_SOAP_FAULT_CODE_SERVER LASSO_SOAP_FAULT_CODE_VERSION_MISMATCH LASSO_SOAP_FAULT_REDIRECT_REQUEST LASSO_WSF_ENABLED LASSO_WSF_PROFILE_ERROR_INVALID_OR_MISSING_REFERENCE_TO_MESSAGE_ID LASSO_WSF_PROFILE_ERROR_MISSING_ASSERTION_ID LASSO_WSF_PROFILE_ERROR_MISSING_CORRELATION LASSO_WSF_PROFILE_ERROR_MISSING_CREDENTIAL_REF LASSO_WSF_PROFILE_ERROR_MISSING_DESCRIPTION LASSO_WSF_PROFILE_ERROR_MISSING_ENDPOINT LASSO_WSF_PROFILE_ERROR_MISSING_RESOURCE_ID LASSO_WSF_PROFILE_ERROR_MISSING_SECURITY LASSO_WSF_PROFILE_ERROR_MISSING_SENDER_ID LASSO_WSF_PROFILE_ERROR_REDIRECT_REQUEST LASSO_WSF_PROFILE_ERROR_REDIRECT_REQUEST_UNSUPPORTED_BY_REQUESTER LASSO_WSF_PROFILE_ERROR_SECURITY_MECHANISM_CHECK_FAILED LASSO_WSF_PROFILE_ERROR_SERVER_INTERACTION_REQUIRED LASSO_WSF_PROFILE_ERROR_SERVER_INTERACTION_REQUIRED_FOR_DATA LASSO_WSF_PROFILE_ERROR_SOAP_FAULT LASSO_WSF_PROFILE_ERROR_UNKNOWN_STATUS_CODE LASSO_WSF_PROFILE_ERROR_UNSUPPORTED_SECURITY_MECHANISM LASSO_WSSEC_ERROR_BAD_PASSWORD LASSO_WSSEC_ERROR_MISSING_SECURITY_TOKEN LASSO_XML_ERROR_ATTR_NOT_FOUND LASSO_XML_ERROR_ATTR_VALUE_NOT_FOUND LASSO_XML_ERROR_INVALID_FILE LASSO_XML_ERROR_MISSING_NAMESPACE LASSO_XML_ERROR_NODE_CONTENT_NOT_FOUND LASSO_XML_ERROR_NODE_NOT_FOUND LASSO_XML_ERROR_OBJECT_CONSTRUCTION_FAILED LASSO_XML_ERROR_SCHEMA_INVALID_FRAGMENT LASSO_XSI_HREF LASSO_XSI_PREFIX struct LassoAssertionQuery { LassoAssertionQueryPrivate* private_data } LassoAssertionQueryRequestType LassoCheckVersionMode struct LassoDefederation { } struct LassoDsKeyInfo { LassoDsKeyValue* KeyValue } struct LassoDsKeyValue { LassoDsRsaKeyValue* RSAKeyValue } struct LassoDsRsaKeyValue { char* Modulus, char* Exponent } struct LassoEcp { gchar* assertionConsumerURL, LassoEcpPrivate* private_data } LassoEncryptionMode LassoEncryptionSymKeyType struct LassoFederation { gchar* remote_providerID, LassoNode* local_nameIdentifier, LassoNode* remote_nameIdentifier, LassoFederationPrivate* private_data } LassoHttpMethod struct LassoIdentity { GHashTable* federations, gboolean is_dirty, LassoIdentityPrivate* private_data } struct LassoLecp { LassoLibAuthnRequestEnvelope* authnRequestEnvelope, LassoLibAuthnResponseEnvelope* authnResponseEnvelope, char* assertionConsumerServiceURL } struct LassoLibAssertion { char* InResponseTo } struct LassoLibAuthenticationStatement { LassoLibAuthnContext* AuthnContext, char* ReauthenticateOnOrAfter, char* SessionIndex } struct LassoLibAuthnContext { char* AuthnContextClassRef, char* AuthnContextStatementRef } struct LassoLibAuthnRequest { GList* Extension, char* ProviderID, char* AffiliationID, char* NameIDPolicy, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolProfile, char* AssertionConsumerServiceID, LassoLibRequestAuthnContext* RequestAuthnContext, char* RelayState, LassoLibScoping* Scoping, char* consent } struct LassoLibAuthnRequestEnvelope { GList* Extension, LassoLibAuthnRequest* AuthnRequest, char* ProviderID, char* ProviderName, char* AssertionConsumerServiceURL, LassoLibIDPList* IDPList, gboolean IsPassive } struct LassoLibAuthnResponse { GList* Extension, char* ProviderID, char* RelayState, char* consent } struct LassoLibAuthnResponseEnvelope { GList* Extension, LassoLibAuthnResponse* AuthnResponse, char* AssertionConsumerServiceURL } struct LassoLibFederationTerminationNotification { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* consent, char* RelayState } struct LassoLibIDPEntries { GList* IDPEntry } struct LassoLibIDPEntry { char* ProviderID, char* ProviderName, char* Loc } struct LassoLibIDPList { LassoLibIDPEntries* IDPEntries, char* GetComplete } struct LassoLibLogoutRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* SessionIndex, char* RelayState, char* consent, char* NotOnOrAfter } struct LassoLibLogoutResponse { } struct LassoLibNameIdentifierMappingRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* TargetNamespace, char* consent } struct LassoLibNameIdentifierMappingResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, LassoSamlNameIdentifier* NameIdentifier } struct LassoLibRegisterNameIdentifierRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* IDPProvidedNameIdentifier, LassoSamlNameIdentifier* SPProvidedNameIdentifier, LassoSamlNameIdentifier* OldProvidedNameIdentifier, char* RelayState } struct LassoLibRegisterNameIdentifierResponse { } struct LassoLibRequestAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextStatementRef, char* AuthnContextComparison } struct LassoLibScoping { int ProxyCount, LassoLibIDPList* IDPList } struct LassoLibStatusResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, char* RelayState } struct LassoLibSubject { LassoSamlNameIdentifier* IDPProvidedNameIdentifier } struct LassoLogin { LassoLoginProtocolProfile protocolProfile, gchar* assertionArtifact, LassoSamlAssertion* assertion, gchar* nameIDPolicy, LassoHttpMethod http_method, LassoLoginPrivate* private_data } LassoLoginProtocolProfile struct LassoLogout { LassoNode* initial_request, LassoNode* initial_response, gchar* initial_remote_providerID, gint providerID_index, LassoHttpMethod initial_http_request_method, LassoLogoutPrivate* private_data } LassoMdProtocolType LassoMessageFormat struct LassoMiscTextNode { char* content, char* name, char* ns_href, char* ns_prefix, gboolean text_child } struct LassoNameIdManagement { } struct LassoNameIdentifierMapping { gchar* targetNameIdentifier } struct LassoNameRegistration { LassoSamlNameIdentifier* oldNameIdentifier } struct LassoNode { } struct LassoProfile { LassoServer* server, LassoNode* request, LassoNode* response, LassoNode* nameIdentifier, gchar* remote_providerID, gchar* msg_url, gchar* msg_body, gchar* msg_relayState, LassoIdentity* identity, LassoSession* session, LassoHttpMethod http_request_method, gint signature_status, LassoProfilePrivate* private_data } LassoProfileSignatureHint LassoProfileSignatureVerifyHint LassoProtocolConformance struct LassoProvider { gchar* ProviderID, LassoProviderRole role, char* metadata_filename, gchar* public_key, gchar* ca_cert_chain, LassoProviderPrivate* private_data } LassoProviderRole LassoRequestType struct LassoSaml2Action { char* content, char* Namespace } struct LassoSaml2Advice { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2Assertion { LassoSaml2NameID* Issuer, LassoSaml2Subject* Subject, LassoSaml2Conditions* Conditions, LassoSaml2Advice* Advice, GList* Statement, GList* AuthnStatement, GList* AuthzDecisionStatement, GList* AttributeStatement, char* Version, char* ID, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file, gboolean encryption_activated, char* encryption_public_key_str, LassoEncryptionSymKeyType encryption_sym_key_type } LassoSaml2AssertionValidationState struct LassoSaml2Attribute { GList* AttributeValue, char* Name, char* NameFormat, char* FriendlyName } struct LassoSaml2AttributeStatement { GList* Attribute, GList* EncryptedAttribute } struct LassoSaml2AttributeValue { GList* any } struct LassoSaml2AudienceRestriction { char* Audience } struct LassoSaml2AuthnContext { char* AuthnContextClassRef, char* AuthnContextDeclRef, char* AuthenticatingAuthority } struct LassoSaml2AuthnStatement { LassoSaml2SubjectLocality* SubjectLocality, LassoSaml2AuthnContext* AuthnContext, char* AuthnInstant, char* SessionIndex, char* SessionNotOnOrAfter } struct LassoSaml2AuthzDecisionStatement { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource, char* Decision } struct LassoSaml2BaseIDAbstract { char* NameQualifier, char* SPNameQualifier } struct LassoSaml2ConditionAbstract { } struct LassoSaml2Conditions { GList* Condition, GList* AudienceRestriction, GList* OneTimeUse, GList* ProxyRestriction, char* NotBefore, char* NotOnOrAfter } struct LassoSaml2EncryptedElement { xmlNode* EncryptedData, GList* EncryptedKey, LassoNode* original_data } struct LassoSaml2Evidence { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2KeyInfoConfirmationData { } struct LassoSaml2NameID { char* content, char* Format, char* SPProvidedID, char* NameQualifier, char* SPNameQualifier } struct LassoSaml2OneTimeUse { } struct LassoSaml2ProxyRestriction { char* Audience, char* Count } struct LassoSaml2StatementAbstract { } struct LassoSaml2Subject { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmation* SubjectConfirmation } struct LassoSaml2SubjectConfirmation { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmationData* SubjectConfirmationData, char* Method } struct LassoSaml2SubjectConfirmationData { char* NotBefore, char* NotOnOrAfter, char* Recipient, char* InResponseTo, char* Address } struct LassoSaml2SubjectLocality { char* Address, char* DNSName } struct LassoSamlAdvice { GList* AssertionIDReference, LassoNode* Assertion } struct LassoSamlAssertion { LassoSamlConditions* Conditions, LassoSamlAdvice* Advice, LassoSamlSubjectStatement* SubjectStatement, LassoSamlAuthenticationStatement* AuthenticationStatement, LassoSamlAttributeStatement* AttributeStatement, int MajorVersion, int MinorVersion, char* AssertionID, char* Issuer, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlAttribute { gchar* attributeName, gchar* attributeNameSpace, GList* AttributeValue } struct LassoSamlAttributeDesignator { char* AttributeName, char* AttributeNamespace } struct LassoSamlAttributeStatement { GList* Attribute } struct LassoSamlAttributeValue { GList* any } struct LassoSamlAudienceRestrictionCondition { GList* Audience } struct LassoSamlAuthenticationStatement { LassoSamlSubjectLocality* SubjectLocality, GList* AuthorityBinding, char* AuthenticationMethod, char* AuthenticationInstant } struct LassoSamlAuthorityBinding { char* AuthorityKind, char* Location, char* Binding } struct LassoSamlConditionAbstract { } struct LassoSamlConditions { GList* Condition, GList* AudienceRestrictionCondition, char* NotBefore, char* NotOnOrAfter } struct LassoSamlNameIdentifier { char* NameQualifier, char* Format, char* content } struct LassoSamlStatementAbstract { } struct LassoSamlSubject { LassoSamlNameIdentifier* NameIdentifier, LassoSamlSubjectConfirmation* SubjectConfirmation, LassoSaml2EncryptedElement* EncryptedNameIdentifier } struct LassoSamlSubjectConfirmation { GList* ConfirmationMethod, char* SubjectConfirmationData, LassoDsKeyInfo* KeyInfo } struct LassoSamlSubjectLocality { char* IPAddress, char* DNSAddress } struct LassoSamlSubjectStatement { } struct LassoSamlSubjectStatementAbstract { LassoSamlSubject* Subject } struct LassoSamlp2ArtifactResolve { char* Artifact } struct LassoSamlp2ArtifactResponse { LassoNode* any } struct LassoSamlp2AssertionIDRequest { char* AssertionIDRef } struct LassoSamlp2AttributeQuery { GList* Attribute } struct LassoSamlp2AuthnQuery { LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, char* SessionIndex } struct LassoSamlp2AuthnRequest { LassoSaml2Subject* Subject, LassoSamlp2NameIDPolicy* NameIDPolicy, LassoSaml2Conditions* Conditions, LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, LassoSamlp2Scoping* Scoping, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolBinding, int AssertionConsumerServiceIndex, char* AssertionConsumerServiceURL, int AttributeConsumingServiceIndex, char* ProviderName, G_GNUC_DEPRECATED char } struct LassoSamlp2AuthzDecisionQuery { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource } struct LassoSamlp2Extensions { } struct LassoSamlp2IDPEntry { char* ProviderID, char* Name, char* Loc } struct LassoSamlp2IDPList { LassoSamlp2IDPEntry* IDPEntry, char* GetComplete } struct LassoSamlp2LogoutRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* SessionIndex, char* Reason, char* NotOnOrAfter, G_GNUC_DEPRECATED char } struct LassoSamlp2LogoutResponse { G_GNUC_DEPRECATED char } struct LassoSamlp2ManageNameIDRequest { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* NewID, LassoSaml2EncryptedElement* NewEncryptedID, LassoSamlp2Terminate* Terminate } struct LassoSamlp2ManageNameIDResponse { } struct LassoSamlp2NameIDMappingRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSamlp2NameIDPolicy* NameIDPolicy } struct LassoSamlp2NameIDMappingResponse { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID } struct LassoSamlp2NameIDPolicy { char* Format, char* SPNameQualifier, gboolean AllowCreate } struct LassoSamlp2RequestAbstract { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, char* ID, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2RequestedAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextDeclRef, char* Comparison } struct LassoSamlp2Response { GList* Assertion, GList* EncryptedAssertion } struct LassoSamlp2Scoping { LassoSamlp2IDPList* IDPList, char* RequesterID, char* ProxyCount } struct LassoSamlp2Status { LassoSamlp2StatusCode* StatusCode, char* StatusMessage, LassoSamlp2StatusDetail* StatusDetail } struct LassoSamlp2StatusCode { LassoSamlp2StatusCode* StatusCode, char* Value } struct LassoSamlp2StatusDetail { } struct LassoSamlp2StatusResponse { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, LassoSamlp2Status* Status, char* ID, char* InResponseTo, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2SubjectQueryAbstract { LassoSaml2Subject* Subject } struct LassoSamlp2Terminate { } struct LassoSamlpRequest { char* AssertionArtifact } struct LassoSamlpRequestAbstract { GList* RespondWith, char* RequestID, int MajorVersion, int MinorVersion, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpResponse { LassoSamlpStatus* Status, GList* Assertion } struct LassoSamlpResponseAbstract { char* ResponseID, char* InResponseTo, int MajorVersion, int MinorVersion, char* IssueInstant, char* Recipient, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpStatus { LassoSamlpStatusCode* StatusCode, char* StatusMessage } struct LassoSamlpStatusCode { LassoSamlpStatusCode* StatusCode, char* Value } struct LassoServer { GHashTable* providers, GHashTable* services, gchar* private_key, gchar* private_key_password, gchar* certificate, LassoSignatureMethod signature_method, LassoServerPrivate* private_data } struct LassoSession { GHashTable* assertions, gboolean is_dirty, LassoSessionPrivate* private_data } LassoSignatureMethod LassoSignatureType lasso_error_t lasso_assertion_query_add_attribute_request ( LassoAssertionQuery* assertion_query, char* format, char* name ) lasso_error_t lasso_assertion_query_build_request_msg ( LassoAssertionQuery* assertion_query ) lasso_error_t lasso_assertion_query_build_response_msg ( LassoAssertionQuery* assertion_query ) None lasso_assertion_query_destroy ( LassoAssertionQuery* assertion_query ) LassoAssertionQueryRequestType lasso_assertion_query_get_request_type ( LassoAssertionQuery* assertion_query ) GType lasso_assertion_query_get_type ( ) lasso_error_t lasso_assertion_query_init_request ( LassoAssertionQuery* assertion_query, char* remote_provider_id, LassoHttpMethod http_method, LassoAssertionQueryRequestType query_request_type ) LassoAssertionQuery* lasso_assertion_query_new ( LassoServer* server ) lasso_error_t lasso_assertion_query_process_request_msg ( LassoAssertionQuery* assertion_query, gchar* request_msg ) lasso_error_t lasso_assertion_query_process_response_msg ( LassoAssertionQuery* assertion_query, gchar* response_msg ) lasso_error_t lasso_assertion_query_validate_request ( LassoAssertionQuery* assertion_query ) char* lasso_build_unique_id ( unsigned int size ) int lasso_check_version ( int major, int minor, int subminor, LassoCheckVersionMode mode ) lasso_error_t lasso_defederation_build_notification_msg ( LassoDefederation* defederation ) None lasso_defederation_destroy ( LassoDefederation* defederation ) GType lasso_defederation_get_type ( ) lasso_error_t lasso_defederation_init_notification ( LassoDefederation* defederation, gchar* remote_providerID, LassoHttpMethod http_method ) LassoDefederation* lasso_defederation_new ( LassoServer* server ) lasso_error_t lasso_defederation_process_notification_msg ( LassoDefederation* defederation, gchar* notification_msg ) lasso_error_t lasso_defederation_validate_notification ( LassoDefederation* defederation ) GType lasso_ds_key_info_get_type ( ) LassoDsKeyInfo* lasso_ds_key_info_new ( ) GType lasso_ds_key_value_get_type ( ) LassoDsKeyValue* lasso_ds_key_value_new ( ) GType lasso_ds_rsa_key_value_get_type ( ) LassoDsRsaKeyValue* lasso_ds_rsa_key_value_new ( ) None lasso_ecp_destroy ( LassoEcp* ecp ) GType lasso_ecp_get_type ( ) LassoEcp* lasso_ecp_new ( LassoServer* server ) lasso_error_t lasso_ecp_process_authn_request_msg ( LassoEcp* ecp, const char* authn_request_msg ) lasso_error_t lasso_ecp_process_response_msg ( LassoEcp* ecp, const char* response_msg ) None lasso_federation_build_local_name_identifier ( LassoFederation* federation, const gchar* nameQualifier, const gchar* format, const gchar* content ) None lasso_federation_destroy ( LassoFederation* federation ) GType lasso_federation_get_type ( ) LassoFederation* lasso_federation_new ( const gchar* remote_providerID ) gboolean lasso_federation_verify_name_identifier ( LassoFederation* federation, LassoNode* name_identifier ) char* lasso_get_prefix_for_dst_service_href ( const char* href ) gchar* lasso_get_prefix_for_idwsf2_dst_service_href ( const gchar* href ) None lasso_identity_destroy ( LassoIdentity* identity ) gchar* lasso_identity_dump ( LassoIdentity* identity ) LassoFederation* lasso_identity_get_federation ( LassoIdentity* identity, const char* providerID ) GType lasso_identity_get_type ( ) LassoIdentity* lasso_identity_new ( ) LassoIdentity* lasso_identity_new_from_dump ( const gchar* dump ) lasso_error_t lasso_init ( ) lasso_error_t lasso_lecp_build_authn_request_envelope_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_request_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_response_envelope_msg ( LassoLecp* lecp ) lasso_error_t lasso_lecp_build_authn_response_msg ( LassoLecp* lecp ) None lasso_lecp_destroy ( LassoLecp* lecp ) GType lasso_lecp_get_type ( ) lasso_error_t lasso_lecp_init_authn_request ( LassoLecp* lecp, const char* remote_providerID ) LassoLecp* lasso_lecp_new ( LassoServer* server ) lasso_error_t lasso_lecp_process_authn_request_envelope_msg ( LassoLecp* lecp, const char* request_msg ) lasso_error_t lasso_lecp_process_authn_request_msg ( LassoLecp* lecp, const char* authn_request_msg ) lasso_error_t lasso_lecp_process_authn_response_envelope_msg ( LassoLecp* lecp, const char* response_msg ) GType lasso_lib_assertion_get_type ( ) LassoLibAssertion* lasso_lib_assertion_new ( ) LassoLibAssertion* lasso_lib_assertion_new_full ( const char* issuer, const char* requestID, const char* audience, const char* notBefore, const char* notOnOrAfter ) GType lasso_lib_authentication_statement_get_type ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new_full ( const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, LassoSamlNameIdentifier* sp_identifier, LassoSamlNameIdentifier* idp_identifier ) GType lasso_lib_authn_context_get_type ( ) LassoNode* lasso_lib_authn_context_new ( ) GType lasso_lib_authn_request_envelope_get_type ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new_full ( LassoLibAuthnRequest* authnRequest, char* providerID, char* assertionConsumerServiceURL ) GType lasso_lib_authn_request_get_type ( ) LassoLibAuthnRequest* lasso_lib_authn_request_new ( ) GType lasso_lib_authn_response_envelope_get_type ( ) LassoLibAuthnResponseEnvelope* lasso_lib_authn_response_envelope_new ( LassoLibAuthnResponse* response, char* assertionConsumerServiceURL ) GType lasso_lib_authn_response_get_type ( ) LassoNode* lasso_lib_authn_response_new ( char* providerID, LassoLibAuthnRequest* request ) GType lasso_lib_federation_termination_notification_get_type ( ) LassoNode* lasso_lib_federation_termination_notification_new ( ) LassoNode* lasso_lib_federation_termination_notification_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_idp_entries_get_type ( ) LassoNode* lasso_lib_idp_entries_new ( ) GType lasso_lib_idp_entry_get_type ( ) LassoNode* lasso_lib_idp_entry_new ( ) GType lasso_lib_idp_list_get_type ( ) LassoNode* lasso_lib_idp_list_new ( ) GType lasso_lib_logout_request_get_type ( ) LassoNode* lasso_lib_logout_request_new ( ) LassoNode* lasso_lib_logout_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_logout_response_get_type ( ) LassoNode* lasso_lib_logout_response_new ( ) LassoNode* lasso_lib_logout_response_new_full ( char* providerID, const char* statusCodeValue, LassoLibLogoutRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_request_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, const char* targetNamespace, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_response_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new_full ( char* provideRID, const char* statusCodeValue, LassoLibNameIdentifierMappingRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_request_get_type ( ) LassoNode* lasso_lib_register_name_identifier_request_new ( ) LassoNode* lasso_lib_register_name_identifier_request_new_full ( const char* providerID, LassoSamlNameIdentifier* idpNameIdentifier, LassoSamlNameIdentifier* spNameIdentifier, LassoSamlNameIdentifier* oldNameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_response_get_type ( ) LassoNode* lasso_lib_register_name_identifier_response_new ( ) LassoNode* lasso_lib_register_name_identifier_response_new_full ( const char* providerID, const char* statusCodeValue, LassoLibRegisterNameIdentifierRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_request_authn_context_get_type ( ) LassoLibRequestAuthnContext* lasso_lib_request_authn_context_new ( ) GType lasso_lib_scoping_get_type ( ) LassoLibScoping* lasso_lib_scoping_new ( ) GType lasso_lib_status_response_get_type ( ) LassoNode* lasso_lib_status_response_new ( ) GType lasso_lib_subject_get_type ( ) LassoLibSubject* lasso_lib_subject_new ( ) lasso_error_t lasso_login_accept_sso ( LassoLogin* login ) lasso_error_t lasso_login_build_artifact_msg ( LassoLogin* login, LassoHttpMethod http_method ) lasso_error_t lasso_login_build_assertion ( LassoLogin* login, const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, const char* notBefore, const char* notOnOrAfter ) lasso_error_t lasso_login_build_authn_request_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_authn_response_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_request_msg ( LassoLogin* login ) lasso_error_t lasso_login_build_response_msg ( LassoLogin* login, gchar* remote_providerID ) None lasso_login_destroy ( LassoLogin* login ) gchar* lasso_login_dump ( LassoLogin* login ) LassoNode* lasso_login_get_assertion ( LassoLogin* login ) GType lasso_login_get_type ( ) lasso_error_t lasso_login_init_authn_request ( LassoLogin* login, const gchar* remote_providerID, LassoHttpMethod http_method ) lasso_error_t lasso_login_init_idp_initiated_authn_request ( LassoLogin* login, const gchar* remote_providerID ) lasso_error_t lasso_login_init_request ( LassoLogin* login, gchar* response_msg, LassoHttpMethod response_http_method ) gboolean lasso_login_must_ask_for_consent ( LassoLogin* login ) gboolean lasso_login_must_authenticate ( LassoLogin* login ) LassoLogin* lasso_login_new ( LassoServer* server ) LassoLogin* lasso_login_new_from_dump ( LassoServer* server, const gchar* dump ) lasso_error_t lasso_login_process_authn_request_msg ( LassoLogin* login, const char* authn_request_msg ) lasso_error_t lasso_login_process_authn_response_msg ( LassoLogin* login, gchar* authn_response_msg ) lasso_error_t lasso_login_process_paos_response_msg ( LassoLogin* login, gchar* msg ) lasso_error_t lasso_login_process_request_msg ( LassoLogin* login, gchar* request_msg ) lasso_error_t lasso_login_process_response_msg ( LassoLogin* login, gchar* response_msg ) lasso_error_t lasso_login_validate_request_msg ( LassoLogin* login, gboolean authentication_result, gboolean is_consent_obtained ) lasso_error_t lasso_logout_build_request_msg ( LassoLogout* logout ) lasso_error_t lasso_logout_build_response_msg ( LassoLogout* logout ) None lasso_logout_destroy ( LassoLogout* logout ) gchar* lasso_logout_dump ( LassoLogout* logout ) gchar* lasso_logout_get_next_providerID ( LassoLogout* logout ) GType lasso_logout_get_type ( ) lasso_error_t lasso_logout_init_request ( LassoLogout* logout, gchar* remote_providerID, LassoHttpMethod request_method ) LassoLogout* lasso_logout_new ( LassoServer* server ) LassoLogout* lasso_logout_new_from_dump ( LassoServer* server, const gchar* dump ) lasso_error_t lasso_logout_process_request_msg ( LassoLogout* logout, gchar* request_msg ) lasso_error_t lasso_logout_process_response_msg ( LassoLogout* logout, gchar* response_msg ) lasso_error_t lasso_logout_reset_providerID_index ( LassoLogout* logout ) lasso_error_t lasso_logout_validate_request ( LassoLogout* logout ) GType lasso_misc_text_node_get_type ( ) xmlNode* lasso_misc_text_node_get_xml_content ( LassoMiscTextNode* misc_text_node ) LassoNode* lasso_misc_text_node_new ( ) LassoMiscTextNode* lasso_misc_text_node_new_with_string ( const char* content ) LassoMiscTextNode* lasso_misc_text_node_new_with_xml_node ( xmlNode* xml_node ) None lasso_misc_text_node_set_xml_content ( LassoMiscTextNode* misc_text_node, xmlNode* node ) lasso_error_t lasso_name_id_management_build_request_msg ( LassoNameIdManagement* name_id_management ) lasso_error_t lasso_name_id_management_build_response_msg ( LassoNameIdManagement* name_id_management ) None lasso_name_id_management_destroy ( LassoNameIdManagement* name_id_management ) char* lasso_name_id_management_dump ( LassoNameIdManagement* name_id_management ) GType lasso_name_id_management_get_type ( ) lasso_error_t lasso_name_id_management_init_request ( LassoNameIdManagement* name_id_management, char* remote_provider_id, char* new_name_id, LassoHttpMethod http_method ) LassoNameIdManagement* lasso_name_id_management_new ( LassoServer* server ) LassoNameIdManagement* lasso_name_id_management_new_from_dump ( LassoServer* server, const char* dump ) lasso_error_t lasso_name_id_management_process_request_msg ( LassoNameIdManagement* name_id_management, gchar* request_msg ) lasso_error_t lasso_name_id_management_process_response_msg ( LassoNameIdManagement* name_id_management, gchar* response_msg ) lasso_error_t lasso_name_id_management_validate_request ( LassoNameIdManagement* name_id_management ) lasso_error_t lasso_name_identifier_mapping_build_request_msg ( LassoNameIdentifierMapping* mapping ) lasso_error_t lasso_name_identifier_mapping_build_response_msg ( LassoNameIdentifierMapping* mapping ) None lasso_name_identifier_mapping_destroy ( LassoNameIdentifierMapping* mapping ) GType lasso_name_identifier_mapping_get_type ( ) lasso_error_t lasso_name_identifier_mapping_init_request ( LassoNameIdentifierMapping* mapping, gchar* targetNamespace, gchar* remote_providerID ) LassoNameIdentifierMapping* lasso_name_identifier_mapping_new ( LassoServer* server ) lasso_error_t lasso_name_identifier_mapping_process_request_msg ( LassoNameIdentifierMapping* mapping, gchar* request_msg ) lasso_error_t lasso_name_identifier_mapping_process_response_msg ( LassoNameIdentifierMapping* mapping, gchar* response_msg ) lasso_error_t lasso_name_identifier_mapping_validate_request ( LassoNameIdentifierMapping* mapping ) lasso_error_t lasso_name_registration_build_request_msg ( LassoNameRegistration* name_registration ) lasso_error_t lasso_name_registration_build_response_msg ( LassoNameRegistration* name_registration ) None lasso_name_registration_destroy ( LassoNameRegistration* name_registration ) gchar* lasso_name_registration_dump ( LassoNameRegistration* name_registration ) GType lasso_name_registration_get_type ( ) lasso_error_t lasso_name_registration_init_request ( LassoNameRegistration* name_registration, char* remote_providerID, LassoHttpMethod http_method ) LassoNameRegistration* lasso_name_registration_new ( LassoServer* server ) LassoNameRegistration* lasso_name_registration_new_from_dump ( LassoServer* server, const char* dump ) lasso_error_t lasso_name_registration_process_request_msg ( LassoNameRegistration* name_registration, gchar* request_msg ) lasso_error_t lasso_name_registration_process_response_msg ( LassoNameRegistration* name_registration, gchar* response_msg ) lasso_error_t lasso_name_registration_validate_request ( LassoNameRegistration* name_registration ) None lasso_node_cleanup_original_xmlnodes ( LassoNode* node ) char* lasso_node_debug ( LassoNode* node, int level ) None lasso_node_destroy ( LassoNode* node ) char* lasso_node_dump ( LassoNode* node ) char* lasso_node_export_to_base64 ( LassoNode* node ) char* lasso_node_export_to_ecp_soap_response ( LassoNode* node, const char* assertionConsumerURL ) char* lasso_node_export_to_paos_request ( LassoNode* node, const char* issuer, const char* responseConsumerURL, const char* relay_state ) char* lasso_node_export_to_query ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file ) char* lasso_node_export_to_query_with_password ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file, const char* private_key_file_password ) char* lasso_node_export_to_soap ( LassoNode* node ) gchar* lasso_node_export_to_xml ( LassoNode* node ) const char* lasso_node_get_name ( LassoNode* node ) const char* lasso_node_get_namespace ( LassoNode* node ) xmlNode* lasso_node_get_original_xmlnode ( LassoNode* node ) GType lasso_node_get_type ( ) xmlNode* lasso_node_get_xmlNode ( LassoNode* node, gboolean lasso_dump ) LassoMessageFormat lasso_node_init_from_message ( LassoNode* node, const char* message ) gboolean lasso_node_init_from_query ( LassoNode* node, const char* query ) lasso_error_t lasso_node_init_from_xml ( LassoNode* node, xmlNode* xmlnode ) LassoNode* lasso_node_new ( ) LassoNode* lasso_node_new_from_dump ( const char* dump ) LassoNode* lasso_node_new_from_soap ( const char* soap ) LassoNode* lasso_node_new_from_xmlNode ( xmlNode* node ) None lasso_node_set_custom_namespace ( LassoNode* node, const char* prefix, const char* href ) None lasso_node_set_custom_nodename ( LassoNode* node, const char* nodename ) None lasso_node_set_original_xmlnode ( LassoNode* node, xmlNode* xmlnode ) char* lasso_profile_get_artifact ( LassoProfile* profile ) char* lasso_profile_get_artifact_message ( LassoProfile* profile ) LassoIdentity* lasso_profile_get_identity ( LassoProfile* profile ) LassoNode* lasso_profile_get_nameIdentifier ( LassoProfile* profile ) LassoRequestType lasso_profile_get_request_type_from_soap_msg ( const gchar* soap ) LassoSession* lasso_profile_get_session ( LassoProfile* profile ) LassoProfileSignatureHint lasso_profile_get_signature_hint ( LassoProfile* profile ) lasso_error_t lasso_profile_get_signature_status ( LassoProfile* profile ) LassoProfileSignatureVerifyHint lasso_profile_get_signature_verify_hint ( LassoProfile* profile ) GType lasso_profile_get_type ( ) gboolean lasso_profile_is_identity_dirty ( LassoProfile* profile ) gboolean lasso_profile_is_liberty_query ( const gchar* query ) gboolean lasso_profile_is_saml_query ( const gchar* query ) gboolean lasso_profile_is_session_dirty ( LassoProfile* profile ) None lasso_profile_set_artifact_message ( LassoProfile* profile, const char* message ) lasso_error_t lasso_profile_set_identity_from_dump ( LassoProfile* profile, const gchar* dump ) lasso_error_t lasso_profile_set_session_from_dump ( LassoProfile* profile, const gchar* dump ) None lasso_profile_set_signature_hint ( LassoProfile* profile, LassoProfileSignatureHint signature_hint ) None lasso_profile_set_signature_verify_hint ( LassoProfile* profile, LassoProfileSignatureVerifyHint signature_verify_hint ) lasso_error_t lasso_profile_set_soap_fault_response ( LassoProfile* profile, const char* faultcode, const char* faultstring, GList* details ) LassoProviderRole lasso_profile_sso_role_with ( LassoProfile* profile, const char* remote_provider_id ) gboolean lasso_provider_accept_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type, LassoHttpMethod http_method, gboolean initiate_profile ) gchar* lasso_provider_get_assertion_consumer_service_url ( LassoProvider* provider, const char* service_id ) gchar* lasso_provider_get_base64_succinct_id ( const LassoProvider* provider ) char* lasso_provider_get_cache_duration ( LassoProvider* provider ) gchar* lasso_provider_get_default_name_id_format ( LassoProvider* provider ) LassoEncryptionMode lasso_provider_get_encryption_mode ( LassoProvider* provider ) LassoHttpMethod lasso_provider_get_first_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type ) GList* lasso_provider_get_idp_supported_attributes ( LassoProvider* provider ) GList* lasso_provider_get_metadata_keys_for_role ( LassoProvider* provider, LassoProviderRole role ) GList* lasso_provider_get_metadata_list ( LassoProvider* provider, const char* name ) GList* lasso_provider_get_metadata_list_for_role ( const LassoProvider* provider, LassoProviderRole role, const char* name ) gchar* lasso_provider_get_metadata_one ( LassoProvider* provider, const char* name ) char* lasso_provider_get_metadata_one_for_role ( LassoProvider* provider, LassoProviderRole role, const char* name ) xmlNode* lasso_provider_get_organization ( const LassoProvider* provider ) LassoProtocolConformance lasso_provider_get_protocol_conformance ( const LassoProvider* provider ) LassoProviderRole lasso_provider_get_roles ( LassoProvider* provider ) const char* lasso_provider_get_sp_name_qualifier ( LassoProvider* provider ) GType lasso_provider_get_type ( ) char* lasso_provider_get_valid_until ( LassoProvider* provider ) gboolean lasso_provider_has_protocol_profile ( LassoProvider* provider, LassoMdProtocolType protocol_type, const char* protocol_profile ) gboolean lasso_provider_match_conformance ( LassoProvider* provider, LassoProvider* another_provider ) LassoProvider* lasso_provider_new ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_buffer ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_dump ( const gchar* dump ) LassoSaml2EncryptedElement* lasso_provider_saml2_node_encrypt ( const LassoProvider* provider, LassoNode* lasso_node ) None lasso_provider_set_encryption_mode ( LassoProvider* provider, LassoEncryptionMode encryption_mode ) None lasso_provider_set_encryption_sym_key_type ( LassoProvider* provider, LassoEncryptionSymKeyType encryption_sym_key_type ) lasso_error_t lasso_provider_verify_single_node_signature ( LassoProvider* provider, LassoNode* node, const char* id_attr_name ) None lasso_register_dst_service ( const char* prefix, const char* href ) None lasso_register_idwsf2_dst_service ( const gchar* prefix, const gchar* href ) GType lasso_saml2_action_get_type ( ) LassoNode* lasso_saml2_action_new ( ) LassoNode* lasso_saml2_action_new_with_string ( char* content ) GType lasso_saml2_advice_get_type ( ) LassoNode* lasso_saml2_advice_new ( ) lasso_error_t lasso_saml2_assertion_add_attribute_with_node ( LassoSaml2Assertion* assertion, const char* name, const char* nameformat, LassoNode* content ) None lasso_saml2_assertion_add_audience_restriction ( LassoSaml2Assertion* saml2_assertion, const char* providerID ) None lasso_saml2_assertion_add_proxy_limit ( LassoSaml2Assertion* saml2_assertion, int proxy_count, GList* proxy_audiences ) LassoSaml2AssertionValidationState lasso_saml2_assertion_allows_proxying ( LassoSaml2Assertion* saml2_assertion ) LassoSaml2AssertionValidationState lasso_saml2_assertion_allows_proxying_to ( LassoSaml2Assertion* saml2_assertion, const char* audience ) lasso_error_t lasso_saml2_assertion_decrypt_subject ( LassoSaml2Assertion* assertion, LassoServer* server ) const char* lasso_saml2_assertion_get_in_response_to ( LassoSaml2Assertion* assertion ) LassoProvider* lasso_saml2_assertion_get_issuer_provider ( const LassoSaml2Assertion* saml2_assertion, const LassoServer* server ) LassoSaml2SubjectConfirmationData* lasso_saml2_assertion_get_subject_confirmation_data ( LassoSaml2Assertion* saml2_assertion, gboolean create ) GType lasso_saml2_assertion_get_type ( ) gboolean lasso_saml2_assertion_has_audience_restriction ( LassoSaml2Assertion* saml2_assertion ) gboolean lasso_saml2_assertion_has_one_time_use ( LassoSaml2Assertion* saml2_assertion ) gboolean lasso_saml2_assertion_is_audience_restricted ( LassoSaml2Assertion* saml2_assertion, char* providerID ) LassoNode* lasso_saml2_assertion_new ( ) None lasso_saml2_assertion_set_basic_conditions ( LassoSaml2Assertion* saml2_assertion, time_t tolerance, time_t length, gboolean one_time_use ) None lasso_saml2_assertion_set_one_time_use ( LassoSaml2Assertion* saml2_assertion, gboolean one_time_use ) None lasso_saml2_assertion_set_subject_confirmation_data ( LassoSaml2Assertion* saml2_assertion, time_t tolerance, time_t length, const char* Recipient, const char* InResponseTo, const char* Address ) None lasso_saml2_assertion_set_subject_confirmation_name_id ( LassoSaml2Assertion* saml2_assertion, LassoNode* node ) None lasso_saml2_assertion_set_subject_name_id ( LassoSaml2Assertion* saml2_assertion, LassoNode* node ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_audience ( LassoSaml2Assertion* saml2_assertion, const gchar* audience ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_conditions ( LassoSaml2Assertion* saml2_assertion, const char* relaying_party_providerID ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_time_checks ( LassoSaml2Assertion* saml2_assertion, unsigned int tolerance, time_t now ) GType lasso_saml2_attribute_get_type ( ) LassoNode* lasso_saml2_attribute_new ( ) GType lasso_saml2_attribute_statement_get_type ( ) LassoNode* lasso_saml2_attribute_statement_new ( ) GType lasso_saml2_attribute_value_get_type ( ) LassoSaml2AttributeValue* lasso_saml2_attribute_value_new ( ) GType lasso_saml2_audience_restriction_get_type ( ) LassoNode* lasso_saml2_audience_restriction_new ( ) GType lasso_saml2_authn_context_get_type ( ) LassoNode* lasso_saml2_authn_context_new ( ) GType lasso_saml2_authn_statement_get_type ( ) LassoNode* lasso_saml2_authn_statement_new ( ) GType lasso_saml2_authz_decision_statement_get_type ( ) LassoNode* lasso_saml2_authz_decision_statement_new ( ) GType lasso_saml2_base_idabstract_get_type ( ) LassoNode* lasso_saml2_base_idabstract_new ( ) GType lasso_saml2_condition_abstract_get_type ( ) LassoNode* lasso_saml2_condition_abstract_new ( ) GType lasso_saml2_conditions_get_type ( ) LassoNode* lasso_saml2_conditions_new ( ) LassoSaml2EncryptedElement* lasso_saml2_encrypted_element_build_encrypted_persistent_name_id ( const char* id, const char* idpID, const LassoProvider* provider ) GType lasso_saml2_encrypted_element_get_type ( ) LassoNode* lasso_saml2_encrypted_element_new ( ) lasso_error_t lasso_saml2_encrypted_element_server_decrypt ( LassoSaml2EncryptedElement* encrypted_element, LassoServer* server, LassoNode** decrypted_node ) GType lasso_saml2_evidence_get_type ( ) LassoNode* lasso_saml2_evidence_new ( ) GType lasso_saml2_key_info_confirmation_data_get_type ( ) LassoNode* lasso_saml2_key_info_confirmation_data_new ( ) LassoSaml2NameID* lasso_saml2_name_id_build_persistent ( const char* id, const char* idpID, const char* providerID ) gboolean lasso_saml2_name_id_equals ( LassoSaml2NameID* name_id, LassoSaml2NameID* other_name_id ) GType lasso_saml2_name_id_get_type ( ) LassoNode* lasso_saml2_name_id_new ( ) LassoSaml2NameID* lasso_saml2_name_id_new_with_persistent_format ( const char* id, const char* idpID, const char* providerID ) LassoNode* lasso_saml2_name_id_new_with_string ( char* content ) GType lasso_saml2_one_time_use_get_type ( ) LassoNode* lasso_saml2_one_time_use_new ( ) GType lasso_saml2_proxy_restriction_get_type ( ) LassoNode* lasso_saml2_proxy_restriction_new ( ) GType lasso_saml2_statement_abstract_get_type ( ) LassoNode* lasso_saml2_statement_abstract_new ( ) GType lasso_saml2_subject_confirmation_data_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_data_new ( ) GType lasso_saml2_subject_confirmation_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_new ( ) GType lasso_saml2_subject_get_type ( ) GType lasso_saml2_subject_locality_get_type ( ) LassoNode* lasso_saml2_subject_locality_new ( ) LassoNode* lasso_saml2_subject_new ( ) GType lasso_saml_advice_get_type ( ) LassoNode* lasso_saml_advice_new ( ) GType lasso_saml_assertion_get_type ( ) LassoSamlAssertion* lasso_saml_assertion_new ( ) GType lasso_saml_attribute_designator_get_type ( ) LassoNode* lasso_saml_attribute_designator_new ( ) GType lasso_saml_attribute_get_type ( ) LassoSamlAttribute* lasso_saml_attribute_new ( ) GType lasso_saml_attribute_statement_get_type ( ) LassoSamlAttributeStatement* lasso_saml_attribute_statement_new ( ) GType lasso_saml_attribute_value_get_type ( ) LassoSamlAttributeValue* lasso_saml_attribute_value_new ( ) GType lasso_saml_audience_restriction_condition_get_type ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new_full ( const char* audience ) GType lasso_saml_authentication_statement_get_type ( ) LassoNode* lasso_saml_authentication_statement_new ( ) GType lasso_saml_authority_binding_get_type ( ) LassoNode* lasso_saml_authority_binding_new ( ) GType lasso_saml_condition_abstract_get_type ( ) GType lasso_saml_conditions_get_type ( ) LassoSamlConditions* lasso_saml_conditions_new ( ) GType lasso_saml_name_identifier_get_type ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new_from_xmlNode ( xmlNode* xmlnode ) GType lasso_saml_statement_abstract_get_type ( ) GType lasso_saml_subject_confirmation_get_type ( ) LassoSamlSubjectConfirmation* lasso_saml_subject_confirmation_new ( ) GType lasso_saml_subject_get_type ( ) GType lasso_saml_subject_locality_get_type ( ) LassoNode* lasso_saml_subject_locality_new ( ) LassoNode* lasso_saml_subject_new ( ) GType lasso_saml_subject_statement_abstract_get_type ( ) GType lasso_saml_subject_statement_get_type ( ) LassoNode* lasso_saml_subject_statement_new ( ) GType lasso_samlp2_artifact_resolve_get_type ( ) LassoNode* lasso_samlp2_artifact_resolve_new ( ) GType lasso_samlp2_artifact_response_get_type ( ) LassoNode* lasso_samlp2_artifact_response_new ( ) GType lasso_samlp2_assertion_id_request_get_type ( ) LassoNode* lasso_samlp2_assertion_id_request_new ( ) GType lasso_samlp2_attribute_query_get_type ( ) LassoNode* lasso_samlp2_attribute_query_new ( ) GType lasso_samlp2_authn_query_get_type ( ) LassoNode* lasso_samlp2_authn_query_new ( ) GType lasso_samlp2_authn_request_get_type ( ) LassoNode* lasso_samlp2_authn_request_new ( ) GType lasso_samlp2_authz_decision_query_get_type ( ) LassoNode* lasso_samlp2_authz_decision_query_new ( ) GType lasso_samlp2_extensions_get_type ( ) LassoNode* lasso_samlp2_extensions_new ( ) GType lasso_samlp2_idp_entry_get_type ( ) LassoNode* lasso_samlp2_idp_entry_new ( ) GType lasso_samlp2_idp_list_get_type ( ) LassoNode* lasso_samlp2_idp_list_new ( ) GList* lasso_samlp2_logout_request_get_session_indexes ( LassoSamlp2LogoutRequest* logout_request ) GType lasso_samlp2_logout_request_get_type ( ) LassoNode* lasso_samlp2_logout_request_new ( ) None lasso_samlp2_logout_request_set_session_indexes ( LassoSamlp2LogoutRequest* logout_request, GList* session_index ) GType lasso_samlp2_logout_response_get_type ( ) LassoNode* lasso_samlp2_logout_response_new ( ) GType lasso_samlp2_manage_name_id_request_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_request_new ( ) GType lasso_samlp2_manage_name_id_response_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_response_new ( ) GType lasso_samlp2_name_id_mapping_request_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_request_new ( ) GType lasso_samlp2_name_id_mapping_response_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_response_new ( ) GType lasso_samlp2_name_id_policy_get_type ( ) LassoNode* lasso_samlp2_name_id_policy_new ( ) GType lasso_samlp2_request_abstract_get_type ( ) LassoNode* lasso_samlp2_request_abstract_new ( ) GType lasso_samlp2_requested_authn_context_get_type ( ) LassoNode* lasso_samlp2_requested_authn_context_new ( ) GType lasso_samlp2_response_get_type ( ) LassoNode* lasso_samlp2_response_new ( ) GType lasso_samlp2_scoping_get_type ( ) LassoNode* lasso_samlp2_scoping_new ( ) GType lasso_samlp2_status_code_get_type ( ) LassoNode* lasso_samlp2_status_code_new ( ) GType lasso_samlp2_status_detail_get_type ( ) LassoNode* lasso_samlp2_status_detail_new ( ) GType lasso_samlp2_status_get_type ( ) LassoNode* lasso_samlp2_status_new ( ) GType lasso_samlp2_status_response_get_type ( ) LassoNode* lasso_samlp2_status_response_new ( ) GType lasso_samlp2_subject_query_abstract_get_type ( ) LassoNode* lasso_samlp2_subject_query_abstract_new ( ) GType lasso_samlp2_terminate_get_type ( ) LassoNode* lasso_samlp2_terminate_new ( ) GType lasso_samlp_request_abstract_get_type ( ) GType lasso_samlp_request_get_type ( ) LassoNode* lasso_samlp_request_new ( ) None lasso_samlp_response_abstract_fill ( LassoSamlpResponseAbstract* response, const char* InResponseTo, const char* Recipient ) GType lasso_samlp_response_abstract_get_type ( ) GType lasso_samlp_response_get_type ( ) LassoNode* lasso_samlp_response_new ( ) GType lasso_samlp_status_code_get_type ( ) LassoSamlpStatusCode* lasso_samlp_status_code_new ( ) GType lasso_samlp_status_get_type ( ) LassoSamlpStatus* lasso_samlp_status_new ( ) lasso_error_t lasso_server_add_provider ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) lasso_error_t lasso_server_add_provider_from_buffer ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) None lasso_server_destroy ( LassoServer* server ) gchar* lasso_server_dump ( LassoServer* server ) LassoProvider* lasso_server_get_provider ( const LassoServer* server, const gchar* providerID ) GType lasso_server_get_type ( ) lasso_error_t lasso_server_load_affiliation ( LassoServer* server, const gchar* filename ) LassoServer* lasso_server_new ( const gchar* metadata, const gchar* private_key, const gchar* private_key_password, const gchar* certificate ) LassoServer* lasso_server_new_from_buffers ( const gchar* metadata, const gchar* private_key_content, const gchar* private_key_password, const gchar* certificate_content ) LassoServer* lasso_server_new_from_dump ( const gchar* dump ) lasso_error_t lasso_server_saml2_assertion_setup_signature ( LassoServer* server, LassoSaml2Assertion* saml2_assertion ) lasso_error_t lasso_server_set_encryption_private_key ( LassoServer* server, const gchar* filename_or_buffer ) lasso_error_t lasso_server_set_encryption_private_key_with_password ( LassoServer* server, const gchar* filename_or_buffer, const gchar* password ) lasso_error_t lasso_session_add_assertion ( LassoSession* session, const char* providerID, LassoNode* assertion ) None lasso_session_destroy ( LassoSession* session ) gchar* lasso_session_dump ( LassoSession* session ) LassoNode* lasso_session_get_assertion ( LassoSession* session, const gchar* providerID ) GList* lasso_session_get_assertions ( LassoSession* session, const char* provider_id ) gchar* lasso_session_get_provider_index ( LassoSession* session, gint index ) GType lasso_session_get_type ( ) gboolean lasso_session_is_empty ( LassoSession* session ) LassoSession* lasso_session_new ( ) LassoSession* lasso_session_new_from_dump ( const gchar* dump ) lasso_error_t lasso_session_remove_assertion ( LassoSession* session, const gchar* providerID ) None lasso_set_flag ( char* flag ) lasso_error_t lasso_shutdown ( ) const char* lasso_strerror ( int error_code ) lasso-2.9.0/abi/PaxHeaders/abi-2.2.910000644000000000000000000000013013766621500013665 xustar0029 mtime=1608196928.71889494 30 atime=1754992978.145544976 29 ctime=1754993575.20113351 lasso-2.9.0/abi/abi-2.2.910000644000175000017500000017167213766621500015715 0ustar00bdauvergnebdauvergneLASSO_ASSERTION_QUERY_REQUEST_TYPE_ASSERTION_ID LASSO_ASSERTION_QUERY_REQUEST_TYPE_ATTRIBUTE LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHN LASSO_ASSERTION_QUERY_REQUEST_TYPE_AUTHZ_DECISION LASSO_ASSERTION_QUERY_REQUEST_TYPE_UNSET LASSO_CHECK_VERSIONABI_COMPATIBLE LASSO_CHECK_VERSION_EXACT LASSO_CHECK_VERSION_NUMERIC LASSO_DATA_SERVICE_ERROR_CANNOT_ADD_ITEM LASSO_DATA_SERVICE_ERROR_UNREGISTERED_DST LASSO_DEFEDERATION_ERROR_MISSING_NAME_IDENTIFIER LASSO_DISCOVERY_ERROR_FAILED_TO_BUILD_ENDPOINT_REFERENCE LASSO_DISCOVERY_ERROR_MISSING_REQUESTED_SERVICE LASSO_DISCOVERY_ERROR_SVC_METADATA_ASSOCIATION_ADD_FAILED LASSO_DISCOVERY_ERROR_SVC_METADATA_REGISTER_FAILED LASSO_DST_ERROR_EMPTY_REQUEST LASSO_DST_ERROR_MALFORMED_QUERY LASSO_DST_ERROR_MISSING_SERVICE_DATA LASSO_DST_ERROR_MODIFY_FAILED LASSO_DST_ERROR_MODIFY_PARTIALLY_FAILED LASSO_DST_ERROR_NEW_DATA_MISSING LASSO_DST_ERROR_NO_DATA LASSO_DST_ERROR_QUERY_FAILED LASSO_DST_ERROR_QUERY_NOT_FOUND LASSO_DST_ERROR_QUERY_PARTIALLY_FAILED LASSO_DS_ERROR_CA_CERT_CHAIN_LOAD_FAILED LASSO_DS_ERROR_CERTIFICATE_LOAD_FAILED LASSO_DS_ERROR_CONTEXT_CREATION_FAILED LASSO_DS_ERROR_DECRYPTION_FAILED LASSO_DS_ERROR_DIGEST_COMPUTE_FAILED LASSO_DS_ERROR_ENCRYPTION_FAILED LASSO_DS_ERROR_INVALID_REFERENCE_FOR_SAML LASSO_DS_ERROR_INVALID_SIGALG LASSO_DS_ERROR_INVALID_SIGNATURE LASSO_DS_ERROR_KEYS_MNGR_CREATION_FAILED LASSO_DS_ERROR_KEYS_MNGR_INIT_FAILED LASSO_DS_ERROR_PRIVATE_KEY_LOAD_FAILED LASSO_DS_ERROR_PUBLIC_KEY_LOAD_FAILED LASSO_DS_ERROR_SIGNATURE_FAILED LASSO_DS_ERROR_SIGNATURE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TEMPLATE_NOT_FOUND LASSO_DS_ERROR_SIGNATURE_TMPL_CREATION_FAILED LASSO_DS_ERROR_SIGNATURE_VERIFICATION_FAILED LASSO_DS_ERROR_TOO_MUCH_REFERENCES LASSO_DS_HREF LASSO_DS_PREFIX LASSO_DURATION_DAY LASSO_DURATION_HOUR LASSO_DURATION_MINUTE LASSO_DURATION_WEEK LASSO_ECP_HREF LASSO_ECP_PREFIX LASSO_ENCRYPTION_MODE_ASSERTION LASSO_ENCRYPTION_MODE_NAMEID LASSO_ENCRYPTION_MODE_NONE LASSO_ENCRYPTION_SYM_KEY_TYPE_3DES LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_128 LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_256 LASSO_ENCRYPTION_SYM_KEY_TYPE_DEFAULT LASSO_ERROR_CAST_FAILED LASSO_ERROR_OUT_OF_MEMORY LASSO_ERROR_UNDEFINED LASSO_ERROR_UNIMPLEMENTED LASSO_HTTP_METHOD_ANY LASSO_HTTP_METHOD_ARTIFACT_GET LASSO_HTTP_METHOD_ARTIFACT_POST LASSO_HTTP_METHOD_GET LASSO_HTTP_METHOD_IDP_INITIATED LASSO_HTTP_METHOD_LAST LASSO_HTTP_METHOD_NONE LASSO_HTTP_METHOD_PAOS LASSO_HTTP_METHOD_POST LASSO_HTTP_METHOD_REDIRECT LASSO_HTTP_METHOD_SOAP LASSO_IDWSF2_DISCOVERY_ERROR_DUPLICATE LASSO_IDWSF2_DISCOVERY_ERROR_FAILED LASSO_IDWSF2_DISCOVERY_ERROR_FORBIDDEN LASSO_IDWSF2_DISCOVERY_ERROR_LOGICAL_DUPLICATE LASSO_IDWSF2_DISCOVERY_ERROR_NOT_FOUND LASSO_IDWSF2_DISCOVERY_ERROR_NO_RESULTS LASSO_IDWSF2_DST_ERROR_DUPLICATE_ITEM LASSO_IDWSF2_DST_ERROR_ITEM_NOT_FOUND LASSO_IDWSF2_DST_ERROR_PARTIAL_FAILURE LASSO_IDWSF2_DST_ERROR_UNKNOWN_STATUS_CODE LASSO_LASSO_HREF LASSO_LASSO_PREFIX LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD_PROTECTED_TRANSPORT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PREVIOUS_SESSION LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SOFTWARE_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_TIME_SYNC_TOKEN LASSO_LIB_AUTHN_CONTEXT_COMPARISON_BETTER LASSO_LIB_AUTHN_CONTEXT_COMPARISON_EXACT LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MAXIMUM LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MINIMUM LASSO_LIB_CONSENT_INAPPLICABLE LASSO_LIB_CONSENT_OBTAINED LASSO_LIB_CONSENT_OBTAINED_CURRENT_EXPLICIT LASSO_LIB_CONSENT_OBTAINED_CURRENT_IMPLICIT LASSO_LIB_CONSENT_OBTAINED_PRIOR LASSO_LIB_CONSENT_UNAVAILABLE LASSO_LIB_HREF LASSO_LIB_MAJOR_VERSION_N LASSO_LIB_MINOR_VERSION_N LASSO_LIB_NAMEID_POLICY_TYPE_ANY LASSO_LIB_NAMEID_POLICY_TYPE_FEDERATED LASSO_LIB_NAMEID_POLICY_TYPE_NONE LASSO_LIB_NAMEID_POLICY_TYPE_ONE_TIME LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENTITYID LASSO_LIB_NAME_IDENTIFIER_FORMAT_FEDERATED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ONE_TIME LASSO_LIB_PREFIX LASSO_LIB_PROTOCOL_PROFILE_BRWS_ART LASSO_LIB_PROTOCOL_PROFILE_BRWS_LECP LASSO_LIB_PROTOCOL_PROFILE_BRWS_POST LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_NIM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_SOAP LASSO_LIB_STATUS_CODE_FEDERATION_DOES_NOT_EXIST LASSO_LIB_STATUS_CODE_INVALID_ASSERTION_CONSUMER_SERVICE_INDEX LASSO_LIB_STATUS_CODE_INVALID_SIGNATURE LASSO_LIB_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_LIB_STATUS_CODE_NO_AVAILABLEIDP LASSO_LIB_STATUS_CODE_NO_PASSIVE LASSO_LIB_STATUS_CODE_NO_SUPPORTEDIDP LASSO_LIB_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_LIB_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_LIB_STATUS_CODE_UNSIGNED_AUTHN_REQUEST LASSO_LIB_STATUS_CODE_UNSUPPORTED_PROFILE LASSO_LOGIN_ERROR_ASSERTION_DOES_NOT_MATCH_REQUEST_ID LASSO_LOGIN_ERROR_ASSERTION_REPLAY LASSO_LOGIN_ERROR_CONSENT_NOT_OBTAINED LASSO_LOGIN_ERROR_FEDERATION_NOT_FOUND LASSO_LOGIN_ERROR_INVALID_NAMEIDPOLICY LASSO_LOGIN_ERROR_INVALID_SIGNATURE LASSO_LOGIN_ERROR_NO_DEFAULT_ENDPOINT LASSO_LOGIN_ERROR_REQUEST_DENIED LASSO_LOGIN_ERROR_STATUS_NOT_SUCCESS LASSO_LOGIN_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGIN_ERROR_UNSIGNED_AUTHN_REQUEST LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_ART LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_LECP LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_POST LASSO_LOGIN_PROTOCOL_PROFILE_REDIRECT LASSO_LOGOUT_ERROR_FEDERATION_NOT_FOUND LASSO_LOGOUT_ERROR_REQUEST_DENIED LASSO_LOGOUT_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGOUT_ERROR_UNSUPPORTED_PROFILE LASSO_MD_PROTOCOL_TYPE_ARTIFACT_RESOLUTION LASSO_MD_PROTOCOL_TYPE_ASSERTION_ID_REQUEST LASSO_MD_PROTOCOL_TYPE_FEDERATION_TERMINATION LASSO_MD_PROTOCOL_TYPE_MANAGE_NAME_ID LASSO_MD_PROTOCOL_TYPE_NAME_IDENTIFIER_MAPPING LASSO_MD_PROTOCOL_TYPE_REGISTER_NAME_IDENTIFIER LASSO_MD_PROTOCOL_TYPE_SINGLE_LOGOUT LASSO_MD_PROTOCOL_TYPE_SINGLE_SIGN_ON LASSO_MESSAGE_FORMAT_BASE64 LASSO_MESSAGE_FORMAT_ERROR LASSO_MESSAGE_FORMAT_QUERY LASSO_MESSAGE_FORMAT_SOAP LASSO_MESSAGE_FORMAT_UNKNOWN LASSO_MESSAGE_FORMAT_XML LASSO_MESSAGE_FORMAT_XSCHEMA_ERROR LASSO_METADATA_HREF LASSO_METADATA_PREFIX LASSO_NAME_IDENTIFIER_MAPPING_ERROR_FORBIDDEN_CALL_ON_THIS_SIDE LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_IDENTIFIER LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_NAMESPACE LASSO_PAOS_HREF LASSO_PAOS_PREFIX LASSO_PARAM_ERROR_BAD_TYPE_OR_NULL_OBJ LASSO_PARAM_ERROR_CHECK_FAILED LASSO_PARAM_ERROR_INVALID_VALUE LASSO_PARAM_ERROR_NON_INITIALIZED_OBJECT LASSO_PROFILE_ERROR_BAD_IDENTITY_DUMP LASSO_PROFILE_ERROR_BAD_SESSION_DUMP LASSO_PROFILE_ERROR_BUILDING_MESSAGE_FAILED LASSO_PROFILE_ERROR_BUILDING_QUERY_FAILED LASSO_PROFILE_ERROR_BUILDING_REQUEST_FAILED LASSO_PROFILE_ERROR_BUILDING_RESPONSE_FAILED LASSO_PROFILE_ERROR_CANNOT_FIND_A_PROVIDER LASSO_PROFILE_ERROR_CANNOT_VERIFY_SIGNATURE LASSO_PROFILE_ERROR_FEDERATION_NOT_FOUND LASSO_PROFILE_ERROR_IDENTITY_NOT_FOUND LASSO_PROFILE_ERROR_INVALID_ARTIFACT LASSO_PROFILE_ERROR_INVALID_HTTP_METHOD LASSO_PROFILE_ERROR_INVALID_ISSUER LASSO_PROFILE_ERROR_INVALID_MSG LASSO_PROFILE_ERROR_INVALID_POST_MSG LASSO_PROFILE_ERROR_INVALID_PROTOCOLPROFILE LASSO_PROFILE_ERROR_INVALID_QUERY LASSO_PROFILE_ERROR_INVALID_REQUEST LASSO_PROFILE_ERROR_INVALID_RESPONSE LASSO_PROFILE_ERROR_INVALID_SOAP_MSG LASSO_PROFILE_ERROR_MISSING_ARTIFACT LASSO_PROFILE_ERROR_MISSING_ASSERTION LASSO_PROFILE_ERROR_MISSING_ENCRYPTION_PRIVATE_KEY LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE_ADDRESS LASSO_PROFILE_ERROR_MISSING_ISSUER LASSO_PROFILE_ERROR_MISSING_NAME_IDENTIFIER LASSO_PROFILE_ERROR_MISSING_REMOTE_PROVIDERID LASSO_PROFILE_ERROR_MISSING_REQUEST LASSO_PROFILE_ERROR_MISSING_RESOURCE_OFFERING LASSO_PROFILE_ERROR_MISSING_RESPONSE LASSO_PROFILE_ERROR_MISSING_SERVER LASSO_PROFILE_ERROR_MISSING_SERVICE_DESCRIPTION LASSO_PROFILE_ERROR_MISSING_SERVICE_INSTANCE LASSO_PROFILE_ERROR_MISSING_SERVICE_TYPE LASSO_PROFILE_ERROR_MISSING_STATUS_CODE LASSO_PROFILE_ERROR_MISSING_SUBJECT LASSO_PROFILE_ERROR_NAME_IDENTIFIER_NOT_FOUND LASSO_PROFILE_ERROR_RESPONSE_DOES_NOT_MATCH_REQUEST LASSO_PROFILE_ERROR_SESSION_NOT_FOUND LASSO_PROFILE_ERROR_STATUS_NOT_SUCCESS LASSO_PROFILE_ERROR_UNKNOWN_PROFILE_URL LASSO_PROFILE_ERROR_UNKNOWN_PROVIDER LASSO_PROFILE_ERROR_UNSUPPORTED_BINDING LASSO_PROFILE_ERROR_UNSUPPORTED_PROFILE LASSO_PROFILE_SIGNATURE_HINT_FORBID LASSO_PROFILE_SIGNATURE_HINT_FORCE LASSO_PROFILE_SIGNATURE_HINT_MAYBE LASSO_PROTOCOL_LIBERTY_1_0 LASSO_PROTOCOL_LIBERTY_1_1 LASSO_PROTOCOL_LIBERTY_1_2 LASSO_PROTOCOL_NONE LASSO_PROTOCOL_SAML_2_0 LASSO_PROVIDER_ERROR_MISSING_PUBLIC_KEY LASSO_PROVIDER_ROLE_BOTH LASSO_PROVIDER_ROLE_IDP LASSO_PROVIDER_ROLE_NONE LASSO_PROVIDER_ROLE_SP LASSO_PYTHON_HREF LASSO_REGISTRY_ERROR_KEY_EXISTS LASSO_REQUEST_TYPE_DEFEDERATION LASSO_REQUEST_TYPE_DISCO_MODIFY LASSO_REQUEST_TYPE_DISCO_QUERY LASSO_REQUEST_TYPE_DST_MODIFY LASSO_REQUEST_TYPE_DST_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_QUERY LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_ASSOCIATION_ADD LASSO_REQUEST_TYPE_IDWSF2_DISCO_SVCMD_REGISTER LASSO_REQUEST_TYPE_INVALID LASSO_REQUEST_TYPE_LECP LASSO_REQUEST_TYPE_LOGIN LASSO_REQUEST_TYPE_LOGOUT LASSO_REQUEST_TYPE_NAME_IDENTIFIER_MAPPING LASSO_REQUEST_TYPE_NAME_ID_MANAGEMENT LASSO_REQUEST_TYPE_NAME_REGISTRATION LASSO_REQUEST_TYPE_SASL_REQUEST LASSO_SAML2_ASSERTION_HREF LASSO_SAML2_ASSERTION_INDETERMINATE LASSO_SAML2_ASSERTION_INVALID LASSO_SAML2_ASSERTION_PREFIX LASSO_SAML2_ASSERTION_VALID LASSO_SAML2_ATTRIBUTE_NAME_EPR LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_URI LASSO_SAML2_AUTHN_CONTEXT_AUTHENTICATED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_KERBEROS LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_NOMAD_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_PASSWORD_PROTECTED_TRANSPORT LASSO_SAML2_AUTHN_CONTEXT_PERSONALIZED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PGP LASSO_SAML2_AUTHN_CONTEXT_PREVIOUS_SESSION LASSO_SAML2_AUTHN_CONTEXT_SECURE_REMOTE_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD_PKI LASSO_SAML2_AUTHN_CONTEXT_SOFTWARE_PKI LASSO_SAML2_AUTHN_CONTEXT_SPKI LASSO_SAML2_AUTHN_CONTEXT_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_TIME_SYNC_TOKEN LASSO_SAML2_AUTHN_CONTEXT_TLS_CLIENT LASSO_SAML2_AUTHN_CONTEXT_UNSPECIFIED LASSO_SAML2_AUTHN_CONTEXT_X509 LASSO_SAML2_AUTHN_CONTEXT_XMLDSIG LASSO_SAML2_CONFIRMATION_METHOD_BEARER LASSO_SAML2_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML2_CONSENT_EXPLICIT LASSO_SAML2_CONSENT_IMPLICIT LASSO_SAML2_CONSENT_INAPPLICABLE LASSO_SAML2_CONSENT_OBTAINED LASSO_SAML2_CONSENT_PRIOR LASSO_SAML2_CONSENT_UNAVAILABLE LASSO_SAML2_DEFLATE_ENCODING LASSO_SAML2_METADATA_BINDING_ARTIFACT LASSO_SAML2_METADATA_BINDING_PAOS LASSO_SAML2_METADATA_BINDING_POST LASSO_SAML2_METADATA_BINDING_REDIRECT LASSO_SAML2_METADATA_BINDING_SOAP LASSO_SAML2_METADATA_HREF LASSO_SAML2_NAME_IDENTIFIER_FORMAT_EMAIL LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENTITY LASSO_SAML2_NAME_IDENTIFIER_FORMAT_KERBEROS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_PERSISTENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_TRANSIENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_UNSPECIFIED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_WINDOWS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_X509 LASSO_SAML2_PROTOCOL_HREF LASSO_SAML2_PROTOCOL_PREFIX LASSO_SAML2_STATUS_CODE_AUTHN_FAILED LASSO_SAML2_STATUS_CODE_INVALID_ATTR_NAME LASSO_SAML2_STATUS_CODE_INVALID_NAME_ID_POLICY LASSO_SAML2_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_SAML2_STATUS_CODE_NO_AVAILABLE_IDP LASSO_SAML2_STATUS_CODE_NO_PASSIVE LASSO_SAML2_STATUS_CODE_NO_SUPPORTED_IDP LASSO_SAML2_STATUS_CODE_PARTIAL_LOGOUT LASSO_SAML2_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_SAML2_STATUS_CODE_REQUESTER LASSO_SAML2_STATUS_CODE_REQUEST_DENIED LASSO_SAML2_STATUS_CODE_REQUEST_UNSUPPORTED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML2_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML2_STATUS_CODE_RESPONDER LASSO_SAML2_STATUS_CODE_SUCCESS LASSO_SAML2_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML2_STATUS_CODE_UNKNOWN_ATTR_PROFILE LASSO_SAML2_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_SAML2_STATUS_CODE_UNSUPPORTED_BINDING LASSO_SAML2_STATUS_CODE_VERSION_MISMATCH LASSO_SAML_ASSERTION_HREF LASSO_SAML_ASSERTION_PREFIX LASSO_SAML_AUTHENTICATION_METHODS_PKI LASSO_SAML_AUTHENTICATION_METHOD_HARDWARE_TOKEN LASSO_SAML_AUTHENTICATION_METHOD_KERBEROS LASSO_SAML_AUTHENTICATION_METHOD_LIBERTY LASSO_SAML_AUTHENTICATION_METHOD_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_PGP LASSO_SAML_AUTHENTICATION_METHOD_SECURE_REMOTE_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_SMARTCARD_PKI LASSO_SAML_AUTHENTICATION_METHOD_SOFTWARE_PKI LASSO_SAML_AUTHENTICATION_METHOD_UNSPECIFIED LASSO_SAML_AUTHENTICATION_METHOD_XKMS LASSO_SAML_AUTHENTICATION_METHOD_XMLD_SIG LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT01 LASSO_SAML_CONFIRMATION_METHOD_BEARER LASSO_SAML_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML_CONFIRMATION_METHOD_SENDER_VOUCHES LASSO_SAML_MAJOR_VERSION_N LASSO_SAML_MINOR_VERSION_N LASSO_SAML_PROTOCOL_HREF LASSO_SAML_PROTOCOL_PREFIX LASSO_SAML_STATUS_CODE_REQUESTER LASSO_SAML_STATUS_CODE_REQUEST_DENIED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML_STATUS_CODE_RESPONDER LASSO_SAML_STATUS_CODE_SUCCESS LASSO_SAML_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML_STATUS_CODE_VERSION_MISMATCH LASSO_SERVER_ERROR_ADD_PROVIDER_FAILED LASSO_SERVER_ERROR_ADD_PROVIDER_PROTOCOL_MISMATCH LASSO_SERVER_ERROR_INVALID_XML LASSO_SERVER_ERROR_PROVIDER_NOT_FOUND LASSO_SERVER_ERROR_SET_ENCRYPTION_PRIVATE_KEY_FAILED LASSO_SIGNATURE_METHOD_DSA_SHA1 LASSO_SIGNATURE_METHOD_RSA_SHA1 LASSO_SIGNATURE_TYPE_NONE LASSO_SIGNATURE_TYPE_SIMPLE LASSO_SIGNATURE_TYPE_WITHX509 LASSO_SOAP_ENV_ACTOR LASSO_SOAP_ENV_HREF LASSO_SOAP_ENV_PREFIX LASSO_SOAP_ERROR_MISSING_BODY LASSO_SOAP_ERROR_MISSING_ENVELOPE LASSO_SOAP_ERROR_MISSING_HEADER LASSO_SOAP_ERROR_MISSING_SOAP_FAULT_DETAIL LASSO_SOAP_ERROR_REDIRECT_REQUEST_FAULT LASSO_SOAP_FAULT_CODE_CLIENT LASSO_SOAP_FAULT_CODE_MUST_UNDERSTAND LASSO_SOAP_FAULT_CODE_SERVER LASSO_SOAP_FAULT_CODE_VERSION_MISMATCH LASSO_SOAP_FAULT_REDIRECT_REQUEST LASSO_WSF_ENABLED LASSO_WSF_PROFILE_ERROR_INVALID_OR_MISSING_REFERENCE_TO_MESSAGE_ID LASSO_WSF_PROFILE_ERROR_MISSING_ASSERTION_ID LASSO_WSF_PROFILE_ERROR_MISSING_CORRELATION LASSO_WSF_PROFILE_ERROR_MISSING_CREDENTIAL_REF LASSO_WSF_PROFILE_ERROR_MISSING_DESCRIPTION LASSO_WSF_PROFILE_ERROR_MISSING_ENDPOINT LASSO_WSF_PROFILE_ERROR_MISSING_RESOURCE_ID LASSO_WSF_PROFILE_ERROR_MISSING_SECURITY LASSO_WSF_PROFILE_ERROR_REDIRECT_REQUEST LASSO_WSF_PROFILE_ERROR_SECURITY_MECHANISM_CHECK_FAILED LASSO_WSF_PROFILE_ERROR_SERVER_INTERACTION_REQUIRED LASSO_WSF_PROFILE_ERROR_SERVER_INTERACTION_REQUIRED_FOR_DATA LASSO_WSF_PROFILE_ERROR_SOAP_FAULT LASSO_WSF_PROFILE_ERROR_UNKNOWN_STATUS_CODE LASSO_WSF_PROFILE_ERROR_UNSUPPORTED_SECURITY_MECHANISM LASSO_WSSEC_ERROR_BAD_PASSWORD LASSO_WSSEC_ERROR_MISSING_SECURITY_TOKEN LASSO_XML_ERROR_ATTR_NOT_FOUND LASSO_XML_ERROR_ATTR_VALUE_NOT_FOUND LASSO_XML_ERROR_INVALID_FILE LASSO_XML_ERROR_MISSING_NAMESPACE LASSO_XML_ERROR_NODE_CONTENT_NOT_FOUND LASSO_XML_ERROR_NODE_NOT_FOUND LASSO_XML_ERROR_OBJECT_CONSTRUCTION_FAILED LASSO_XSI_HREF LASSO_XSI_PREFIX struct LassoAssertionQuery { LassoAssertionQueryPrivate* private_data } LassoAssertionQueryRequestType LassoCheckVersionMode struct LassoDefederation { } struct LassoDsKeyInfo { LassoDsKeyValue* KeyValue } struct LassoDsKeyValue { LassoDsRsaKeyValue* RSAKeyValue } struct LassoDsRsaKeyValue { char* Modulus, char* Exponent } struct LassoEcp { gchar* assertionConsumerURL, LassoEcpPrivate* private_data } LassoEncryptionMode LassoEncryptionSymKeyType struct LassoFederation { gchar* remote_providerID, LassoNode* local_nameIdentifier, LassoNode* remote_nameIdentifier, LassoFederationPrivate* private_data } LassoHttpMethod struct LassoIdentity { GHashTable* federations, gboolean is_dirty, LassoIdentityPrivate* private_data } struct LassoLecp { LassoLibAuthnRequestEnvelope* authnRequestEnvelope, LassoLibAuthnResponseEnvelope* authnResponseEnvelope, char* assertionConsumerServiceURL } struct LassoLibAssertion { char* InResponseTo } struct LassoLibAuthenticationStatement { LassoLibAuthnContext* AuthnContext, char* ReauthenticateOnOrAfter, char* SessionIndex } struct LassoLibAuthnContext { char* AuthnContextClassRef, char* AuthnContextStatementRef } struct LassoLibAuthnRequest { GList* Extension, char* ProviderID, char* AffiliationID, char* NameIDPolicy, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolProfile, char* AssertionConsumerServiceID, LassoLibRequestAuthnContext* RequestAuthnContext, char* RelayState, LassoLibScoping* Scoping, char* consent } struct LassoLibAuthnRequestEnvelope { GList* Extension, LassoLibAuthnRequest* AuthnRequest, char* ProviderID, char* ProviderName, char* AssertionConsumerServiceURL, LassoLibIDPList* IDPList, gboolean IsPassive } struct LassoLibAuthnResponse { GList* Extension, char* ProviderID, char* RelayState, char* consent } struct LassoLibAuthnResponseEnvelope { GList* Extension, LassoLibAuthnResponse* AuthnResponse, char* AssertionConsumerServiceURL } struct LassoLibFederationTerminationNotification { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* consent, char* RelayState } struct LassoLibIDPEntries { GList* IDPEntry } struct LassoLibIDPEntry { char* ProviderID, char* ProviderName, char* Loc } struct LassoLibIDPList { LassoLibIDPEntries* IDPEntries, char* GetComplete } struct LassoLibLogoutRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* SessionIndex, char* RelayState, char* consent, char* NotOnOrAfter } struct LassoLibLogoutResponse { } struct LassoLibNameIdentifierMappingRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* TargetNamespace, char* consent } struct LassoLibNameIdentifierMappingResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, LassoSamlNameIdentifier* NameIdentifier } struct LassoLibRegisterNameIdentifierRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* IDPProvidedNameIdentifier, LassoSamlNameIdentifier* SPProvidedNameIdentifier, LassoSamlNameIdentifier* OldProvidedNameIdentifier, char* RelayState } struct LassoLibRegisterNameIdentifierResponse { } struct LassoLibRequestAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextStatementRef, char* AuthnContextComparison } struct LassoLibScoping { int ProxyCount, LassoLibIDPList* IDPList } struct LassoLibStatusResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, char* RelayState } struct LassoLibSubject { LassoSamlNameIdentifier* IDPProvidedNameIdentifier } struct LassoLogin { LassoLoginProtocolProfile protocolProfile, gchar* assertionArtifact, LassoSamlAssertion* assertion, gchar* nameIDPolicy, LassoHttpMethod http_method, LassoLoginPrivate* private_data } LassoLoginProtocolProfile struct LassoLogout { LassoNode* initial_request, LassoNode* initial_response, gchar* initial_remote_providerID, gint providerID_index, LassoHttpMethod initial_http_request_method, LassoLogoutPrivate* private_data } LassoMdProtocolType LassoMessageFormat struct LassoMiscTextNode { char* content, char* name, char* ns_href, char* ns_prefix, gboolean text_child } struct LassoNameIdManagement { } struct LassoNameIdentifierMapping { gchar* targetNameIdentifier } struct LassoNameRegistration { LassoSamlNameIdentifier* oldNameIdentifier } struct LassoNode { } struct LassoProfile { LassoServer* server, LassoNode* request, LassoNode* response, LassoNode* nameIdentifier, gchar* remote_providerID, gchar* msg_url, gchar* msg_body, gchar* msg_relayState, LassoIdentity* identity, LassoSession* session, LassoHttpMethod http_request_method, gint signature_status, LassoProfilePrivate* private_data } LassoProfileSignatureHint LassoProtocolConformance struct LassoProvider { gchar* ProviderID, LassoProviderRole role, char* metadata_filename, gchar* public_key, gchar* ca_cert_chain, LassoProviderPrivate* private_data } LassoProviderRole LassoRequestType struct LassoSaml2Action { char* content, char* Namespace } struct LassoSaml2Advice { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2Assertion { LassoSaml2NameID* Issuer, LassoSaml2Subject* Subject, LassoSaml2Conditions* Conditions, LassoSaml2Advice* Advice, GList* Statement, GList* AuthnStatement, GList* AuthzDecisionStatement, GList* AttributeStatement, char* Version, char* ID, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file, gboolean encryption_activated, char* encryption_public_key_str, LassoEncryptionSymKeyType encryption_sym_key_type } LassoSaml2AssertionValidationState struct LassoSaml2Attribute { GList* AttributeValue, char* Name, char* NameFormat, char* FriendlyName } struct LassoSaml2AttributeStatement { GList* Attribute, GList* EncryptedAttribute } struct LassoSaml2AttributeValue { GList* any } struct LassoSaml2AudienceRestriction { char* Audience } struct LassoSaml2AuthnContext { char* AuthnContextClassRef, char* AuthnContextDeclRef, char* AuthenticatingAuthority } struct LassoSaml2AuthnStatement { LassoSaml2SubjectLocality* SubjectLocality, LassoSaml2AuthnContext* AuthnContext, char* AuthnInstant, char* SessionIndex, char* SessionNotOnOrAfter } struct LassoSaml2AuthzDecisionStatement { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource, char* Decision } struct LassoSaml2BaseIDAbstract { char* NameQualifier, char* SPNameQualifier } struct LassoSaml2ConditionAbstract { } struct LassoSaml2Conditions { GList* Condition, GList* AudienceRestriction, GList* OneTimeUse, GList* ProxyRestriction, char* NotBefore, char* NotOnOrAfter } struct LassoSaml2EncryptedElement { xmlNode* EncryptedData, GList* EncryptedKey, LassoNode* original_data } struct LassoSaml2Evidence { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2KeyInfoConfirmationData { } struct LassoSaml2NameID { char* content, char* Format, char* SPProvidedID, char* NameQualifier, char* SPNameQualifier } struct LassoSaml2OneTimeUse { } struct LassoSaml2ProxyRestriction { char* Audience, char* Count } struct LassoSaml2StatementAbstract { } struct LassoSaml2Subject { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmation* SubjectConfirmation } struct LassoSaml2SubjectConfirmation { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmationData* SubjectConfirmationData, char* Method } struct LassoSaml2SubjectConfirmationData { char* NotBefore, char* NotOnOrAfter, char* Recipient, char* InResponseTo, char* Address } struct LassoSaml2SubjectLocality { char* Address, char* DNSName } struct LassoSamlAdvice { GList* AssertionIDReference, LassoNode* Assertion } struct LassoSamlAssertion { LassoSamlConditions* Conditions, LassoSamlAdvice* Advice, LassoSamlSubjectStatement* SubjectStatement, LassoSamlAuthenticationStatement* AuthenticationStatement, LassoSamlAttributeStatement* AttributeStatement, int MajorVersion, int MinorVersion, char* AssertionID, char* Issuer, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlAttribute { gchar* attributeName, gchar* attributeNameSpace, GList* AttributeValue } struct LassoSamlAttributeDesignator { char* AttributeName, char* AttributeNamespace } struct LassoSamlAttributeStatement { GList* Attribute } struct LassoSamlAttributeValue { GList* any } struct LassoSamlAudienceRestrictionCondition { GList* Audience } struct LassoSamlAuthenticationStatement { LassoSamlSubjectLocality* SubjectLocality, GList* AuthorityBinding, char* AuthenticationMethod, char* AuthenticationInstant } struct LassoSamlAuthorityBinding { char* AuthorityKind, char* Location, char* Binding } struct LassoSamlConditionAbstract { } struct LassoSamlConditions { GList* Condition, GList* AudienceRestrictionCondition, char* NotBefore, char* NotOnOrAfter } struct LassoSamlNameIdentifier { char* NameQualifier, char* Format, char* content } struct LassoSamlStatementAbstract { } struct LassoSamlSubject { LassoSamlNameIdentifier* NameIdentifier, LassoSamlSubjectConfirmation* SubjectConfirmation, LassoSaml2EncryptedElement* EncryptedNameIdentifier } struct LassoSamlSubjectConfirmation { GList* ConfirmationMethod, char* SubjectConfirmationData, LassoDsKeyInfo* KeyInfo } struct LassoSamlSubjectLocality { char* IPAddress, char* DNSAddress } struct LassoSamlSubjectStatement { } struct LassoSamlSubjectStatementAbstract { LassoSamlSubject* Subject } struct LassoSamlp2ArtifactResolve { char* Artifact } struct LassoSamlp2ArtifactResponse { LassoNode* any } struct LassoSamlp2AssertionIDRequest { char* AssertionIDRef } struct LassoSamlp2AttributeQuery { GList* Attribute } struct LassoSamlp2AuthnQuery { LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, char* SessionIndex } struct LassoSamlp2AuthnRequest { LassoSaml2Subject* Subject, LassoSamlp2NameIDPolicy* NameIDPolicy, LassoSaml2Conditions* Conditions, LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, LassoSamlp2Scoping* Scoping, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolBinding, int AssertionConsumerServiceIndex, char* AssertionConsumerServiceURL, int AttributeConsumingServiceIndex, char* ProviderName, G_GNUC_DEPRECATED char } struct LassoSamlp2AuthzDecisionQuery { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource } struct LassoSamlp2Extensions { } struct LassoSamlp2IDPEntry { char* ProviderID, char* Name, char* Loc } struct LassoSamlp2IDPList { LassoSamlp2IDPEntry* IDPEntry, char* GetComplete } struct LassoSamlp2LogoutRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* SessionIndex, char* Reason, char* NotOnOrAfter, G_GNUC_DEPRECATED char } struct LassoSamlp2LogoutResponse { G_GNUC_DEPRECATED char } struct LassoSamlp2ManageNameIDRequest { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* NewID, LassoSaml2EncryptedElement* NewEncryptedID, LassoSamlp2Terminate* Terminate } struct LassoSamlp2ManageNameIDResponse { } struct LassoSamlp2NameIDMappingRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSamlp2NameIDPolicy* NameIDPolicy } struct LassoSamlp2NameIDMappingResponse { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID } struct LassoSamlp2NameIDPolicy { char* Format, char* SPNameQualifier, gboolean AllowCreate } struct LassoSamlp2RequestAbstract { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, char* ID, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2RequestedAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextDeclRef, char* Comparison } struct LassoSamlp2Response { GList* Assertion, GList* EncryptedAssertion } struct LassoSamlp2Scoping { LassoSamlp2IDPList* IDPList, char* RequesterID, char* ProxyCount } struct LassoSamlp2Status { LassoSamlp2StatusCode* StatusCode, char* StatusMessage, LassoSamlp2StatusDetail* StatusDetail } struct LassoSamlp2StatusCode { LassoSamlp2StatusCode* StatusCode, char* Value } struct LassoSamlp2StatusDetail { } struct LassoSamlp2StatusResponse { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, LassoSamlp2Status* Status, char* ID, char* InResponseTo, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2SubjectQueryAbstract { LassoSaml2Subject* Subject } struct LassoSamlp2Terminate { } struct LassoSamlpRequest { char* AssertionArtifact } struct LassoSamlpRequestAbstract { GList* RespondWith, char* RequestID, int MajorVersion, int MinorVersion, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpResponse { LassoSamlpStatus* Status, GList* Assertion } struct LassoSamlpResponseAbstract { char* ResponseID, char* InResponseTo, int MajorVersion, int MinorVersion, char* IssueInstant, char* Recipient, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpStatus { LassoSamlpStatusCode* StatusCode, char* StatusMessage } struct LassoSamlpStatusCode { LassoSamlpStatusCode* StatusCode, char* Value } struct LassoServer { GHashTable* providers, GHashTable* services, gchar* private_key, gchar* private_key_password, gchar* certificate, LassoSignatureMethod signature_method, LassoServerPrivate* private_data } struct LassoSession { GHashTable* assertions, gboolean is_dirty, LassoSessionPrivate* private_data } LassoSignatureMethod LassoSignatureType gint lasso_assertion_query_build_request_msg ( LassoAssertionQuery* assertion_query ) int lasso_assertion_query_build_response_msg ( LassoAssertionQuery* assertion_query ) None lasso_assertion_query_destroy ( LassoAssertionQuery* assertion_query ) GType lasso_assertion_query_get_type ( ) gint lasso_assertion_query_init_request ( LassoAssertionQuery* assertion_query, char* remote_provider_id, LassoHttpMethod http_method, LassoAssertionQueryRequestType query_request_type ) LassoAssertionQuery* lasso_assertion_query_new ( LassoServer* server ) gint lasso_assertion_query_process_request_msg ( LassoAssertionQuery* assertion_query, gchar* request_msg ) gint lasso_assertion_query_process_response_msg ( LassoAssertionQuery* assertion_query, gchar* response_msg ) gint lasso_assertion_query_validate_request ( LassoAssertionQuery* assertion_query ) int lasso_check_version ( int major, int minor, int subminor, LassoCheckVersionMode mode ) gint lasso_defederation_build_notification_msg ( LassoDefederation* defederation ) None lasso_defederation_destroy ( LassoDefederation* defederation ) GType lasso_defederation_get_type ( ) gint lasso_defederation_init_notification ( LassoDefederation* defederation, gchar* remote_providerID, LassoHttpMethod http_method ) LassoDefederation* lasso_defederation_new ( LassoServer* server ) gint lasso_defederation_process_notification_msg ( LassoDefederation* defederation, gchar* notification_msg ) gint lasso_defederation_validate_notification ( LassoDefederation* defederation ) GType lasso_ds_key_info_get_type ( ) LassoDsKeyInfo* lasso_ds_key_info_new ( ) GType lasso_ds_key_value_get_type ( ) LassoDsKeyValue* lasso_ds_key_value_new ( ) GType lasso_ds_rsa_key_value_get_type ( ) LassoDsRsaKeyValue* lasso_ds_rsa_key_value_new ( ) None lasso_ecp_destroy ( LassoEcp* ecp ) GType lasso_ecp_get_type ( ) LassoEcp* lasso_ecp_new ( LassoServer* server ) int lasso_ecp_process_authn_request_msg ( LassoEcp* ecp, const char* authn_request_msg ) int lasso_ecp_process_response_msg ( LassoEcp* ecp, const char* response_msg ) None lasso_federation_build_local_name_identifier ( LassoFederation* federation, const gchar* nameQualifier, const gchar* format, const gchar* content ) None lasso_federation_destroy ( LassoFederation* federation ) GType lasso_federation_get_type ( ) LassoFederation* lasso_federation_new ( gchar* remote_providerID ) gboolean lasso_federation_verify_name_identifier ( LassoFederation* federation, LassoNode* name_identifier ) char* lasso_get_prefix_for_dst_service_href ( const char* href ) gchar* lasso_get_prefix_for_idwsf2_dst_service_href ( const gchar* href ) None lasso_identity_destroy ( LassoIdentity* identity ) gchar* lasso_identity_dump ( LassoIdentity* identity ) LassoFederation* lasso_identity_get_federation ( LassoIdentity* identity, const char* providerID ) GType lasso_identity_get_type ( ) LassoIdentity* lasso_identity_new ( ) LassoIdentity* lasso_identity_new_from_dump ( const gchar* dump ) int lasso_init ( ) int lasso_lecp_build_authn_request_envelope_msg ( LassoLecp* lecp ) int lasso_lecp_build_authn_request_msg ( LassoLecp* lecp ) int lasso_lecp_build_authn_response_envelope_msg ( LassoLecp* lecp ) int lasso_lecp_build_authn_response_msg ( LassoLecp* lecp ) None lasso_lecp_destroy ( LassoLecp* lecp ) GType lasso_lecp_get_type ( ) int lasso_lecp_init_authn_request ( LassoLecp* lecp, const char* remote_providerID ) LassoLecp* lasso_lecp_new ( LassoServer* server ) int lasso_lecp_process_authn_request_envelope_msg ( LassoLecp* lecp, const char* request_msg ) int lasso_lecp_process_authn_request_msg ( LassoLecp* lecp, const char* authn_request_msg ) int lasso_lecp_process_authn_response_envelope_msg ( LassoLecp* lecp, const char* response_msg ) GType lasso_lib_assertion_get_type ( ) LassoLibAssertion* lasso_lib_assertion_new ( ) LassoLibAssertion* lasso_lib_assertion_new_full ( const char* issuer, const char* requestID, const char* audience, const char* notBefore, const char* notOnOrAfter ) GType lasso_lib_authentication_statement_get_type ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new_full ( const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, LassoSamlNameIdentifier* sp_identifier, LassoSamlNameIdentifier* idp_identifier ) GType lasso_lib_authn_context_get_type ( ) LassoNode* lasso_lib_authn_context_new ( ) GType lasso_lib_authn_request_envelope_get_type ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new_full ( LassoLibAuthnRequest* authnRequest, char* providerID, char* assertionConsumerServiceURL ) GType lasso_lib_authn_request_get_type ( ) LassoLibAuthnRequest* lasso_lib_authn_request_new ( ) GType lasso_lib_authn_response_envelope_get_type ( ) LassoLibAuthnResponseEnvelope* lasso_lib_authn_response_envelope_new ( LassoLibAuthnResponse* response, char* assertionConsumerServiceURL ) GType lasso_lib_authn_response_get_type ( ) LassoNode* lasso_lib_authn_response_new ( char* providerID, LassoLibAuthnRequest* request ) GType lasso_lib_federation_termination_notification_get_type ( ) LassoNode* lasso_lib_federation_termination_notification_new ( ) LassoNode* lasso_lib_federation_termination_notification_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_idp_entries_get_type ( ) LassoNode* lasso_lib_idp_entries_new ( ) GType lasso_lib_idp_entry_get_type ( ) LassoNode* lasso_lib_idp_entry_new ( ) GType lasso_lib_idp_list_get_type ( ) LassoNode* lasso_lib_idp_list_new ( ) GType lasso_lib_logout_request_get_type ( ) LassoNode* lasso_lib_logout_request_new ( ) LassoNode* lasso_lib_logout_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_logout_response_get_type ( ) LassoNode* lasso_lib_logout_response_new ( ) LassoNode* lasso_lib_logout_response_new_full ( char* providerID, const char* statusCodeValue, LassoLibLogoutRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_request_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, const char* targetNamespace, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_response_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new_full ( char* provideRID, const char* statusCodeValue, LassoLibNameIdentifierMappingRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_request_get_type ( ) LassoNode* lasso_lib_register_name_identifier_request_new ( ) LassoNode* lasso_lib_register_name_identifier_request_new_full ( const char* providerID, LassoSamlNameIdentifier* idpNameIdentifier, LassoSamlNameIdentifier* spNameIdentifier, LassoSamlNameIdentifier* oldNameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_response_get_type ( ) LassoNode* lasso_lib_register_name_identifier_response_new ( ) LassoNode* lasso_lib_register_name_identifier_response_new_full ( const char* providerID, const char* statusCodeValue, LassoLibRegisterNameIdentifierRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_request_authn_context_get_type ( ) LassoLibRequestAuthnContext* lasso_lib_request_authn_context_new ( ) GType lasso_lib_scoping_get_type ( ) LassoLibScoping* lasso_lib_scoping_new ( ) GType lasso_lib_status_response_get_type ( ) LassoNode* lasso_lib_status_response_new ( ) GType lasso_lib_subject_get_type ( ) LassoLibSubject* lasso_lib_subject_new ( ) gint lasso_login_accept_sso ( LassoLogin* login ) gint lasso_login_build_artifact_msg ( LassoLogin* login, LassoHttpMethod http_method ) int lasso_login_build_assertion ( LassoLogin* login, const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, const char* notBefore, const char* notOnOrAfter ) gint lasso_login_build_authn_request_msg ( LassoLogin* login ) gint lasso_login_build_authn_response_msg ( LassoLogin* login ) gint lasso_login_build_request_msg ( LassoLogin* login ) gint lasso_login_build_response_msg ( LassoLogin* login, gchar* remote_providerID ) None lasso_login_destroy ( LassoLogin* login ) gchar* lasso_login_dump ( LassoLogin* login ) LassoNode* lasso_login_get_assertion ( LassoLogin* login ) GType lasso_login_get_type ( ) gint lasso_login_init_authn_request ( LassoLogin* login, const gchar* remote_providerID, LassoHttpMethod http_method ) gint lasso_login_init_idp_initiated_authn_request ( LassoLogin* login, const gchar* remote_providerID ) gint lasso_login_init_request ( LassoLogin* login, gchar* response_msg, LassoHttpMethod response_http_method ) gboolean lasso_login_must_ask_for_consent ( LassoLogin* login ) gboolean lasso_login_must_authenticate ( LassoLogin* login ) LassoLogin* lasso_login_new ( LassoServer* server ) LassoLogin* lasso_login_new_from_dump ( LassoServer* server, const gchar* dump ) int lasso_login_process_authn_request_msg ( LassoLogin* login, const char* authn_request_msg ) gint lasso_login_process_authn_response_msg ( LassoLogin* login, gchar* authn_response_msg ) int lasso_login_process_paos_response_msg ( LassoLogin* login, gchar* msg ) gint lasso_login_process_request_msg ( LassoLogin* login, gchar* request_msg ) gint lasso_login_process_response_msg ( LassoLogin* login, gchar* response_msg ) int lasso_login_validate_request_msg ( LassoLogin* login, gboolean authentication_result, gboolean is_consent_obtained ) gint lasso_logout_build_request_msg ( LassoLogout* logout ) gint lasso_logout_build_response_msg ( LassoLogout* logout ) None lasso_logout_destroy ( LassoLogout* logout ) gchar* lasso_logout_dump ( LassoLogout* logout ) gchar* lasso_logout_get_next_providerID ( LassoLogout* logout ) GType lasso_logout_get_type ( ) gint lasso_logout_init_request ( LassoLogout* logout, gchar* remote_providerID, LassoHttpMethod request_method ) LassoLogout* lasso_logout_new ( LassoServer* server ) LassoLogout* lasso_logout_new_from_dump ( LassoServer* server, const gchar* dump ) gint lasso_logout_process_request_msg ( LassoLogout* logout, gchar* request_msg ) gint lasso_logout_process_response_msg ( LassoLogout* logout, gchar* response_msg ) gint lasso_logout_reset_providerID_index ( LassoLogout* logout ) gint lasso_logout_validate_request ( LassoLogout* logout ) GType lasso_misc_text_node_get_type ( ) xmlNode* lasso_misc_text_node_get_xml_content ( LassoMiscTextNode* misc_text_node ) LassoNode* lasso_misc_text_node_new ( ) LassoMiscTextNode* lasso_misc_text_node_new_with_string ( const char* content ) LassoMiscTextNode* lasso_misc_text_node_new_with_xml_node ( xmlNode* xml_node ) None lasso_misc_text_node_set_xml_content ( LassoMiscTextNode* misc_text_node, xmlNode* node ) gint lasso_name_id_management_build_request_msg ( LassoNameIdManagement* name_id_management ) int lasso_name_id_management_build_response_msg ( LassoNameIdManagement* name_id_management ) None lasso_name_id_management_destroy ( LassoNameIdManagement* name_id_management ) char* lasso_name_id_management_dump ( LassoNameIdManagement* name_id_management ) GType lasso_name_id_management_get_type ( ) gint lasso_name_id_management_init_request ( LassoNameIdManagement* name_id_management, char* remote_provider_id, char* new_name_id, LassoHttpMethod http_method ) LassoNameIdManagement* lasso_name_id_management_new ( LassoServer* server ) LassoNameIdManagement* lasso_name_id_management_new_from_dump ( LassoServer* server, const char* dump ) gint lasso_name_id_management_process_request_msg ( LassoNameIdManagement* name_id_management, gchar* request_msg ) gint lasso_name_id_management_process_response_msg ( LassoNameIdManagement* name_id_management, gchar* response_msg ) gint lasso_name_id_management_validate_request ( LassoNameIdManagement* name_id_management ) gint lasso_name_identifier_mapping_build_request_msg ( LassoNameIdentifierMapping* mapping ) gint lasso_name_identifier_mapping_build_response_msg ( LassoNameIdentifierMapping* mapping ) None lasso_name_identifier_mapping_destroy ( LassoNameIdentifierMapping* mapping ) GType lasso_name_identifier_mapping_get_type ( ) gint lasso_name_identifier_mapping_init_request ( LassoNameIdentifierMapping* mapping, gchar* targetNamespace, gchar* remote_providerID ) LassoNameIdentifierMapping* lasso_name_identifier_mapping_new ( LassoServer* server ) gint lasso_name_identifier_mapping_process_request_msg ( LassoNameIdentifierMapping* mapping, gchar* request_msg ) gint lasso_name_identifier_mapping_process_response_msg ( LassoNameIdentifierMapping* mapping, gchar* response_msg ) gint lasso_name_identifier_mapping_validate_request ( LassoNameIdentifierMapping* mapping ) gint lasso_name_registration_build_request_msg ( LassoNameRegistration* name_registration ) gint lasso_name_registration_build_response_msg ( LassoNameRegistration* name_registration ) None lasso_name_registration_destroy ( LassoNameRegistration* name_registration ) gchar* lasso_name_registration_dump ( LassoNameRegistration* name_registration ) GType lasso_name_registration_get_type ( ) gint lasso_name_registration_init_request ( LassoNameRegistration* name_registration, char* remote_providerID, LassoHttpMethod http_method ) LassoNameRegistration* lasso_name_registration_new ( LassoServer* server ) LassoNameRegistration* lasso_name_registration_new_from_dump ( LassoServer* server, const char* dump ) gint lasso_name_registration_process_request_msg ( LassoNameRegistration* name_registration, gchar* request_msg ) gint lasso_name_registration_process_response_msg ( LassoNameRegistration* name_registration, gchar* response_msg ) gint lasso_name_registration_validate_request ( LassoNameRegistration* name_registration ) None lasso_node_cleanup_original_xmlnodes ( LassoNode* node ) None lasso_node_destroy ( LassoNode* node ) char* lasso_node_dump ( LassoNode* node ) char* lasso_node_export_to_base64 ( LassoNode* node ) char* lasso_node_export_to_ecp_soap_response ( LassoNode* node, const char* assertionConsumerURL ) char* lasso_node_export_to_paos_request ( LassoNode* node, const char* issuer, const char* responseConsumerURL, const char* relay_state ) char* lasso_node_export_to_query ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file ) char* lasso_node_export_to_soap ( LassoNode* node ) gchar* lasso_node_export_to_xml ( LassoNode* node ) const char* lasso_node_get_name ( LassoNode* node ) const char* lasso_node_get_namespace ( LassoNode* node ) xmlNode* lasso_node_get_original_xmlnode ( LassoNode* node ) GType lasso_node_get_type ( ) xmlNode* lasso_node_get_xmlNode ( LassoNode* node, gboolean lasso_dump ) LassoMessageFormat lasso_node_init_from_message ( LassoNode* node, const char* message ) gboolean lasso_node_init_from_query ( LassoNode* node, const char* query ) int lasso_node_init_from_xml ( LassoNode* node, xmlNode* xmlnode ) LassoNode* lasso_node_new ( ) LassoNode* lasso_node_new_from_dump ( const char* dump ) LassoNode* lasso_node_new_from_soap ( const char* soap ) LassoNode* lasso_node_new_from_xmlNode ( xmlNode* node ) None lasso_node_set_custom_namespace ( LassoNode* node, const char* prefix, const char* href ) None lasso_node_set_custom_nodename ( LassoNode* node, const char* nodename ) None lasso_node_set_original_xmlnode ( LassoNode* node, xmlNode* xmlnode ) char* lasso_profile_get_artifact ( LassoProfile* profile ) char* lasso_profile_get_artifact_message ( LassoProfile* profile ) LassoIdentity* lasso_profile_get_identity ( LassoProfile* profile ) LassoNode* lasso_profile_get_nameIdentifier ( LassoProfile* profile ) LassoRequestType lasso_profile_get_request_type_from_soap_msg ( const gchar* soap ) LassoSession* lasso_profile_get_session ( LassoProfile* profile ) LassoProfileSignatureHint lasso_profile_get_signature_hint ( LassoProfile* profile ) GType lasso_profile_get_type ( ) gboolean lasso_profile_is_identity_dirty ( LassoProfile* profile ) gboolean lasso_profile_is_liberty_query ( const gchar* query ) gboolean lasso_profile_is_saml_query ( const gchar* query ) gboolean lasso_profile_is_session_dirty ( LassoProfile* profile ) None lasso_profile_set_artifact_message ( LassoProfile* profile, char* message ) gint lasso_profile_set_identity_from_dump ( LassoProfile* profile, const gchar* dump ) gint lasso_profile_set_session_from_dump ( LassoProfile* profile, const gchar* dump ) None lasso_profile_set_signature_hint ( LassoProfile* profile, LassoProfileSignatureHint signature_hint ) gboolean lasso_provider_accept_http_method ( LassoProvider* provider, const LassoProvider* remote_provider, LassoMdProtocolType protocol_type, LassoHttpMethod http_method, gboolean initiate_profile ) gchar* lasso_provider_get_assertion_consumer_service_url ( const LassoProvider* provider, const char* service_id ) gchar* lasso_provider_get_base64_succinct_id ( const LassoProvider* provider ) gchar* lasso_provider_get_default_name_id_format ( const LassoProvider* provider ) LassoEncryptionMode lasso_provider_get_encryption_mode ( LassoProvider* provider ) LassoHttpMethod lasso_provider_get_first_http_method ( LassoProvider* provider, const LassoProvider* remote_provider, LassoMdProtocolType protocol_type ) const GList* lasso_provider_get_metadata_list ( const LassoProvider* provider, const char* name ) gchar* lasso_provider_get_metadata_one ( const LassoProvider* provider, const char* name ) xmlNode* lasso_provider_get_organization ( const LassoProvider* provider ) LassoProtocolConformance lasso_provider_get_protocol_conformance ( const LassoProvider* provider ) char* lasso_provider_get_sp_name_qualifier ( LassoProvider* provider ) GType lasso_provider_get_type ( ) gboolean lasso_provider_has_protocol_profile ( const LassoProvider* provider, LassoMdProtocolType protocol_type, const char* protocol_profile ) LassoProvider* lasso_provider_new ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_buffer ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_dump ( const gchar* dump ) LassoSaml2EncryptedElement* lasso_provider_saml2_node_encrypt ( const LassoProvider* provider, LassoNode* lasso_node ) None lasso_provider_set_encryption_mode ( LassoProvider* provider, LassoEncryptionMode encryption_mode ) None lasso_provider_set_encryption_sym_key_type ( LassoProvider* provider, LassoEncryptionSymKeyType encryption_sym_key_type ) int lasso_provider_verify_single_node_signature ( LassoProvider* provider, LassoNode* node, const char* id_attr_name ) None lasso_register_dst_service ( const char* prefix, const char* href ) None lasso_register_idwsf2_dst_service ( const gchar* prefix, const gchar* href ) GType lasso_saml2_action_get_type ( ) LassoNode* lasso_saml2_action_new ( ) LassoNode* lasso_saml2_action_new_with_string ( char* content ) GType lasso_saml2_advice_get_type ( ) LassoNode* lasso_saml2_advice_new ( ) int lasso_saml2_assertion_add_attribute_with_node ( LassoSaml2Assertion* assertion, const char* name, const char* nameformat, LassoNode* content ) None lasso_saml2_assertion_add_audience_restriction ( LassoSaml2Assertion* saml2_assertion, const char* providerID ) None lasso_saml2_assertion_add_proxy_limit ( LassoSaml2Assertion* saml2_assertion, int proxy_count, GList* proxy_audiences ) LassoProvider* lasso_saml2_assertion_get_issuer_provider ( const LassoSaml2Assertion* saml2_assertion, const LassoServer* server ) LassoSaml2SubjectConfirmationData* lasso_saml2_assertion_get_subject_confirmation_data ( LassoSaml2Assertion* saml2_assertion, gboolean create ) GType lasso_saml2_assertion_get_type ( ) gboolean lasso_saml2_assertion_has_audience_restriction ( LassoSaml2Assertion* saml2_assertion ) gboolean lasso_saml2_assertion_is_audience_restricted ( LassoSaml2Assertion* saml2_assertion, char* providerID ) LassoNode* lasso_saml2_assertion_new ( ) None lasso_saml2_assertion_set_basic_conditions ( LassoSaml2Assertion* saml2_assertion, time_t tolerance, time_t length, gboolean one_time_use ) None lasso_saml2_assertion_set_subject_confirmation_data ( LassoSaml2Assertion* saml2_assertion, time_t tolerance, time_t length, const char* Recipient, const char* InResponseTo, const char* Address ) None lasso_saml2_assertion_set_subject_confirmation_name_id ( LassoSaml2Assertion* saml2_assertion, LassoNode* node ) None lasso_saml2_assertion_set_subject_name_id ( LassoSaml2Assertion* saml2_assertion, LassoNode* node ) LassoSaml2AssertionValidationState lasso_saml2_assertion_validate_conditions ( LassoSaml2Assertion* saml2_assertion, const char* relaying_party_providerID ) GType lasso_saml2_attribute_get_type ( ) LassoNode* lasso_saml2_attribute_new ( ) GType lasso_saml2_attribute_statement_get_type ( ) LassoNode* lasso_saml2_attribute_statement_new ( ) GType lasso_saml2_attribute_value_get_type ( ) LassoSaml2AttributeValue* lasso_saml2_attribute_value_new ( ) GType lasso_saml2_audience_restriction_get_type ( ) LassoNode* lasso_saml2_audience_restriction_new ( ) GType lasso_saml2_authn_context_get_type ( ) LassoNode* lasso_saml2_authn_context_new ( ) GType lasso_saml2_authn_statement_get_type ( ) LassoNode* lasso_saml2_authn_statement_new ( ) GType lasso_saml2_authz_decision_statement_get_type ( ) LassoNode* lasso_saml2_authz_decision_statement_new ( ) GType lasso_saml2_base_idabstract_get_type ( ) LassoNode* lasso_saml2_base_idabstract_new ( ) GType lasso_saml2_condition_abstract_get_type ( ) LassoNode* lasso_saml2_condition_abstract_new ( ) GType lasso_saml2_conditions_get_type ( ) LassoNode* lasso_saml2_conditions_new ( ) LassoSaml2EncryptedElement* lasso_saml2_encrypted_element_build_encrypted_persistent_name_id ( const char* id, const char* idpID, const LassoProvider* provider ) GType lasso_saml2_encrypted_element_get_type ( ) LassoNode* lasso_saml2_encrypted_element_new ( ) GType lasso_saml2_evidence_get_type ( ) LassoNode* lasso_saml2_evidence_new ( ) GType lasso_saml2_key_info_confirmation_data_get_type ( ) LassoNode* lasso_saml2_key_info_confirmation_data_new ( ) LassoSaml2NameID* lasso_saml2_name_id_build_persistent ( const char* id, const char* idpID, const char* providerID ) gboolean lasso_saml2_name_id_equals ( LassoSaml2NameID* name_id, LassoSaml2NameID* other_name_id ) GType lasso_saml2_name_id_get_type ( ) LassoNode* lasso_saml2_name_id_new ( ) LassoNode* lasso_saml2_name_id_new_with_string ( char* content ) GType lasso_saml2_one_time_use_get_type ( ) LassoNode* lasso_saml2_one_time_use_new ( ) GType lasso_saml2_proxy_restriction_get_type ( ) LassoNode* lasso_saml2_proxy_restriction_new ( ) GType lasso_saml2_statement_abstract_get_type ( ) LassoNode* lasso_saml2_statement_abstract_new ( ) GType lasso_saml2_subject_confirmation_data_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_data_new ( ) GType lasso_saml2_subject_confirmation_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_new ( ) GType lasso_saml2_subject_get_type ( ) GType lasso_saml2_subject_locality_get_type ( ) LassoNode* lasso_saml2_subject_locality_new ( ) LassoNode* lasso_saml2_subject_new ( ) GType lasso_saml_advice_get_type ( ) LassoNode* lasso_saml_advice_new ( ) GType lasso_saml_assertion_get_type ( ) LassoSamlAssertion* lasso_saml_assertion_new ( ) GType lasso_saml_attribute_designator_get_type ( ) LassoNode* lasso_saml_attribute_designator_new ( ) GType lasso_saml_attribute_get_type ( ) LassoSamlAttribute* lasso_saml_attribute_new ( ) GType lasso_saml_attribute_statement_get_type ( ) LassoSamlAttributeStatement* lasso_saml_attribute_statement_new ( ) GType lasso_saml_attribute_value_get_type ( ) LassoSamlAttributeValue* lasso_saml_attribute_value_new ( ) GType lasso_saml_audience_restriction_condition_get_type ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new_full ( const char* audience ) GType lasso_saml_authentication_statement_get_type ( ) LassoNode* lasso_saml_authentication_statement_new ( ) GType lasso_saml_authority_binding_get_type ( ) LassoNode* lasso_saml_authority_binding_new ( ) GType lasso_saml_condition_abstract_get_type ( ) GType lasso_saml_conditions_get_type ( ) LassoSamlConditions* lasso_saml_conditions_new ( ) GType lasso_saml_name_identifier_get_type ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new_from_xmlNode ( xmlNode* xmlnode ) GType lasso_saml_statement_abstract_get_type ( ) GType lasso_saml_subject_confirmation_get_type ( ) LassoSamlSubjectConfirmation* lasso_saml_subject_confirmation_new ( ) GType lasso_saml_subject_get_type ( ) GType lasso_saml_subject_locality_get_type ( ) LassoNode* lasso_saml_subject_locality_new ( ) LassoNode* lasso_saml_subject_new ( ) GType lasso_saml_subject_statement_abstract_get_type ( ) GType lasso_saml_subject_statement_get_type ( ) LassoNode* lasso_saml_subject_statement_new ( ) GType lasso_samlp2_artifact_resolve_get_type ( ) LassoNode* lasso_samlp2_artifact_resolve_new ( ) GType lasso_samlp2_artifact_response_get_type ( ) LassoNode* lasso_samlp2_artifact_response_new ( ) GType lasso_samlp2_assertion_id_request_get_type ( ) LassoNode* lasso_samlp2_assertion_id_request_new ( ) GType lasso_samlp2_attribute_query_get_type ( ) LassoNode* lasso_samlp2_attribute_query_new ( ) GType lasso_samlp2_authn_query_get_type ( ) LassoNode* lasso_samlp2_authn_query_new ( ) GType lasso_samlp2_authn_request_get_type ( ) LassoNode* lasso_samlp2_authn_request_new ( ) GType lasso_samlp2_authz_decision_query_get_type ( ) LassoNode* lasso_samlp2_authz_decision_query_new ( ) GType lasso_samlp2_extensions_get_type ( ) LassoNode* lasso_samlp2_extensions_new ( ) GType lasso_samlp2_idp_entry_get_type ( ) LassoNode* lasso_samlp2_idp_entry_new ( ) GType lasso_samlp2_idp_list_get_type ( ) LassoNode* lasso_samlp2_idp_list_new ( ) GType lasso_samlp2_logout_request_get_type ( ) LassoNode* lasso_samlp2_logout_request_new ( ) GType lasso_samlp2_logout_response_get_type ( ) LassoNode* lasso_samlp2_logout_response_new ( ) GType lasso_samlp2_manage_name_id_request_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_request_new ( ) GType lasso_samlp2_manage_name_id_response_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_response_new ( ) GType lasso_samlp2_name_id_mapping_request_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_request_new ( ) GType lasso_samlp2_name_id_mapping_response_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_response_new ( ) GType lasso_samlp2_name_id_policy_get_type ( ) LassoNode* lasso_samlp2_name_id_policy_new ( ) GType lasso_samlp2_request_abstract_get_type ( ) LassoNode* lasso_samlp2_request_abstract_new ( ) GType lasso_samlp2_requested_authn_context_get_type ( ) LassoNode* lasso_samlp2_requested_authn_context_new ( ) GType lasso_samlp2_response_get_type ( ) LassoNode* lasso_samlp2_response_new ( ) GType lasso_samlp2_scoping_get_type ( ) LassoNode* lasso_samlp2_scoping_new ( ) GType lasso_samlp2_status_code_get_type ( ) LassoNode* lasso_samlp2_status_code_new ( ) GType lasso_samlp2_status_detail_get_type ( ) LassoNode* lasso_samlp2_status_detail_new ( ) GType lasso_samlp2_status_get_type ( ) LassoNode* lasso_samlp2_status_new ( ) GType lasso_samlp2_status_response_get_type ( ) LassoNode* lasso_samlp2_status_response_new ( ) GType lasso_samlp2_subject_query_abstract_get_type ( ) LassoNode* lasso_samlp2_subject_query_abstract_new ( ) GType lasso_samlp2_terminate_get_type ( ) LassoNode* lasso_samlp2_terminate_new ( ) GType lasso_samlp_request_abstract_get_type ( ) GType lasso_samlp_request_get_type ( ) LassoNode* lasso_samlp_request_new ( ) None lasso_samlp_response_abstract_fill ( LassoSamlpResponseAbstract* response, const char* InResponseTo, const char* Recipient ) GType lasso_samlp_response_abstract_get_type ( ) GType lasso_samlp_response_get_type ( ) LassoNode* lasso_samlp_response_new ( ) GType lasso_samlp_status_code_get_type ( ) LassoSamlpStatusCode* lasso_samlp_status_code_new ( ) GType lasso_samlp_status_get_type ( ) LassoSamlpStatus* lasso_samlp_status_new ( ) gint lasso_server_add_provider ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) gint lasso_server_add_provider_from_buffer ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) None lasso_server_destroy ( LassoServer* server ) gchar* lasso_server_dump ( LassoServer* server ) LassoProvider* lasso_server_get_provider ( const LassoServer* server, const gchar* providerID ) GType lasso_server_get_type ( ) int lasso_server_load_affiliation ( LassoServer* server, const gchar* filename ) LassoServer* lasso_server_new ( const gchar* metadata, const gchar* private_key, const gchar* private_key_password, const gchar* certificate ) LassoServer* lasso_server_new_from_buffers ( const gchar* metadata, const gchar* private_key, const gchar* private_key_password, const gchar* certificate ) LassoServer* lasso_server_new_from_dump ( const gchar* dump ) int lasso_server_saml2_assertion_setup_signature ( LassoServer* server, LassoSaml2Assertion* saml2_assertion ) int lasso_server_set_encryption_private_key ( LassoServer* server, const gchar* filename ) gint lasso_session_add_assertion ( LassoSession* session, const char* providerID, LassoNode* assertion ) None lasso_session_destroy ( LassoSession* session ) gchar* lasso_session_dump ( LassoSession* session ) LassoNode* lasso_session_get_assertion ( LassoSession* session, const gchar* providerID ) GList* lasso_session_get_assertions ( LassoSession* session, const char* provider_id ) gchar* lasso_session_get_provider_index ( LassoSession* session, gint index ) GType lasso_session_get_type ( ) gboolean lasso_session_is_empty ( LassoSession* session ) LassoSession* lasso_session_new ( ) LassoSession* lasso_session_new_from_dump ( const gchar* dump ) gint lasso_session_remove_assertion ( LassoSession* session, const gchar* providerID ) None lasso_set_flag ( char* flag ) int lasso_shutdown ( ) const char* lasso_strerror ( int error_code ) lasso-2.9.0/abi/PaxHeaders/abi-2.1.10000644000000000000000000000013013766621500013573 xustar0029 mtime=1608196928.71889494 30 atime=1754992978.145544976 29 ctime=1754993575.20113351 lasso-2.9.0/abi/abi-2.1.10000644000175000017500000014725013766621500015616 0ustar00bdauvergnebdauvergneLASSO_CHECK_VERSIONABI_COMPATIBLE LASSO_CHECK_VERSION_EXACT LASSO_CHECK_VERSION_NUMERIC LASSO_DEFEDERATION_ERROR_MISSING_NAME_IDENTIFIER LASSO_DS_HREF LASSO_DS_PREFIX LASSO_ECP_HREF LASSO_ECP_PREFIX LASSO_ENCRYPTION_MODE_ASSERTION LASSO_ENCRYPTION_MODE_NAMEID LASSO_ENCRYPTION_MODE_NONE LASSO_ENCRYPTION_SYM_KEY_TYPE_3DES LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_128 LASSO_ENCRYPTION_SYM_KEY_TYPE_AES_256 LASSO_ENCRYPTION_SYM_KEY_TYPE_DEFAULT LASSO_ERROR_UNDEFINED LASSO_ERROR_UNIMPLEMENTED LASSO_HTTP_METHOD_ANY LASSO_HTTP_METHOD_ARTIFACT_GET LASSO_HTTP_METHOD_ARTIFACT_POST LASSO_HTTP_METHOD_GET LASSO_HTTP_METHOD_IDP_INITIATED LASSO_HTTP_METHOD_NONE LASSO_HTTP_METHOD_POST LASSO_HTTP_METHOD_REDIRECT LASSO_HTTP_METHOD_SOAP LASSO_LASSO_HREF LASSO_LASSO_PREFIX LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_INTERNET_PROTOCOL_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_CONTRACT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PASSWORD_PROTECTED_TRANSPORT LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_PREVIOUS_SESSION LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SMARTCARD_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_SOFTWARE_PKI LASSO_LIB_AUTHN_CONTEXT_CLASS_REF_TIME_SYNC_TOKEN LASSO_LIB_AUTHN_CONTEXT_COMPARISON_BETTER LASSO_LIB_AUTHN_CONTEXT_COMPARISON_EXACT LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MAXIMUM LASSO_LIB_AUTHN_CONTEXT_COMPARISON_MINIMUM LASSO_LIB_CONSENT_INAPPLICABLE LASSO_LIB_CONSENT_OBTAINED LASSO_LIB_CONSENT_OBTAINED_CURRENT_EXPLICIT LASSO_LIB_CONSENT_OBTAINED_CURRENT_IMPLICIT LASSO_LIB_CONSENT_OBTAINED_PRIOR LASSO_LIB_CONSENT_UNAVAILABLE LASSO_LIB_HREF LASSO_LIB_MAJOR_VERSION_N LASSO_LIB_MINOR_VERSION_N LASSO_LIB_NAMEID_POLICY_TYPE_ANY LASSO_LIB_NAMEID_POLICY_TYPE_FEDERATED LASSO_LIB_NAMEID_POLICY_TYPE_NONE LASSO_LIB_NAMEID_POLICY_TYPE_ONE_TIME LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENTITYID LASSO_LIB_NAME_IDENTIFIER_FORMAT_FEDERATED LASSO_LIB_NAME_IDENTIFIER_FORMAT_ONE_TIME LASSO_LIB_PREFIX LASSO_LIB_PROTOCOL_PROFILE_BRWS_ART LASSO_LIB_PROTOCOL_PROFILE_BRWS_LECP LASSO_LIB_PROTOCOL_PROFILE_BRWS_POST LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_FED_TERM_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_NIM_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_RNI_SP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_IDP_SOAP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_HTTP LASSO_LIB_PROTOCOL_PROFILE_SLO_SP_SOAP LASSO_LIB_STATUS_CODE_FEDERATION_DOES_NOT_EXIST LASSO_LIB_STATUS_CODE_INVALID_ASSERTION_CONSUMER_SERVICE_INDEX LASSO_LIB_STATUS_CODE_INVALID_SIGNATURE LASSO_LIB_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_LIB_STATUS_CODE_NO_AVAILABLEIDP LASSO_LIB_STATUS_CODE_NO_PASSIVE LASSO_LIB_STATUS_CODE_NO_SUPPORTEDIDP LASSO_LIB_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_LIB_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_LIB_STATUS_CODE_UNSIGNED_AUTHN_REQUEST LASSO_LIB_STATUS_CODE_UNSUPPORTED_PROFILE LASSO_LOGIN_ERROR_ASSERTION_REPLAY LASSO_LOGIN_ERROR_CONSENT_NOT_OBTAINED LASSO_LOGIN_ERROR_FEDERATION_NOT_FOUND LASSO_LOGIN_ERROR_INVALID_NAMEIDPOLICY LASSO_LOGIN_ERROR_INVALID_SIGNATURE LASSO_LOGIN_ERROR_NO_DEFAULT_ENDPOINT LASSO_LOGIN_ERROR_REQUEST_DENIED LASSO_LOGIN_ERROR_STATUS_NOT_SUCCESS LASSO_LOGIN_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGIN_ERROR_UNSIGNED_AUTHN_REQUEST LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_ART LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_LECP LASSO_LOGIN_PROTOCOL_PROFILE_BRWS_POST LASSO_LOGOUT_ERROR_FEDERATION_NOT_FOUND LASSO_LOGOUT_ERROR_REQUEST_DENIED LASSO_LOGOUT_ERROR_UNKNOWN_PRINCIPAL LASSO_LOGOUT_ERROR_UNSUPPORTED_PROFILE LASSO_MD_PROTOCOL_TYPE_ARTIFACT_RESOLUTION LASSO_MD_PROTOCOL_TYPE_ASSERTION_ID_REQUEST LASSO_MD_PROTOCOL_TYPE_FEDERATION_TERMINATION LASSO_MD_PROTOCOL_TYPE_MANAGE_NAME_ID LASSO_MD_PROTOCOL_TYPE_NAME_IDENTIFIER_MAPPING LASSO_MD_PROTOCOL_TYPE_REGISTER_NAME_IDENTIFIER LASSO_MD_PROTOCOL_TYPE_SINGLE_LOGOUT LASSO_MD_PROTOCOL_TYPE_SINGLE_SIGN_ON LASSO_MESSAGE_FORMAT_BASE64 LASSO_MESSAGE_FORMAT_ERROR LASSO_MESSAGE_FORMAT_QUERY LASSO_MESSAGE_FORMAT_SOAP LASSO_MESSAGE_FORMAT_UNKNOWN LASSO_MESSAGE_FORMAT_XML LASSO_METADATA_HREF LASSO_METADATA_PREFIX LASSO_NAME_IDENTIFIER_MAPPING_ERROR_FORBIDDEN_CALL_ON_THIS_SIDE LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_IDENTIFIER LASSO_NAME_IDENTIFIER_MAPPING_ERROR_MISSING_TARGET_NAMESPACE LASSO_PAOS_HREF LASSO_PAOS_PREFIX LASSO_PARAM_ERROR_BAD_TYPE_OR_NULL_OBJ LASSO_PARAM_ERROR_CHECK_FAILED LASSO_PARAM_ERROR_INVALID_VALUE LASSO_PROFILE_ERROR_BAD_IDENTITY_DUMP LASSO_PROFILE_ERROR_BAD_SESSION_DUMP LASSO_PROFILE_ERROR_BUILDING_MESSAGE_FAILED LASSO_PROFILE_ERROR_BUILDING_QUERY_FAILED LASSO_PROFILE_ERROR_BUILDING_REQUEST_FAILED LASSO_PROFILE_ERROR_BUILDING_RESPONSE_FAILED LASSO_PROFILE_ERROR_FEDERATION_NOT_FOUND LASSO_PROFILE_ERROR_IDENTITY_NOT_FOUND LASSO_PROFILE_ERROR_INVALID_ARTIFACT LASSO_PROFILE_ERROR_INVALID_HTTP_METHOD LASSO_PROFILE_ERROR_INVALID_MSG LASSO_PROFILE_ERROR_INVALID_POST_MSG LASSO_PROFILE_ERROR_INVALID_PROTOCOLPROFILE LASSO_PROFILE_ERROR_INVALID_QUERY LASSO_PROFILE_ERROR_INVALID_SOAP_MSG LASSO_PROFILE_ERROR_MISSING_ARTIFACT LASSO_PROFILE_ERROR_MISSING_ASSERTION LASSO_PROFILE_ERROR_MISSING_ENCRYPTION_PRIVATE_KEY LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE LASSO_PROFILE_ERROR_MISSING_ENDPOINT_REFERENCE_ADDRESS LASSO_PROFILE_ERROR_MISSING_ISSUER LASSO_PROFILE_ERROR_MISSING_NAME_IDENTIFIER LASSO_PROFILE_ERROR_MISSING_REMOTE_PROVIDERID LASSO_PROFILE_ERROR_MISSING_REQUEST LASSO_PROFILE_ERROR_MISSING_RESOURCE_OFFERING LASSO_PROFILE_ERROR_MISSING_RESPONSE LASSO_PROFILE_ERROR_MISSING_SERVICE_DESCRIPTION LASSO_PROFILE_ERROR_MISSING_SERVICE_INSTANCE LASSO_PROFILE_ERROR_MISSING_SERVICE_TYPE LASSO_PROFILE_ERROR_MISSING_STATUS_CODE LASSO_PROFILE_ERROR_MISSING_SUBJECT LASSO_PROFILE_ERROR_NAME_IDENTIFIER_NOT_FOUND LASSO_PROFILE_ERROR_SESSION_NOT_FOUND LASSO_PROFILE_ERROR_STATUS_NOT_SUCCESS LASSO_PROFILE_ERROR_UNKNOWN_PROFILE_URL LASSO_PROFILE_ERROR_UNSUPPORTED_PROFILE LASSO_PROTOCOL_LIBERTY_1_0 LASSO_PROTOCOL_LIBERTY_1_1 LASSO_PROTOCOL_LIBERTY_1_2 LASSO_PROTOCOL_SAML_2_0 LASSO_PROVIDER_ROLE_IDP LASSO_PROVIDER_ROLE_NONE LASSO_PROVIDER_ROLE_SP LASSO_REQUEST_TYPE_DEFEDERATION LASSO_REQUEST_TYPE_INVALID LASSO_REQUEST_TYPE_LECP LASSO_REQUEST_TYPE_LOGIN LASSO_REQUEST_TYPE_LOGOUT LASSO_REQUEST_TYPE_NAME_IDENTIFIER_MAPPING LASSO_REQUEST_TYPE_NAME_ID_MANAGEMENT LASSO_REQUEST_TYPE_NAME_REGISTRATION LASSO_REQUEST_TYPE_SASL_REQUEST LASSO_SAML2_ASSERTION_HREF LASSO_SAML2_ASSERTION_PREFIX LASSO_SAML2_ATTRIBUTE_NAME_EPR LASSO_SAML2_ATTRIBUTE_NAME_FORMAT_URI LASSO_SAML2_AUTHN_CONTEXT_AUTHENTICATED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL LASSO_SAML2_AUTHN_CONTEXT_INTERNET_PROTOCOL_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_KERBEROS LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_ONE_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_CONTRACT LASSO_SAML2_AUTHN_CONTEXT_MOBILE_TWO_FACTOR_UNREGISTERED LASSO_SAML2_AUTHN_CONTEXT_NOMAD_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_PASSWORD_PROTECTED_TRANSPORT LASSO_SAML2_AUTHN_CONTEXT_PERSONALIZED_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_PGP LASSO_SAML2_AUTHN_CONTEXT_PREVIOUS_SESSION LASSO_SAML2_AUTHN_CONTEXT_SECURE_REMOTE_PASSWORD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD LASSO_SAML2_AUTHN_CONTEXT_SMARTCARD_PKI LASSO_SAML2_AUTHN_CONTEXT_SOFTWARE_PKI LASSO_SAML2_AUTHN_CONTEXT_SPKI LASSO_SAML2_AUTHN_CONTEXT_TELEPHONY LASSO_SAML2_AUTHN_CONTEXT_TIME_SYNC_TOKEN LASSO_SAML2_AUTHN_CONTEXT_TLS_CLIENT LASSO_SAML2_AUTHN_CONTEXT_X509 LASSO_SAML2_AUTHN_CONTEXT_XMLDSIG LASSO_SAML2_CONFIRMATION_METHOD_BEARER LASSO_SAML2_CONSENT_EXPLICIT LASSO_SAML2_CONSENT_IMPLICIT LASSO_SAML2_CONSENT_INAPPLICABLE LASSO_SAML2_CONSENT_OBTAINED LASSO_SAML2_CONSENT_PRIOR LASSO_SAML2_CONSENT_UNAVAILABLE LASSO_SAML2_DEFLATE_ENCODING LASSO_SAML2_METADATA_BINDING_ARTIFACT LASSO_SAML2_METADATA_BINDING_PAOS LASSO_SAML2_METADATA_BINDING_POST LASSO_SAML2_METADATA_BINDING_REDIRECT LASSO_SAML2_METADATA_BINDING_SOAP LASSO_SAML2_METADATA_HREF LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENCRYPTED LASSO_SAML2_NAME_IDENTIFIER_FORMAT_ENTITY LASSO_SAML2_NAME_IDENTIFIER_FORMAT_KERBEROS LASSO_SAML2_NAME_IDENTIFIER_FORMAT_PERSISTENT LASSO_SAML2_NAME_IDENTIFIER_FORMAT_TRANSIENT LASSO_SAML2_PROTOCOL_HREF LASSO_SAML2_PROTOCOL_PREFIX LASSO_SAML2_STATUS_CODE_AUTHN_FAILED LASSO_SAML2_STATUS_CODE_INVALID_ATTR_NAME LASSO_SAML2_STATUS_CODE_INVALID_NAME_ID_POLICY LASSO_SAML2_STATUS_CODE_NO_AUTHN_CONTEXT LASSO_SAML2_STATUS_CODE_NO_AVAILABLE_IDP LASSO_SAML2_STATUS_CODE_NO_PASSIVE LASSO_SAML2_STATUS_CODE_NO_SUPPORTED_IDP LASSO_SAML2_STATUS_CODE_PARTIAL_LOGOUT LASSO_SAML2_STATUS_CODE_PROXY_COUNT_EXCEEDED LASSO_SAML2_STATUS_CODE_REQUESTER LASSO_SAML2_STATUS_CODE_REQUEST_DENIED LASSO_SAML2_STATUS_CODE_REQUEST_UNSUPPORTED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML2_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML2_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML2_STATUS_CODE_RESPONDER LASSO_SAML2_STATUS_CODE_SUCCESS LASSO_SAML2_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML2_STATUS_CODE_UNKNOWN_ATTR_PROFILE LASSO_SAML2_STATUS_CODE_UNKNOWN_PRINCIPAL LASSO_SAML2_STATUS_CODE_UNSUPPORTED_BINDING LASSO_SAML2_STATUS_CODE_VERSION_MISMATCH LASSO_SAML_ASSERTION_HREF LASSO_SAML_ASSERTION_PREFIX LASSO_SAML_AUTHENTICATION_METHODS_PKI LASSO_SAML_AUTHENTICATION_METHOD_HARDWARE_TOKEN LASSO_SAML_AUTHENTICATION_METHOD_KERBEROS LASSO_SAML_AUTHENTICATION_METHOD_LIBERTY LASSO_SAML_AUTHENTICATION_METHOD_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_PGP LASSO_SAML_AUTHENTICATION_METHOD_SECURE_REMOTE_PASSWORD LASSO_SAML_AUTHENTICATION_METHOD_SMARTCARD_PKI LASSO_SAML_AUTHENTICATION_METHOD_SOFTWARE_PKI LASSO_SAML_AUTHENTICATION_METHOD_UNSPECIFIED LASSO_SAML_AUTHENTICATION_METHOD_XKMS LASSO_SAML_AUTHENTICATION_METHOD_XMLD_SIG LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT LASSO_SAML_CONFIRMATION_METHOD_ARTIFACT01 LASSO_SAML_CONFIRMATION_METHOD_BEARER LASSO_SAML_CONFIRMATION_METHOD_HOLDER_OF_KEY LASSO_SAML_CONFIRMATION_METHOD_SENDER_VOUCHES LASSO_SAML_MAJOR_VERSION_N LASSO_SAML_MINOR_VERSION_N LASSO_SAML_PROTOCOL_HREF LASSO_SAML_PROTOCOL_PREFIX LASSO_SAML_STATUS_CODE_REQUESTER LASSO_SAML_STATUS_CODE_REQUEST_DENIED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_DEPRECATED LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_HIGH LASSO_SAML_STATUS_CODE_REQUEST_VERSION_TOO_LOW LASSO_SAML_STATUS_CODE_RESOURCE_NOT_RECOGNIZED LASSO_SAML_STATUS_CODE_RESPONDER LASSO_SAML_STATUS_CODE_SUCCESS LASSO_SAML_STATUS_CODE_TOO_MANY_RESPONSES LASSO_SAML_STATUS_CODE_VERSION_MISMATCH LASSO_SERVER_ERROR_ADD_PROVIDER_FAILED LASSO_SERVER_ERROR_ADD_PROVIDER_PROTOCOL_MISMATCH LASSO_SERVER_ERROR_INVALID_XML LASSO_SERVER_ERROR_PROVIDER_NOT_FOUND LASSO_SERVER_ERROR_SET_ENCRYPTION_PRIVATE_KEY_FAILED LASSO_SIGNATURE_METHOD_DSA_SHA1 LASSO_SIGNATURE_METHOD_RSA_SHA1 LASSO_SIGNATURE_TYPE_NONE LASSO_SIGNATURE_TYPE_SIMPLE LASSO_SIGNATURE_TYPE_WITHX509 LASSO_SOAP_ENV_ACTOR LASSO_SOAP_ENV_HREF LASSO_SOAP_ENV_PREFIX LASSO_SOAP_ERROR_MISSING_BODY LASSO_SOAP_ERROR_MISSING_ENVELOPE LASSO_SOAP_ERROR_MISSING_HEADER LASSO_SOAP_ERROR_MISSING_SOAP_FAULT_DETAIL LASSO_SOAP_FAULT_CODE_SERVER LASSO_XML_ERROR_ATTR_NOT_FOUND LASSO_XML_ERROR_ATTR_VALUE_NOT_FOUND LASSO_XML_ERROR_INVALID_FILE LASSO_XML_ERROR_MISSING_NAMESPACE LASSO_XML_ERROR_NODE_CONTENT_NOT_FOUND LASSO_XML_ERROR_NODE_NOT_FOUND LASSO_XML_ERROR_OBJECT_CONSTRUCTION_FAILED LASSO_XSI_HREF LASSO_XSI_PREFIX LassoCheckVersionMode struct LassoDefederation { void* private_data } struct LassoDsKeyInfo { LassoDsKeyValue* KeyValue } struct LassoDsKeyValue { LassoDsRsaKeyValue* RSAKeyValue } struct LassoDsRsaKeyValue { char* Modulus, char* Exponent } struct LassoEcp { gchar* assertionConsumerURL, LassoEcpPrivate* private_data } LassoEncryptionMode LassoEncryptionSymKeyType struct LassoFederation { gchar* remote_providerID, LassoNode* local_nameIdentifier, LassoNode* remote_nameIdentifier, LassoFederationPrivate* private_data } LassoHttpMethod struct LassoIdentity { GHashTable* federations, gboolean is_dirty, LassoIdentityPrivate* private_data } struct LassoLecp { LassoLibAuthnRequestEnvelope* authnRequestEnvelope, LassoLibAuthnResponseEnvelope* authnResponseEnvelope, char* assertionConsumerServiceURL, void* private_data } struct LassoLibAssertion { char* InResponseTo } struct LassoLibAuthenticationStatement { LassoLibAuthnContext* AuthnContext, char* ReauthenticateOnOrAfter, char* SessionIndex } struct LassoLibAuthnContext { char* AuthnContextClassRef, char* AuthnContextStatementRef, void* AuthenticationContextStatement } struct LassoLibAuthnRequest { GList* Extension, char* ProviderID, char* AffiliationID, char* NameIDPolicy, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolProfile, char* AssertionConsumerServiceID, LassoLibRequestAuthnContext* RequestAuthnContext, char* RelayState, LassoLibScoping* Scoping, char* consent } struct LassoLibAuthnRequestEnvelope { GList* Extension, LassoLibAuthnRequest* AuthnRequest, char* ProviderID, char* ProviderName, char* AssertionConsumerServiceURL, LassoLibIDPList* IDPList, gboolean IsPassive } struct LassoLibAuthnResponse { GList* Extension, char* ProviderID, char* RelayState, char* consent } struct LassoLibAuthnResponseEnvelope { GList* Extension, LassoLibAuthnResponse* AuthnResponse, char* AssertionConsumerServiceURL } struct LassoLibFederationTerminationNotification { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* consent, char* RelayState } struct LassoLibIDPEntries { GList* IDPEntry } struct LassoLibIDPEntry { char* ProviderID, char* ProviderName, char* Loc } struct LassoLibIDPList { LassoLibIDPEntries* IDPEntries, char* GetComplete } struct LassoLibLogoutRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* SessionIndex, char* RelayState, char* consent, char* NotOnOrAfter } struct LassoLibLogoutResponse { } struct LassoLibNameIdentifierMappingRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* NameIdentifier, char* TargetNamespace, char* consent } struct LassoLibNameIdentifierMappingResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, LassoSamlNameIdentifier* NameIdentifier } struct LassoLibRegisterNameIdentifierRequest { GList* Extension, char* ProviderID, LassoSamlNameIdentifier* IDPProvidedNameIdentifier, LassoSamlNameIdentifier* SPProvidedNameIdentifier, LassoSamlNameIdentifier* OldProvidedNameIdentifier, char* RelayState } struct LassoLibRegisterNameIdentifierResponse { } struct LassoLibRequestAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextStatementRef, char* AuthnContextComparison } struct LassoLibScoping { int ProxyCount, LassoLibIDPList* IDPList } struct LassoLibStatusResponse { GList* Extension, char* ProviderID, LassoSamlpStatus* Status, char* RelayState } struct LassoLibSubject { LassoSamlNameIdentifier* IDPProvidedNameIdentifier } struct LassoLogin { LassoLoginProtocolProfile protocolProfile, gchar* assertionArtifact, LassoSamlAssertion* assertion, gchar* nameIDPolicy, LassoHttpMethod http_method, LassoLoginPrivate* private_data } LassoLoginProtocolProfile struct LassoLogout { LassoNode* initial_request, LassoNode* initial_response, gchar* initial_remote_providerID, gint providerID_index, LassoHttpMethod initial_http_request_method, LassoLogoutPrivate* private_data } LassoMdProtocolType LassoMessageFormat struct LassoMiscTextNode { char* content, char* name, char* ns_href, char* ns_prefix, gboolean text_child } struct LassoNameIdManagement { void* private_data } struct LassoNameIdentifierMapping { gchar* targetNameIdentifier, void* private_data } struct LassoNameRegistration { LassoSamlNameIdentifier* oldNameIdentifier, void* private_data } struct LassoNode { } struct LassoProfile { LassoServer* server, LassoNode* request, LassoNode* response, LassoNode* nameIdentifier, gchar* remote_providerID, gchar* msg_url, gchar* msg_body, gchar* msg_relayState, LassoIdentity* identity, LassoSession* session, LassoHttpMethod http_request_method, gint signature_status, LassoProfilePrivate* private_data } LassoProtocolConformance struct LassoProvider { gchar* ProviderID, LassoProviderRole role, char* metadata_filename, gchar* public_key, gchar* ca_cert_chain, LassoProviderPrivate* private_data } LassoProviderRole LassoRequestType struct LassoSaml2Action { char* content, char* Namespace } struct LassoSaml2Advice { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2Assertion { LassoSaml2NameID* Issuer, LassoSaml2Subject* Subject, LassoSaml2Conditions* Conditions, LassoSaml2Advice* Advice, GList* Statement, GList* AuthnStatement, GList* AuthzDecisionStatement, GList* AttributeStatement, char* Version, char* ID, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file, gboolean encryption_activated, char* encryption_public_key_str, LassoEncryptionSymKeyType encryption_sym_key_type } struct LassoSaml2Attribute { GList* AttributeValue, char* Name, char* NameFormat, char* FriendlyName } struct LassoSaml2AttributeStatement { GList* Attribute, GList* EncryptedAttribute } struct LassoSaml2AttributeValue { GList* any } struct LassoSaml2AudienceRestriction { char* Audience } struct LassoSaml2AuthnContext { char* AuthnContextClassRef, char* AuthnContextDeclRef, char* AuthenticatingAuthority } struct LassoSaml2AuthnStatement { LassoSaml2SubjectLocality* SubjectLocality, LassoSaml2AuthnContext* AuthnContext, char* AuthnInstant, char* SessionIndex, char* SessionNotOnOrAfter } struct LassoSaml2AuthzDecisionStatement { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource, char* Decision } struct LassoSaml2BaseIDAbstract { char* NameQualifier, char* SPNameQualifier } struct LassoSaml2ConditionAbstract { } struct LassoSaml2Conditions { GList* Condition, GList* AudienceRestriction, GList* OneTimeUse, GList* ProxyRestriction, char* NotBefore, char* NotOnOrAfter } struct LassoSaml2EncryptedElement { xmlNode* EncryptedData, GList* EncryptedKey, LassoNode* original_data } struct LassoSaml2Evidence { GList* AssertionIDRef, GList* AssertionURIRef, GList* Assertion, GList* EncryptedAssertion } struct LassoSaml2KeyInfoConfirmationData { } struct LassoSaml2NameID { char* content, char* Format, char* SPProvidedID, char* NameQualifier, char* SPNameQualifier } struct LassoSaml2OneTimeUse { } struct LassoSaml2ProxyRestriction { char* Audience, char* Count } struct LassoSaml2StatementAbstract { } struct LassoSaml2Subject { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmation* SubjectConfirmation } struct LassoSaml2SubjectConfirmation { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSaml2SubjectConfirmationData* SubjectConfirmationData, char* Method } struct LassoSaml2SubjectConfirmationData { char* NotBefore, char* NotOnOrAfter, char* Recipient, char* InResponseTo, char* Address } struct LassoSaml2SubjectLocality { char* Address, char* DNSName } struct LassoSamlAdvice { GList* AssertionIDReference, LassoNode* Assertion } struct LassoSamlAssertion { LassoSamlConditions* Conditions, LassoSamlAdvice* Advice, void* Statement, LassoSamlSubjectStatement* SubjectStatement, LassoSamlAuthenticationStatement* AuthenticationStatement, void* AuthorizationDecisionStatement, LassoSamlAttributeStatement* AttributeStatement, int MajorVersion, int MinorVersion, char* AssertionID, char* Issuer, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlAttribute { gchar* attributeName, gchar* attributeNameSpace, GList* AttributeValue } struct LassoSamlAttributeDesignator { char* AttributeName, char* AttributeNamespace } struct LassoSamlAttributeStatement { GList* Attribute } struct LassoSamlAttributeValue { GList* any } struct LassoSamlAudienceRestrictionCondition { GList* Audience } struct LassoSamlAuthenticationStatement { LassoSamlSubjectLocality* SubjectLocality, GList* AuthorityBinding, char* AuthenticationMethod, char* AuthenticationInstant } struct LassoSamlAuthorityBinding { char* AuthorityKind, char* Location, char* Binding } struct LassoSamlConditionAbstract { } struct LassoSamlConditions { GList* Condition, GList* AudienceRestrictionCondition, char* NotBefore, char* NotOnOrAfter } struct LassoSamlNameIdentifier { char* NameQualifier, char* Format, char* content } struct LassoSamlStatementAbstract { } struct LassoSamlSubject { LassoSamlNameIdentifier* NameIdentifier, LassoSamlSubjectConfirmation* SubjectConfirmation } struct LassoSamlSubjectConfirmation { GList* ConfirmationMethod, char* SubjectConfirmationData, LassoDsKeyInfo* KeyInfo } struct LassoSamlSubjectLocality { char* IPAddress, char* DNSAddress } struct LassoSamlSubjectStatement { } struct LassoSamlSubjectStatementAbstract { LassoSamlSubject* Subject } struct LassoSamlp2ArtifactResolve { char* Artifact } struct LassoSamlp2ArtifactResponse { LassoNode* any } struct LassoSamlp2AssertionIDRequest { char* AssertionIDRef } struct LassoSamlp2AttributeQuery { LassoSaml2Attribute* Attribute } struct LassoSamlp2AuthnQuery { LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, char* SessionIndex } struct LassoSamlp2AuthnRequest { LassoSaml2Subject* Subject, LassoSamlp2NameIDPolicy* NameIDPolicy, LassoSaml2Conditions* Conditions, LassoSamlp2RequestedAuthnContext* RequestedAuthnContext, LassoSamlp2Scoping* Scoping, gboolean ForceAuthn, gboolean IsPassive, char* ProtocolBinding, int AssertionConsumerServiceIndex, char* AssertionConsumerServiceURL, int AttributeConsumingServiceIndex, char* ProviderName, char* relayState } struct LassoSamlp2AuthzDecisionQuery { LassoSaml2Action* Action, LassoSaml2Evidence* Evidence, char* Resource } struct LassoSamlp2Extensions { } struct LassoSamlp2IDPEntry { char* ProviderID, char* Name, char* Loc } struct LassoSamlp2IDPList { LassoSamlp2IDPEntry* IDPEntry, char* GetComplete } struct LassoSamlp2LogoutRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* SessionIndex, char* Reason, char* NotOnOrAfter, char* relayState } struct LassoSamlp2LogoutResponse { char* relayState } struct LassoSamlp2ManageNameIDRequest { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, char* NewID, LassoSaml2EncryptedElement* NewEncryptedID, LassoSamlp2Terminate* Terminate } struct LassoSamlp2ManageNameIDResponse { } struct LassoSamlp2NameIDMappingRequest { LassoSaml2BaseIDAbstract* BaseID, LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID, LassoSamlp2NameIDPolicy* NameIDPolicy } struct LassoSamlp2NameIDMappingResponse { LassoSaml2NameID* NameID, LassoSaml2EncryptedElement* EncryptedID } struct LassoSamlp2NameIDPolicy { char* Format, char* SPNameQualifier, gboolean AllowCreate } struct LassoSamlp2RequestAbstract { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, char* ID, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2RequestedAuthnContext { GList* AuthnContextClassRef, GList* AuthnContextDeclRef, char* Comparison } struct LassoSamlp2Response { GList* Assertion, GList* EncryptedAssertion } struct LassoSamlp2Scoping { LassoSamlp2IDPList* IDPList, char* RequesterID, char* ProxyCount } struct LassoSamlp2Status { LassoSamlp2StatusCode* StatusCode, char* StatusMessage, LassoSamlp2StatusDetail* StatusDetail } struct LassoSamlp2StatusCode { LassoSamlp2StatusCode* StatusCode, char* Value } struct LassoSamlp2StatusDetail { } struct LassoSamlp2StatusResponse { LassoSaml2NameID* Issuer, LassoSamlp2Extensions* Extensions, LassoSamlp2Status* Status, char* ID, char* InResponseTo, char* Version, char* IssueInstant, char* Destination, char* Consent, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlp2SubjectQueryAbstract { LassoSaml2Subject* Subject } struct LassoSamlp2Terminate { } struct LassoSamlpRequest { char* AssertionArtifact } struct LassoSamlpRequestAbstract { GList* RespondWith, char* RequestID, int MajorVersion, int MinorVersion, char* IssueInstant, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpResponse { LassoSamlpStatus* Status, GList* Assertion } struct LassoSamlpResponseAbstract { char* ResponseID, char* InResponseTo, int MajorVersion, int MinorVersion, char* IssueInstant, char* Recipient, LassoSignatureType sign_type, LassoSignatureMethod sign_method, char* private_key_file, char* certificate_file } struct LassoSamlpStatus { LassoSamlpStatusCode* StatusCode, char* StatusMessage } struct LassoSamlpStatusCode { LassoSamlpStatusCode* StatusCode, char* Value } struct LassoServer { GHashTable* providers, GHashTable* services, gchar* private_key, gchar* private_key_password, gchar* certificate, LassoSignatureMethod signature_method, LassoServerPrivate* private_data } struct LassoSession { GHashTable* assertions, gboolean is_dirty, LassoSessionPrivate* private_data } LassoSignatureMethod LassoSignatureType int lasso_check_version ( int major, int minor, int subminor, LassoCheckVersionMode mode ) gint lasso_defederation_build_notification_msg ( LassoDefederation* defederation ) None lasso_defederation_destroy ( LassoDefederation* defederation ) GType lasso_defederation_get_type ( ) gint lasso_defederation_init_notification ( LassoDefederation* defederation, gchar* remote_providerID, LassoHttpMethod http_method ) LassoDefederation* lasso_defederation_new ( LassoServer* server ) gint lasso_defederation_process_notification_msg ( LassoDefederation* defederation, gchar* notification_msg ) gint lasso_defederation_validate_notification ( LassoDefederation* defederation ) GType lasso_ds_key_info_get_type ( ) LassoDsKeyInfo* lasso_ds_key_info_new ( ) GType lasso_ds_key_value_get_type ( ) LassoDsKeyValue* lasso_ds_key_value_new ( ) GType lasso_ds_rsa_key_value_get_type ( ) LassoDsRsaKeyValue* lasso_ds_rsa_key_value_new ( ) None lasso_ecp_destroy ( LassoEcp* ecp ) GType lasso_ecp_get_type ( ) LassoEcp* lasso_ecp_new ( LassoServer* server ) int lasso_ecp_process_authn_request_msg ( LassoEcp* ecp, const char* authn_request_msg ) int lasso_ecp_process_response_msg ( LassoEcp* ecp, const char* response_msg ) None lasso_federation_build_local_name_identifier ( LassoFederation* federation, const gchar* nameQualifier, const gchar* format, const gchar* content ) None lasso_federation_destroy ( LassoFederation* federation ) GType lasso_federation_get_type ( ) LassoFederation* lasso_federation_new ( gchar* remote_providerID ) gboolean lasso_federation_verify_name_identifier ( LassoFederation* federation, LassoNode* name_identifier ) char* lasso_get_prefix_for_dst_service_href ( const char* href ) gchar* lasso_get_prefix_for_idwsf2_dst_service_href ( const gchar* href ) None lasso_identity_destroy ( LassoIdentity* identity ) gchar* lasso_identity_dump ( LassoIdentity* identity ) LassoFederation* lasso_identity_get_federation ( LassoIdentity* identity, const char* providerID ) GType lasso_identity_get_type ( ) LassoIdentity* lasso_identity_new ( ) LassoIdentity* lasso_identity_new_from_dump ( const gchar* dump ) int lasso_init ( ) int lasso_lecp_build_authn_request_envelope_msg ( LassoLecp* lecp ) int lasso_lecp_build_authn_request_msg ( LassoLecp* lecp ) int lasso_lecp_build_authn_response_envelope_msg ( LassoLecp* lecp ) int lasso_lecp_build_authn_response_msg ( LassoLecp* lecp ) None lasso_lecp_destroy ( LassoLecp* lecp ) GType lasso_lecp_get_type ( ) int lasso_lecp_init_authn_request ( LassoLecp* lecp, const char* remote_providerID ) LassoLecp* lasso_lecp_new ( LassoServer* server ) int lasso_lecp_process_authn_request_envelope_msg ( LassoLecp* lecp, const char* request_msg ) int lasso_lecp_process_authn_request_msg ( LassoLecp* lecp, const char* authn_request_msg ) int lasso_lecp_process_authn_response_envelope_msg ( LassoLecp* lecp, const char* response_msg ) GType lasso_lib_assertion_get_type ( ) LassoLibAssertion* lasso_lib_assertion_new ( ) LassoLibAssertion* lasso_lib_assertion_new_full ( const char* issuer, const char* requestID, const char* audience, const char* notBefore, const char* notOnOrAfter ) GType lasso_lib_authentication_statement_get_type ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new ( ) LassoLibAuthenticationStatement* lasso_lib_authentication_statement_new_full ( const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, LassoSamlNameIdentifier* sp_identifier, LassoSamlNameIdentifier* idp_identifier ) GType lasso_lib_authn_context_get_type ( ) LassoNode* lasso_lib_authn_context_new ( ) GType lasso_lib_authn_request_envelope_get_type ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new ( ) LassoLibAuthnRequestEnvelope* lasso_lib_authn_request_envelope_new_full ( LassoLibAuthnRequest* authnRequest, char* providerID, char* assertionConsumerServiceURL ) GType lasso_lib_authn_request_get_type ( ) LassoLibAuthnRequest* lasso_lib_authn_request_new ( ) GType lasso_lib_authn_response_envelope_get_type ( ) LassoLibAuthnResponseEnvelope* lasso_lib_authn_response_envelope_new ( LassoLibAuthnResponse* response, char* assertionConsumerServiceURL ) GType lasso_lib_authn_response_get_type ( ) LassoNode* lasso_lib_authn_response_new ( char* providerID, LassoLibAuthnRequest* request ) GType lasso_lib_federation_termination_notification_get_type ( ) LassoNode* lasso_lib_federation_termination_notification_new ( ) LassoLibFederationTerminationNotification* lasso_lib_federation_termination_notification_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_idp_entries_get_type ( ) LassoNode* lasso_lib_idp_entries_new ( ) GType lasso_lib_idp_entry_get_type ( ) LassoNode* lasso_lib_idp_entry_new ( ) GType lasso_lib_idp_list_get_type ( ) LassoNode* lasso_lib_idp_list_new ( ) GType lasso_lib_logout_request_get_type ( ) LassoNode* lasso_lib_logout_request_new ( ) LassoLibLogoutRequest* lasso_lib_logout_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_logout_response_get_type ( ) LassoNode* lasso_lib_logout_response_new ( ) LassoLibLogoutResponse* lasso_lib_logout_response_new_full ( char* providerID, const char* statusCodeValue, LassoLibLogoutRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_request_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_request_new ( ) LassoLibNameIdentifierMappingRequest* lasso_lib_name_identifier_mapping_request_new_full ( char* providerID, LassoSamlNameIdentifier* nameIdentifier, const char* targetNamespace, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_name_identifier_mapping_response_get_type ( ) LassoNode* lasso_lib_name_identifier_mapping_response_new ( ) LassoLibNameIdentifierMappingResponse* lasso_lib_name_identifier_mapping_response_new_full ( char* provideRID, const char* statusCodeValue, LassoLibNameIdentifierMappingRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_request_get_type ( ) LassoNode* lasso_lib_register_name_identifier_request_new ( ) LassoLibRegisterNameIdentifierRequest* lasso_lib_register_name_identifier_request_new_full ( const char* providerID, LassoSamlNameIdentifier* idpNameIdentifier, LassoSamlNameIdentifier* spNameIdentifier, LassoSamlNameIdentifier* oldNameIdentifier, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_register_name_identifier_response_get_type ( ) LassoNode* lasso_lib_register_name_identifier_response_new ( ) LassoLibRegisterNameIdentifierResponse* lasso_lib_register_name_identifier_response_new_full ( const char* providerID, const char* statusCodeValue, LassoLibRegisterNameIdentifierRequest* request, LassoSignatureType sign_type, LassoSignatureMethod sign_method ) GType lasso_lib_request_authn_context_get_type ( ) LassoLibRequestAuthnContext* lasso_lib_request_authn_context_new ( ) GType lasso_lib_scoping_get_type ( ) LassoLibScoping* lasso_lib_scoping_new ( ) GType lasso_lib_status_response_get_type ( ) LassoNode* lasso_lib_status_response_new ( ) GType lasso_lib_subject_get_type ( ) LassoLibSubject* lasso_lib_subject_new ( ) gint lasso_login_accept_sso ( LassoLogin* login ) gint lasso_login_build_artifact_msg ( LassoLogin* login, LassoHttpMethod http_method ) int lasso_login_build_assertion ( LassoLogin* login, const char* authenticationMethod, const char* authenticationInstant, const char* reauthenticateOnOrAfter, const char* notBefore, const char* notOnOrAfter ) gint lasso_login_build_authn_request_msg ( LassoLogin* login ) gint lasso_login_build_authn_response_msg ( LassoLogin* login ) gint lasso_login_build_request_msg ( LassoLogin* login ) gint lasso_login_build_response_msg ( LassoLogin* login, gchar* remote_providerID ) None lasso_login_destroy ( LassoLogin* login ) gchar* lasso_login_dump ( LassoLogin* login ) GType lasso_login_get_type ( ) gint lasso_login_init_authn_request ( LassoLogin* login, const gchar* remote_providerID, LassoHttpMethod http_method ) gint lasso_login_init_idp_initiated_authn_request ( LassoLogin* login, const gchar* remote_providerID ) gint lasso_login_init_request ( LassoLogin* login, gchar* response_msg, LassoHttpMethod response_http_method ) gboolean lasso_login_must_ask_for_consent ( LassoLogin* login ) gboolean lasso_login_must_authenticate ( LassoLogin* login ) LassoLogin* lasso_login_new ( LassoServer* server ) LassoLogin* lasso_login_new_from_dump ( LassoServer* server, const gchar* dump ) int lasso_login_process_authn_request_msg ( LassoLogin* login, const char* authn_request_msg ) gint lasso_login_process_authn_response_msg ( LassoLogin* login, gchar* authn_response_msg ) int lasso_login_process_paos_response_msg ( LassoLogin* login, gchar* msg ) gint lasso_login_process_request_msg ( LassoLogin* login, gchar* request_msg ) gint lasso_login_process_response_msg ( LassoLogin* login, gchar* response_msg ) int lasso_login_set_resourceId ( LassoLogin* login, const char* content ) int lasso_login_validate_request_msg ( LassoLogin* login, gboolean authentication_result, gboolean is_consent_obtained ) gint lasso_logout_build_request_msg ( LassoLogout* logout ) gint lasso_logout_build_response_msg ( LassoLogout* logout ) None lasso_logout_destroy ( LassoLogout* logout ) gchar* lasso_logout_dump ( LassoLogout* logout ) gchar* lasso_logout_get_next_providerID ( LassoLogout* logout ) GType lasso_logout_get_type ( ) gint lasso_logout_init_request ( LassoLogout* logout, gchar* remote_providerID, LassoHttpMethod request_method ) LassoLogout* lasso_logout_new ( LassoServer* server ) LassoLogout* lasso_logout_new_from_dump ( LassoServer* server, const gchar* dump ) gint lasso_logout_process_request_msg ( LassoLogout* logout, gchar* request_msg ) gint lasso_logout_process_response_msg ( LassoLogout* logout, gchar* response_msg ) gint lasso_logout_reset_providerID_index ( LassoLogout* logout ) gint lasso_logout_validate_request ( LassoLogout* logout ) GType lasso_misc_text_node_get_type ( ) LassoNode* lasso_misc_text_node_new ( ) LassoMiscTextNode* lasso_misc_text_node_new_with_string ( char* content ) gint lasso_name_id_management_build_request_msg ( LassoNameIdManagement* name_id_management ) int lasso_name_id_management_build_response_msg ( LassoNameIdManagement* name_id_management ) None lasso_name_id_management_destroy ( LassoNameIdManagement* name_id_management ) char* lasso_name_id_management_dump ( LassoNameIdManagement* name_id_management ) GType lasso_name_id_management_get_type ( ) gint lasso_name_id_management_init_request ( LassoNameIdManagement* name_id_management, char* remote_provider_id, char* new_name_id, LassoHttpMethod http_method ) LassoNameIdManagement* lasso_name_id_management_new ( LassoServer* server ) LassoNameIdManagement* lasso_name_id_management_new_from_dump ( LassoServer* server, const char* dump ) gint lasso_name_id_management_process_request_msg ( LassoNameIdManagement* name_id_management, gchar* request_msg ) gint lasso_name_id_management_process_response_msg ( LassoNameIdManagement* name_id_management, gchar* response_msg ) gint lasso_name_id_management_validate_request ( LassoNameIdManagement* name_id_management ) gint lasso_name_identifier_mapping_build_request_msg ( LassoNameIdentifierMapping* mapping ) gint lasso_name_identifier_mapping_build_response_msg ( LassoNameIdentifierMapping* mapping ) None lasso_name_identifier_mapping_destroy ( LassoNameIdentifierMapping* mapping ) GType lasso_name_identifier_mapping_get_type ( ) gint lasso_name_identifier_mapping_init_request ( LassoNameIdentifierMapping* mapping, gchar* targetNameSpace, gchar* remote_providerID ) LassoNameIdentifierMapping* lasso_name_identifier_mapping_new ( LassoServer* server ) gint lasso_name_identifier_mapping_process_request_msg ( LassoNameIdentifierMapping* mapping, gchar* request_msg ) gint lasso_name_identifier_mapping_process_response_msg ( LassoNameIdentifierMapping* mapping, gchar* response_msg ) gint lasso_name_identifier_mapping_validate_request ( LassoNameIdentifierMapping* mapping ) gint lasso_name_registration_build_request_msg ( LassoNameRegistration* name_registration ) gint lasso_name_registration_build_response_msg ( LassoNameRegistration* name_registration ) None lasso_name_registration_destroy ( LassoNameRegistration* name_registration ) gchar* lasso_name_registration_dump ( LassoNameRegistration* name_registration ) GType lasso_name_registration_get_type ( ) gint lasso_name_registration_init_request ( LassoNameRegistration* name_registration, char* remote_providerID, LassoHttpMethod http_method ) LassoNameRegistration* lasso_name_registration_new ( LassoServer* server ) LassoNameRegistration* lasso_name_registration_new_from_dump ( LassoServer* server, const char* dump ) gint lasso_name_registration_process_request_msg ( LassoNameRegistration* name_registration, gchar* request_msg ) gint lasso_name_registration_process_response_msg ( LassoNameRegistration* name_registration, gchar* response_msg ) gint lasso_name_registration_validate_request ( LassoNameRegistration* name_registration ) None lasso_node_destroy ( LassoNode* node ) char* lasso_node_dump ( LassoNode* node ) char* lasso_node_export_to_base64 ( LassoNode* node ) char* lasso_node_export_to_ecp_soap_response ( LassoNode* node, const char* assertionConsumerURL ) char* lasso_node_export_to_paos_request ( LassoNode* node, const char* issuer, const char* responseConsumerURL, const char* relay_state ) char* lasso_node_export_to_query ( LassoNode* node, LassoSignatureMethod sign_method, const char* private_key_file ) char* lasso_node_export_to_soap ( LassoNode* node ) gchar* lasso_node_export_to_xml ( LassoNode* node ) GType lasso_node_get_type ( ) xmlNode* lasso_node_get_xmlNode ( LassoNode* node, gboolean lasso_dump ) LassoMessageFormat lasso_node_init_from_message ( LassoNode* node, const char* message ) gboolean lasso_node_init_from_query ( LassoNode* node, const char* query ) int lasso_node_init_from_xml ( LassoNode* node, xmlNode* xmlnode ) LassoNode* lasso_node_new ( ) LassoNode* lasso_node_new_from_dump ( const char* dump ) LassoNode* lasso_node_new_from_soap ( const char* soap ) LassoNode* lasso_node_new_from_xmlNode ( xmlNode* node ) char* lasso_profile_get_artifact ( LassoProfile* profile ) char* lasso_profile_get_artifact_message ( LassoProfile* profile ) LassoIdentity* lasso_profile_get_identity ( LassoProfile* profile ) LassoNode* lasso_profile_get_nameIdentifier ( LassoProfile* profile ) LassoRequestType lasso_profile_get_request_type_from_soap_msg ( const gchar* soap ) LassoSession* lasso_profile_get_session ( LassoProfile* profile ) GType lasso_profile_get_type ( ) gboolean lasso_profile_is_identity_dirty ( LassoProfile* profile ) gboolean lasso_profile_is_liberty_query ( const gchar* query ) gboolean lasso_profile_is_saml_query ( const gchar* query ) gboolean lasso_profile_is_session_dirty ( LassoProfile* profile ) None lasso_profile_set_artifact_message ( LassoProfile* profile, char* message ) gint lasso_profile_set_identity_from_dump ( LassoProfile* profile, const gchar* dump ) gint lasso_profile_set_session_from_dump ( LassoProfile* profile, const gchar* dump ) gboolean lasso_provider_accept_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type, LassoHttpMethod http_method, gboolean initiate_profile ) gchar* lasso_provider_get_assertion_consumer_service_url ( LassoProvider* provider, const char* service_id ) gchar* lasso_provider_get_base64_succinct_id ( LassoProvider* provider ) LassoHttpMethod lasso_provider_get_first_http_method ( LassoProvider* provider, LassoProvider* remote_provider, LassoMdProtocolType protocol_type ) GList* lasso_provider_get_metadata_list ( LassoProvider* provider, const char* name ) gchar* lasso_provider_get_metadata_one ( LassoProvider* provider, const char* name ) xmlNode* lasso_provider_get_organization ( LassoProvider* provider ) LassoProtocolConformance lasso_provider_get_protocol_conformance ( LassoProvider* provider ) GType lasso_provider_get_type ( ) gboolean lasso_provider_has_protocol_profile ( LassoProvider* provider, LassoMdProtocolType protocol_type, const char* protocol_profile ) LassoProvider* lasso_provider_new ( LassoProviderRole role, const char* metadata, const char* public_key, const char* ca_cert_chain ) LassoProvider* lasso_provider_new_from_dump ( const gchar* dump ) None lasso_provider_set_encryption_mode ( LassoProvider* provider, LassoEncryptionMode encryption_mode ) None lasso_provider_set_encryption_sym_key_type ( LassoProvider* provider, LassoEncryptionSymKeyType encryption_sym_key_type ) None lasso_register_dst_service ( const char* prefix, const char* href ) None lasso_register_idwsf2_dst_service ( const gchar* prefix, const gchar* href ) GType lasso_saml2_action_get_type ( ) LassoNode* lasso_saml2_action_new ( ) LassoSaml2Action* lasso_saml2_action_new_with_string ( char* content ) GType lasso_saml2_advice_get_type ( ) LassoNode* lasso_saml2_advice_new ( ) GType lasso_saml2_assertion_get_type ( ) LassoNode* lasso_saml2_assertion_new ( ) GType lasso_saml2_attribute_get_type ( ) LassoNode* lasso_saml2_attribute_new ( ) GType lasso_saml2_attribute_statement_get_type ( ) LassoNode* lasso_saml2_attribute_statement_new ( ) GType lasso_saml2_attribute_value_get_type ( ) LassoSaml2AttributeValue* lasso_saml2_attribute_value_new ( ) GType lasso_saml2_audience_restriction_get_type ( ) LassoNode* lasso_saml2_audience_restriction_new ( ) GType lasso_saml2_authn_context_get_type ( ) LassoNode* lasso_saml2_authn_context_new ( ) GType lasso_saml2_authn_statement_get_type ( ) LassoNode* lasso_saml2_authn_statement_new ( ) GType lasso_saml2_authz_decision_statement_get_type ( ) LassoNode* lasso_saml2_authz_decision_statement_new ( ) GType lasso_saml2_base_idabstract_get_type ( ) LassoNode* lasso_saml2_base_idabstract_new ( ) GType lasso_saml2_condition_abstract_get_type ( ) LassoNode* lasso_saml2_condition_abstract_new ( ) GType lasso_saml2_conditions_get_type ( ) LassoNode* lasso_saml2_conditions_new ( ) GType lasso_saml2_encrypted_element_get_type ( ) LassoNode* lasso_saml2_encrypted_element_new ( ) GType lasso_saml2_evidence_get_type ( ) LassoNode* lasso_saml2_evidence_new ( ) GType lasso_saml2_key_info_confirmation_data_get_type ( ) LassoNode* lasso_saml2_key_info_confirmation_data_new ( ) GType lasso_saml2_name_id_get_type ( ) LassoNode* lasso_saml2_name_id_new ( ) LassoSaml2NameID* lasso_saml2_name_id_new_with_string ( char* content ) GType lasso_saml2_one_time_use_get_type ( ) LassoNode* lasso_saml2_one_time_use_new ( ) GType lasso_saml2_proxy_restriction_get_type ( ) LassoNode* lasso_saml2_proxy_restriction_new ( ) GType lasso_saml2_statement_abstract_get_type ( ) LassoNode* lasso_saml2_statement_abstract_new ( ) GType lasso_saml2_subject_confirmation_data_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_data_new ( ) GType lasso_saml2_subject_confirmation_get_type ( ) LassoNode* lasso_saml2_subject_confirmation_new ( ) GType lasso_saml2_subject_get_type ( ) GType lasso_saml2_subject_locality_get_type ( ) LassoNode* lasso_saml2_subject_locality_new ( ) LassoNode* lasso_saml2_subject_new ( ) GType lasso_saml_advice_get_type ( ) LassoNode* lasso_saml_advice_new ( ) GType lasso_saml_assertion_get_type ( ) LassoSamlAssertion* lasso_saml_assertion_new ( ) GType lasso_saml_attribute_designator_get_type ( ) LassoNode* lasso_saml_attribute_designator_new ( ) GType lasso_saml_attribute_get_type ( ) LassoSamlAttribute* lasso_saml_attribute_new ( ) GType lasso_saml_attribute_statement_get_type ( ) LassoSamlAttributeStatement* lasso_saml_attribute_statement_new ( ) GType lasso_saml_attribute_value_get_type ( ) LassoSamlAttributeValue* lasso_saml_attribute_value_new ( ) GType lasso_saml_audience_restriction_condition_get_type ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new ( ) LassoSamlAudienceRestrictionCondition* lasso_saml_audience_restriction_condition_new_full ( const char* audience ) GType lasso_saml_authentication_statement_get_type ( ) LassoNode* lasso_saml_authentication_statement_new ( ) GType lasso_saml_authority_binding_get_type ( ) LassoNode* lasso_saml_authority_binding_new ( ) GType lasso_saml_condition_abstract_get_type ( ) GType lasso_saml_conditions_get_type ( ) LassoSamlConditions* lasso_saml_conditions_new ( ) GType lasso_saml_name_identifier_get_type ( ) LassoSamlNameIdentifier* lasso_saml_name_identifier_new ( ) assoSamlNameIdentifier* lasso_saml_name_identifier_new_from_xmlNode ( xmlNode* node ) GType lasso_saml_statement_abstract_get_type ( ) GType lasso_saml_subject_confirmation_get_type ( ) LassoSamlSubjectConfirmation* lasso_saml_subject_confirmation_new ( ) GType lasso_saml_subject_get_type ( ) GType lasso_saml_subject_locality_get_type ( ) LassoNode* lasso_saml_subject_locality_new ( ) LassoNode* lasso_saml_subject_new ( ) GType lasso_saml_subject_statement_abstract_get_type ( ) GType lasso_saml_subject_statement_get_type ( ) LassoNode* lasso_saml_subject_statement_new ( ) GType lasso_samlp2_artifact_resolve_get_type ( ) LassoNode* lasso_samlp2_artifact_resolve_new ( ) GType lasso_samlp2_artifact_response_get_type ( ) LassoNode* lasso_samlp2_artifact_response_new ( ) GType lasso_samlp2_assertion_idrequest_get_type ( ) LassoNode* lasso_samlp2_assertion_idrequest_new ( ) GType lasso_samlp2_attribute_query_get_type ( ) LassoNode* lasso_samlp2_attribute_query_new ( ) GType lasso_samlp2_authn_query_get_type ( ) LassoNode* lasso_samlp2_authn_query_new ( ) GType lasso_samlp2_authn_request_get_type ( ) LassoNode* lasso_samlp2_authn_request_new ( ) GType lasso_samlp2_authz_decision_query_get_type ( ) LassoNode* lasso_samlp2_authz_decision_query_new ( ) GType lasso_samlp2_extensions_get_type ( ) LassoNode* lasso_samlp2_extensions_new ( ) GType lasso_samlp2_idp_entry_get_type ( ) LassoNode* lasso_samlp2_idp_entry_new ( ) GType lasso_samlp2_idp_list_get_type ( ) LassoNode* lasso_samlp2_idp_list_new ( ) GType lasso_samlp2_logout_request_get_type ( ) LassoNode* lasso_samlp2_logout_request_new ( ) GType lasso_samlp2_logout_response_get_type ( ) LassoNode* lasso_samlp2_logout_response_new ( ) GType lasso_samlp2_manage_name_id_request_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_request_new ( ) GType lasso_samlp2_manage_name_id_response_get_type ( ) LassoNode* lasso_samlp2_manage_name_id_response_new ( ) GType lasso_samlp2_name_id_mapping_request_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_request_new ( ) GType lasso_samlp2_name_id_mapping_response_get_type ( ) LassoNode* lasso_samlp2_name_id_mapping_response_new ( ) GType lasso_samlp2_name_id_policy_get_type ( ) LassoNode* lasso_samlp2_name_id_policy_new ( ) GType lasso_samlp2_request_abstract_get_type ( ) LassoNode* lasso_samlp2_request_abstract_new ( ) GType lasso_samlp2_requested_authn_context_get_type ( ) LassoNode* lasso_samlp2_requested_authn_context_new ( ) GType lasso_samlp2_response_get_type ( ) LassoNode* lasso_samlp2_response_new ( ) GType lasso_samlp2_scoping_get_type ( ) LassoNode* lasso_samlp2_scoping_new ( ) GType lasso_samlp2_status_code_get_type ( ) LassoNode* lasso_samlp2_status_code_new ( ) GType lasso_samlp2_status_detail_get_type ( ) LassoNode* lasso_samlp2_status_detail_new ( ) GType lasso_samlp2_status_get_type ( ) LassoNode* lasso_samlp2_status_new ( ) GType lasso_samlp2_status_response_get_type ( ) LassoNode* lasso_samlp2_status_response_new ( ) GType lasso_samlp2_subject_query_abstract_get_type ( ) LassoNode* lasso_samlp2_subject_query_abstract_new ( ) GType lasso_samlp2_terminate_get_type ( ) LassoNode* lasso_samlp2_terminate_new ( ) GType lasso_samlp_request_abstract_get_type ( ) GType lasso_samlp_request_get_type ( ) LassoNode* lasso_samlp_request_new ( ) None lasso_samlp_response_abstract_fill ( LassoSamlpResponseAbstract* response, const char* InResponseTo, const char* Recipient ) GType lasso_samlp_response_abstract_get_type ( ) GType lasso_samlp_response_get_type ( ) LassoNode* lasso_samlp_response_new ( ) GType lasso_samlp_status_code_get_type ( ) LassoSamlpStatusCode* lasso_samlp_status_code_new ( ) GType lasso_samlp_status_get_type ( ) LassoSamlpStatus* lasso_samlp_status_new ( ) gint lasso_server_add_provider ( LassoServer* server, LassoProviderRole role, const gchar* metadata, const gchar* public_key, const gchar* ca_cert_chain ) gint lasso_server_add_service ( LassoServer* server, LassoNode* service ) gint lasso_server_add_service_from_dump ( LassoServer* server, const gchar* dump ) None lasso_server_destroy ( LassoServer* server ) gchar* lasso_server_dump ( LassoServer* server ) LassoProvider* lasso_server_get_provider ( LassoServer* server, const gchar* providerID ) GType lasso_server_get_type ( ) int lasso_server_load_affiliation ( LassoServer* server, const gchar* filename ) LassoServer* lasso_server_new ( const gchar* metadata, const gchar* private_key, const gchar* private_key_password, const gchar* certificate ) LassoServer* lasso_server_new_from_dump ( const gchar* dump ) int lasso_server_set_encryption_private_key ( LassoServer* server, const gchar* filename ) None lasso_session_destroy ( LassoSession* session ) gchar* lasso_session_dump ( LassoSession* session ) GList* lasso_session_get_assertions ( LassoSession* session, const char* provider_id ) gchar* lasso_session_get_provider_index ( LassoSession* session, gint index ) GType lasso_session_get_type ( ) gboolean lasso_session_is_empty ( LassoSession* session ) LassoSession* lasso_session_new ( ) LassoSession* lasso_session_new_from_dump ( const gchar* dump ) int lasso_shutdown ( ) const char* lasso_strerror ( int error_code ) lasso-2.9.0/PaxHeaders/.tarball-version0000644000000000000000000000013215046611655015037 xustar0030 mtime=1754993581.137009191 30 atime=1754993581.137009191 30 ctime=1754993581.137009191 lasso-2.9.0/.tarball-version0000664000175000017500000000000615046611655017045 0ustar00bdauvergnebdauvergne2.9.0 lasso-2.9.0/PaxHeaders/missing0000644000000000000000000000007414767572401013337 xustar0030 atime=1754992895.671236772 30 ctime=1754993575.193133678 lasso-2.9.0/missing0000755000175000017500000001706014767572401015351 0ustar00bdauvergnebdauvergne#! /bin/sh # Common wrapper for a few potentially missing GNU and other programs. scriptversion=2024-06-07.14; # UTC # shellcheck disable=SC2006,SC2268 # we must support pre-POSIX shells # Copyright (C) 1996-2024 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # 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, 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try '$0 --help' for more information" exit 1 fi case $1 in --is-lightweight) # Used by our autoconf macros to check whether the available missing # script is modern enough. exit 0 ;; --run) # Back-compat with the calling convention used by older automake. shift ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due to PROGRAM being missing or too old. Options: -h, --help display this help and exit -v, --version output version information and exit Supported PROGRAM values: aclocal autoconf autogen autoheader autom4te automake autoreconf bison flex help2man lex makeinfo perl yacc Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and 'g' are ignored when checking the name. Report bugs to . GNU Automake home page: . General help using GNU software: ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing (GNU Automake) $scriptversion" exit $? ;; -*) echo 1>&2 "$0: unknown '$1' option" echo 1>&2 "Try '$0 --help' for more information" exit 1 ;; esac # Run the given program, remember its exit status. "$@"; st=$? # If it succeeded, we are done. test $st -eq 0 && exit 0 # Also exit now if we it failed (or wasn't found), and '--version' was # passed; such an option is passed most likely to detect whether the # program is present and works. case $2 in --version|--help) exit $st;; esac # Exit code 63 means version mismatch. This often happens when the user # tries to use an ancient version of a tool on a file that requires a # minimum version. if test $st -eq 63; then msg="probably too old" elif test $st -eq 127; then # Program was missing. msg="missing on your system" else # Program was found and executed, but failed. Give up. exit $st fi perl_URL=https://www.perl.org/ flex_URL=https://github.com/westes/flex gnu_software_URL=https://www.gnu.org/software program_details () { case $1 in aclocal|automake|autoreconf) echo "The '$1' program is part of the GNU Automake package:" echo "<$gnu_software_URL/automake>" echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/autoconf>" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; autoconf|autom4te|autoheader) echo "The '$1' program is part of the GNU Autoconf package:" echo "<$gnu_software_URL/autoconf/>" echo "It also requires GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; *) : ;; esac } give_advice () { # Normalize program name to check for. normalized_program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` printf '%s\n' "'$1' is $msg." configure_deps="'configure.ac' or m4 files included by 'configure.ac'" autoheader_deps="'acconfig.h'" automake_deps="'Makefile.am'" aclocal_deps="'acinclude.m4'" case $normalized_program in aclocal*) echo "You should only need it if you modified $aclocal_deps or" echo "$configure_deps." ;; autoconf*) echo "You should only need it if you modified $configure_deps." ;; autogen*) echo "You should only need it if you modified a '.def' or '.tpl' file." echo "You may want to install the GNU AutoGen package:" echo "<$gnu_software_URL/autogen/>" ;; autoheader*) echo "You should only need it if you modified $autoheader_deps or" echo "$configure_deps." ;; automake*) echo "You should only need it if you modified $automake_deps or" echo "$configure_deps." ;; autom4te*) echo "You might have modified some maintainer files that require" echo "the 'autom4te' program to be rebuilt." ;; autoreconf*) echo "You should only need it if you modified $aclocal_deps or" echo "$automake_deps or $autoheader_deps or $automake_deps or" echo "$configure_deps." ;; bison*|yacc*) echo "You should only need it if you modified a '.y' file." echo "You may want to install the GNU Bison package:" echo "<$gnu_software_URL/bison/>" ;; help2man*) echo "You should only need it if you modified a dependency" \ "of a man page." echo "You may want to install the GNU Help2man package:" echo "<$gnu_software_URL/help2man/>" ;; lex*|flex*) echo "You should only need it if you modified a '.l' file." echo "You may want to install the Fast Lexical Analyzer package:" echo "<$flex_URL>" ;; makeinfo*) echo "You should only need it if you modified a '.texi' file, or" echo "any other file indirectly affecting the aspect of the manual." echo "You might want to install the Texinfo package:" echo "<$gnu_software_URL/texinfo/>" echo "The spurious makeinfo call might also be the consequence of" echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" echo "want to install GNU make:" echo "<$gnu_software_URL/make/>" ;; perl*) echo "You should only need it to run GNU Autoconf, GNU Automake, " echo " assorted other tools, or if you modified a Perl source file." echo "You may want to install the Perl 5 language interpreter:" echo "<$perl_URL>" ;; *) echo "You might have modified some files without having the proper" echo "tools for further handling them. Check the 'README' file, it" echo "often tells you about the needed prerequisites for installing" echo "this package. You may also peek at any GNU archive site, in" echo "case some other package contains this missing '$1' program." ;; esac program_details "$normalized_program" } give_advice "$1" | sed -e '1s/^/WARNING: /' \ -e '2,$s/^/ /' >&2 # Propagate the correct exit status (expected to be 127 for a program # not found, 63 for a program that failed due to version mismatch). exit $st # Local variables: # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: lasso-2.9.0/PaxHeaders/logos0000644000000000000000000000013113766621500012774 xustar0029 mtime=1608196928.93089668 30 atime=1754993581.145009024 30 ctime=1754993575.213133259 lasso-2.9.0/logos/0000755000175000017500000000000013766621500015062 5ustar00bdauvergnebdauvergnelasso-2.9.0/logos/PaxHeaders/lasso-233x66.png0000644000000000000000000000013113766621500015551 xustar0029 mtime=1608196928.93089668 30 atime=1754992978.161544647 30 ctime=1754993575.213133259 lasso-2.9.0/logos/lasso-233x66.png0000644000175000017500000003115313766621500017565 0ustar00bdauvergnebdauvergne‰PNG  IHDRéB=Žf™22IDATxÚíy˜]ÅuàÏ©ª»¾µ©[ûÖ BÄ"@f³18ÁØŒÇvˆLÛ3‰ãñÄó!±ãŒíØÎÌ$ñ*Ìbl#À`0/,ƒ¡íûÞ{¿ýÝ¥êÌõÞíÛ¯ŸZÝHò’Q©¿Öë»þ^Õ©sOsª.œ-gËï`a¿i€³åly›å¬ìž-¿«Eü¦þ]•¦"þÿÆÐ”ä´3àY{÷ËÛ®ÀÓØ–¿ Å8õ[ŸDv=’=ö×8ËðëÄø`¨Öå7¥Œãп» ñ³Þžvù÷Á?ñÔšìmÀ:kBL´D5¦?Œaäèó¿†qbD7ÿÝOtäÙ=‘àž9ÿø-dˆZht‰_ë¥a ¼­†lÀ˜É>œ"ÃzcC=Œ®ñ´Åè]ò;Z8â@pº¥çD5ø»Â5ª)¥þ—DdŒE¿GÿÙÐc4^`´¬DúwS††§…áDQUhÙîÈãœ7Ü:Ž:CÃFožÑ”AT§Ez"èÑ Ù”!NòÛÀm‘RJ)Ã0 ‚ Ã0 •R†a!8çú€0 £–ãœsÎõ^Ý„‘ 5Óx"YÑwÑúO!„ašA)Áia-Q‰cèaè«I)‰HÔKtëÑ q"††ÒÄ¿GÔºD¬cËÄÄ{XT‰Q=2Æ¢cF×È„Æ i`ÐQCrÎOÊ©7)eAxžçû¾mÛ---BŒ¨Õ †††Ž= ³fÍ✠ÄE¼A˜â #º]CUè ÃÐ÷}ß÷=Ï3MS3˜¦gÃ0—Ë;vÌ÷ýÙ³g†144AÄݽAªâ ‘<èß*V¢ž£I„---¶mÇ1<ÏËç󃃃Ñ×BÄõñ 3?j-8Z"šÅó¼ro/îÙ•*ŒÑ¨éÇúÝjÿéþÅ…àíÖ‚.7“1M3úñÓ Z8Êýý´g+–âcè·CR.1Ƹ༽Õ\Ðå¶´h†¨5eÈ•Šj„¼ e„¾T«-—œôiÓô‰M‹nlÃ0 T*½°ùAÓ’†!¸B‹·fŒ™DëØ ºä˃ùpÄ!Ê0žxU_zîÅçÜ8{öl-úM‹¾”}ß~ÃCh” Cƒ n˜"›6ægÝvÓ4µÎŽˆ(ê$º •|>Ü#q@))CÒ÷Ï È.=gÕ¬Y³Ä®¡*Ž=ºõà‹` ç‚sÎ8ãœsC¤Ób~K¢#Îp"›¸QïêÊ ÃÐó¼jµZ.—s==ðÀÃm¯m5 QäGÛ†¤üw‚ sB¶¥s7¯J\w㺺iQ3ø¾¯òám{qƒ% …Î"j)ŒD˜F±h£9  ÎÐ*“Ì_¥só n2UPC®0tЄµ­3PIèWUEIPÓo¼øKmÙαp‘BÛ¶ƒÄËÒ9Z\pƘ¨¢ÈQÊ)\5Ã~wÒMŤ”ÃõPȨ>m¿4Ó>E ¤Â°eÕùÿ8mòܱ"Õ†aPú­ªxMZœ Ư¢‘§Doñ²Ö{RnVknDÔ‚«*•J¡X8Pþ©jyÖJU€¸ Yà“WUU%-vþu—Ü•MµŸ´*¦OŸžn½áWï)ñ͆Ʉ@ÆCÎPÀí-.›nÞ–I´i†uþ¹Ï}®ApueU*•B¡Ð{ø0»ëKv  ‘rÀ 8§á¦ˆ)B¥@JC $…!œðG‚” 1_Ší{+å<[¸€s®)µ¦©T*Åb±¿»;üüW§¼¸Q„ €1NÄë¿£P)%„ÂByB¥€ˆ…Jì9èõtÃçr!tƒi3±Z­ …þ¾íþ—Ý©/p*Ea(½jP.ú¥‚xǹ_îlŸ¼J)ûûû»ûŽW«ži˜Ñ—Š—·Ž<¢xãPJ`L’8ó$ÕùB£ëa`p`[ùŸéÏr(Ea ½jX.ùż¼|î=s§]Ððˆ<Þw¬\ªœˆaDZg=Ø‹\"“€ €*2ŽäÂ}®\lpSŸÕC±XÚšÿ†9ýqaú¤H†Ê÷ÃjÅ/=œ{óÒ/fR­q ß÷uíé?Z©Tmˉ¤mÓ’ºâ`ÿ_&%$†DÆñœÜa‹MaG¶ïIôn\é–J¥\.—ÿö}çî8„–É”D `ŒsŽÃ]µžÓ6²”*”* e(¥’RÀþEDÎ @*°þjqþ<±â gèûþÃç¾¾ FÀAÈ8rÎ9C8Â:Ô$¡”¡"m™‘ä5’ "g$ ”ŠØë·”ç¿hܰJ›C>Ÿß>ðpfÑ«–T¨BéûP©¨bQÎL½oFÇüèîžçýüW?xuëƒùÊ~"O)aóÎÅóÞý®«ÿ8›ÉÆ CV¸äÀ)ÎYJ°¶.ÿl®ñ®HáyžW.—óùüöÞ'“‹ž'0¥B%e@¥ªJEÙ"n:gæ%ÑŃ X÷ÆOÖm\=PÜITUЬ}ÑÌëo¾úÏ&OêÉ }¨pÉ‘3BΘ ÍÝG*OÚÆíŒ1Ý}ß× ;ºa-ø) )”A€^EUŠ*(w¼{ù=©D&j…|!ÿ³WîݰsM%8B$Iqל~тۮ¿üRÉ”ÆHØ©ËfüÏŸïû¨ÂLN`“ˆ‹Ã‡«ºþh³!néFŸ‡e7¢éNV*•ºh{ñ hŒY°›Û6&È ª" ‚0¤ PÕªW…ª”R(¥R'ð#@È@J"` ‘1|öoéÝÏ"†¾ãÇÝg×I"¡$(ň¢Å…eÛܲÁ4 mÃÄH…Òò½°Z­ù¡ ¤$©Fw"B€!”@D 1þ³+W^¦Ÿ­zV*•úúû*‰§Ó(â X(•ïSµ"Ë%\|îmqÁýׇ?ydða€“B"¡øû_Þöõ-{Öþ×oò¤ŽèÖRJR$ň!…@’€€•ŒçK•«u›E²;88X°žLj ¥d¾OÕŠ*—ä‹n‹,0 ï{âîíGïç‚j 2¼#ö~ç­}kÿüŽÕ³gvEÀJ*‰$Å ‘P@¨«¿*”¯ã¼s1är¹þÄTá+Å@±0 ߣJY °rÞgÚ²‘ í9°íÁg?Y ÷0 ˆ@…ì]÷Ö?nÜýã;oþêÜY 5FK²cQë_lü0d’@C@®¬×†Jï4Œ©ú¡1ú¹qB½[.—û·mŸáIgÌ4 '‘(8ÖSƒ=y ¨[½#dWÊÀ;³i†$¥ %‘Ä1ÜXsþ‘à`bÿ‘J>oF$7•J¥oïÞ®\I¡àŒY†á¸nѱŸÍõ–€s` ë6/"¡#Õ--.2P¤¤$¨©ÞÑ ô5ƒq¬¯Ô×oÙvÔf•JåøÀ³«_)¦M bè+ß“äOélŸUݺ7ë)?“Ì2ÃDÆ„y`\ËÛyöŸþä?üý°Ü!‘""¦(@E\ÁÄ`¾x̵]Í u^Ïà1>õ˜R ™E2Ta@¾'ýª3}Ò¢èÛlÚñÒîÞ0-Î8Õ*eU-úÁÓ÷Wüía €JäŒ Î ¹ò¡¤“ÑýAÛ}ƒ}ÐrP*T$U€WU•²Ìð«Ï»:rÎì?¼óŸ„¬ÞTš È€„!ùUåUU¹²ãÝù±÷>8sÚ\-‘çt^³«yàÿŠ1BH ˆ+28²|°·Uv(¥´³¯¹·Avµa^ÒÊ9·L«ã²Ÿ¯9T)˜eŠí¾qÕ­m– ñÕ:RJC Cô¿RÑ^@íå¨V«åA$PÀ9ç¦iör\þó‡OJòßÎ]öù®%¶”2 •”ÔÌóD IaˆAB¥’”R·YÍÞ-å\ RDŒH‘R†ødPkܶ¿g›bn‚›62¤ TµŒ\ 28ÐóR†z0JDD &BBPRQ¨0dú²1è¡}¡”'’ZàH)!…¾RAÒ¶ì¨ùöu¿ä¦ÀMrÓaœ#„>UmÅ ‰=Å …b!“®=Ù¥ª ¬1H¢Paˆ ”RjûM3K9•ñ•$ÆHJ |åWTµלÿÇÑ0´\.­yñSF¢ÏNpËf¨Ën@^+%¬pU)¿ïÉOýŇp„ Ûï|£ïWÜ ÆC¥($ ¥'óZF .ÄsϵvŒd¾ïaH ý ‚?Ñ{ä¤âǪå'z°fÞfâiJE1/fä ‚0îcŒ1!~Ü{x<$÷îßî'Âq´·e,"PDJRaŒ¡î( ”ÒD¤@I!Uý¢R*ºF*Ñb;ÌN0'ÉÜ$K¤X"ÅižHóDŠ+óÈîoéfè:æÃ¡Ús¡Þ§@I÷"k†À÷k:ºÖåAI’’‚ ¢¥\—¤Ûji†sSÌM17Íi¦1L7¿mï+š!_ÊýÈ"7#QÔ$†+!¾û¾¯$‘‚zÏ!¯ªL5þŒ #zaãƒØ–ÌòTV$³<™©ÿdy*+RžH1Ûe•7ž{mMô@žÓ¾‚é2$¥H‘"PµöPcyôõnä…–RJ%Io"‚6Ó:©¸èÒnÚÐü~ѱ­~“xÔªÖrj¤¾$¢vÆq”cåâOû¾'ÑjV*¾ïëøÖ ¨H_™F2DíÔè#‚Š×W.—Òé â²sî8öæ9/sŽB G D„L=úòŸ/ëÿC˶v<$ÜJ}œ©ë‚ê†W­âEJ†Ò b ©Šƒ¹¾D"¡.šÿî]ý÷2ÞÇrˆÀFâŽ(ŸÝø×¥]©d˾ÁÇÉ:Î8o¦aˆ`Dü¬Þ•¥FTŠdO~•ºÚ¯Õ(WÊ[Þ輦›âŽË «Æ@ ¤$.€” Cùòæï\³ü½:xašædçʾðA% xÝ× ¤Ôp@wt›±QÔñ}ÍGª¤’AðîÖ)ŸœAÚ0MÎM.XÜm`raržÆŸÎ;ï–¶)aœè®c”x±FPSlDDJ*Á-mS>Ùµ¸Å´ÂHfÂ4-a4½à·wm&×å–¥ãa ‘E)E*Ò‹5»…ƒ[v¿}ÇÙSÞ´øß’ü²0°Â” Bކ‰–ÃÜ$cÎñ G¾°áÈßJ¾[˜È2-¹#E‡ @×C¼.õX½M»1LjrËÅßl1VIß•) z(, ´t’ÜH m9þ•×ÿM7&ÓöLíKÅûf³Ä¥TMv%ÈŸ|fNvqì9òXG³]f:̰˜0PL˜hX̲™í0ÇeN‚Y–ÂÝ»¼Uÿ:Ø‘\.C"U뾺Á#Цít˜0ii ¢P†žçñRéŸ,ý_Ë®)'ÐÚúþGV?³s‹>eñ”Ïÿá§P0ò™Ïk=7añJÑ:<†žç¹¥Ò?-Xú•¥+Ãd2ȶܵæÑÑ×{úàîc+äÛ6 Ã÷}­BÆÏ« ¨‡ã0\ 7ðùÿr᢫]ÇÕ 0ÆÅó¦}k ßÓ]Ø:XÞ>TÙ=$÷t„ó’i™À˜3fÈy-ÀÒ,:ؘ¥ÿ!ã( ×ïX}Ùâ÷´¶´i†Y gLþçÁBOaÛ@iÛ`ewÎßãÓ!Æ ¦¥È@ÆÁ´˜å0ÃD=ÐmŽp‚άMRP-ó¢Ãõ¿b9hÙÌ´PÈ9êQ4hcեР™å‘YaFEî>ü«ó,ÕUÐêvɦŸyø1eg¬ùj5]W÷ða¹l¥2ˆà&DÌÔcD™ª¥2 åÂB¡Z©xž§­ì n¬²FTY}{D¶RF˜R¡e}ÿµuÑé]SwwÕŸ=)Ü¿ý/§Í7,Kxމ͆F©iÒÝkz9Ga a¡ia¾¼ñáµ_¾ã¦OGQ(Îù¤–)“Z¦­)e¡”;žÛy°oÝÁÁg?hXh˜È²˜±IÍ7` ç… 0B a1Óbùò¬½ëÞýy×MÔšƒ±¶Ì¤¶Ì$¢«4C©RìÎí>Ô÷òþµî2,0Lä2ÙÜØ cd7†šmJ?÷e:•ÌDÇ•÷˜& ¹¨÷Šú£Ž1 Â@ÃD]ÂÀã;¢sSv»’¶RU3 /'yŒj!RJ…aày^¥\‹E( T9,» ”JP(Èb±R.{ž÷v”nLÛ4ñÅ“Ô\WA¹Lå2T«ÏïÙ±w 7:ò+w|tNû°'õ»;6*Çfu³áäÃÇ@†À8 M‹Ù.³]¶åð7¿µæ¯úú{˜õPLÑ’i[4sÅ ý凮xô¢i+X»VÞú9±«ŸHn8Õúi¡fØßÿãÿû£9vðD ™TvÁôe«–üù‡®üáe³¿bòÃVÇIcÔfU)‚§"z²—º[F]¢þíC¦É ¹€ª?]Ö†R–¶`|â{rFúÎ|Ï#ÏߊÉ.ø>yžïy:ð‚Û̾o©£Ñ·”ˆqõ–×¢ƒfd[o˜>ï΋/¶léïYŸ@Û6LóD^îq–È`Z6: ›dýòƒï~dí?<²? æ2‡ˆŽí.ïºýº®ïr5S[¢Ã4î>Ž:„ƒ0д™í2ÍÐW~þë?ºõÁŸ|aÏþA4}D´LkÉìß¹ð^Î×NƒñÜyXûB4¬ÕÑô‘Y2LÕB®¬þ˜ŠUÔkqäGg#%¨QëŽE7ž9î5ÓYÕ冤D-7ñ¢Ä’¯ßžµ0¡‚ŒC¤Ù³5Úøó.6 …Ÿsá=k ëVÍwvm¾tñåÂ4…º_Â]1ä ‹Y”$`¼J÷+»ÿ×ËÛ¿žqÌì¸xÆäÅS'-ìhŸžJ¦âÊ;[æ^¦¾ôÒÑ?䢢pÄšwu" ˆÀ&Z.Ó‘KÆÑ«ä6ú— {¿•´æÍœ¼tFÇ’©“v¶ÏL§Òq!"¶¦:®šý¥ŸøýŒëN9†úhH©Õ23¡VçÍ®Uß‚Èj1Y!†=WRJ"oüŒKv£.·½F‹æHƒ~"â0á¢ÍJahYkí.ø^T;^°r¹9ܸvf×Úý;õöìÞú¥¥+]Û6Êeß÷OjòŽÃDr`mø*ðƒj°eÛÑ-[’’”Î:sfu.»èœw-ša”˜;£mQgÿí=Á½Œ#cµàÄ„žúá¡”Às4-ô=2vììÞ±íèJ"¨DÊš5³ãâ æßxÁÂK£L½öô´9Éî«|‘sDŒbÌÉo_û?ùR¹¨ý\ˆ˜ug÷ªWN^³u‡c{fN´­T*j…ñ®‹3†%ª·Žµw¸ºßþó:VoÈBpÓ$ÇY½sS´kyçŒóœäóX(|ôÜ¥ÑöA¯òè‘}è8F=Kx‚#<«uŒV~ܲ…›äÉ,O·ˆL«H·‰T Oey"ƒ–›Ï‡o¾±÷ÿöãÛ¿ñƒÏz^½!vµÝúLÉ wtýÔ®9͈€ nÚÂI²d†§[yºU¤[Eº•§²<™F+Q*«·6X½ú©~ý¾OŠ…ˆaþ¤wI?)%‘¢zÞèx› –‹•ž#Ñ;2‘Rõ'?à®Û:JÁ¬ÎeQC !z8‘>|Æ×tЦH°XyûŒˆ 9ç†a€mïòË뎌v~xÑEèyP­BµzëÌ®v'íúîÎMä8üíŽØj>:EJ‚ !ô)ð©MÜúŽy^7ÿG“RW9.K¤yª…gZE¶MdÚE¦M¤[E2ÃÝ3LùÖÁûŸ{õ±HP'§gRÐ)Cm5N ¥–gPàS’­¼föo\ðØ´Ì{l—%R<•™V‘iÙ6‘Ö Yî&™iÓ¾Þ§žzî[C&ÑjÒ¼šWuœÕýÚretàøÃá±I+H¦”U‹²Œ¬@-²”$S- g_ZÛKtlp2ˆFxãiž3+»‘à†aY–eYz¦ÇÛ_¬Ç8ç²Ðqîß»MÖ+Îâý‹.ŒÁåâç «Þ_Ù·?ðÀ¶u®Ï„îsÒŽã{UV¦¬ìúÓÛºfM^tåÜ¿á¶æ&y"]ÓÁé‘Ö 8Ím— ·ïÿEtM!„‰S”"RÃÏГ2PMp)ô•_U^9qŬ»fMZ4½½ëêùŸb’i37ÉžÊòT‹H·j‘ÈpÛe†;>GÃî6tùt-jãa¨ûFXm¼Åî8ø‹è‚-éöN÷2$E¹Oõ±)R’t*HÐ9S?›i©};¢ƒýÏiëå$ÞX9ƒ² ®eY®ë&’Éd2™H$¬·©üj9ËœqÃ0˜e…Žý½›£ÝïZ¸drK+8$àº`Y¹detItïÞ­è8zÄö6¬VÕñ¤jY †c¹zWkªƒ©)ˆ ÃW¶¥p7ų&Lä|ÄèB ‡]¹ã‚R¤j ¤J“³É6½'á$]6Ô|gN”VÁÝs¼Œ£h8øq¢„¿‘©ßŒçÀ äÏ­?rü`´kÙ¬ÿ$ý–0 B-ùaDöžò=…áäk—þ§è²G{ä‚ L»„ÇÝ,gJv£™Ÿ¦i:®k§Óݶ±[ ™N»‰„eYuwÕD¯ZÓâè8Ïõß—v^<»ký`ïúRn}µ¸¾RX_ LsvÌÑ{ïΡc3Û>yjÎèR÷ ɪeåW‡wrÎ';Wʈ¹@a`ͯ}õr†‹»nˆN eXöŽ5š…'e KàU”WQ5‰•2 E€ ™@!jw×®ÞÜëâIÜ…ÊQ ñ-X·tC.Ð0Ð0‘•6Ü©ÞöìÔ &ÿµ_å¯Â€´ÖA¸À#¿ªªeå•w,þÛöÖÉÆë{î¦/DñÐgǼÂÞÜàóýÝ«×(ujìÄµÔ ð«ÄDWÌûøO6oò½MŒq€È¼S ‚¹ïYqÑM‘Üô áœ$ÛŒBRšA7‚áâ98¾éµrõ—@Œ @¨ÝZ'‘‚ÎÌ•×]ö¡ˆ!_*»|ø!cÀ 4L0-4-¶yÿ÷¯8ògMŸ«1.˜u“¶çþÁ´|=1€ˆd~UUJªZ²¯ìúÛ¥‹VEí:0ôp²e8Ö8ÎJ9Íz7~Gm˜–U¶Ì»·¿®«ùÇÇö¯÷ŠÂ²„Ðá— <#´Ö†¶=ÄÙ#{·Mï;»6AlÄÖŒz¬2ln#„>•ÌÞzá7g8æ•Z«eò*ªZV^Ey"¿sùœÿ~绿å[Ñæƒk ãSOÆ”fðG08¶sË’/ÏK}:,O©–¨ZQõ’^ëyS?þG·þ‹Î8Ó [þX>–Š9.MÁš63mÆÌâš_ÜyQcË»Þù´o`õ‚r‘*EY.ªRA–ò`…ËoYò½Ëß nµZ]»ñnîÔãä¨ïãiŽñêÝ“\l¸†˜©¹ cA5–3„¦É9gˆrµ¥{¡6Aç†i¢m?|hw1ðÇ •Göl\¾*[wôNHñS}jžÖ| §!@ÂI^sî.U>ztð­¡ò>ÏÏ™¢5kÏ™>i‘ë¸ñ'õ‘î½»ûHfë) ã 5ÆÜ”5¥£Ø-˾üœ;—zwØ>PÞUõ žIÛ³¦·›J¦ãfÒÀPïæ#ÿf§éÙ[ã¯DÆ8“YØ.;žnͳ_{ÿMù°çu.Õ¾úpÿöã¹7=oÈL´tÎZ:³cAÜZ Ãð‰_ýc‰^MÚ<žÔ6Î2›!rÐ6Õ–8¢@}¬B12A‘ ÐsÿÇ¿š "rÆ„apÛ&×]ýò¦qž/¥0øÁÁ]:y¦0ÍZjαš¤^bé2ñ HºÉR³T"ÊüäO §(´Õ=!¹idht«kÇvæM½h\Ô”JåâãëÿšÄ1arΑa½ ôÖõÆç -à †´aßÿ5žµïÓsIÑ0Œ9‹çt.nŠþë¾¶è{©,Ó3,‡ àÇ!»‘k*Zx‡±&BÆ`ä².zÕFޝAϬ$Öfu<Â4Mpœ]^ù¥˜[÷«7ßqóÌ.¨TÀ@ÕƒÕŒ`YÊuß±ú«‡rµQÝwwnú“Ù ¹mÕªÎ=P'Y-eXbt³1œc±x<Ó4‰(ŸÏ' cdm*¸Žì|âµO+k[Òæ†‰L ²ñºã#+°ž„ %ÙW*—Ò©4 !„ã8M§ƒÇŽ÷~ü•Ï–Ù¯RI­í b§Ø rà³]C.%ÉWv}y°pøöë>Ó0)ºƒˆû~üò=½Õ'“f»µœIÆ'†1.½[ËåÜ0 Ã0À4Á0S- MÓ´,"Ò󜄶Á²À©w'fäBMã aš–á8˜H|o监[7iZw.\’)W!Pà† ÍÎÁpóÃ\ò÷/<­åø¡­^é¼Dªgi†Rªñð Ô2w ó¥Ýϼ|ïµËþC†ÿâC…#«.ýƒsk\CSQwß±—7?¸½û>']J&¹å0a ¯»3Ç+4P* &C³ÿÉuÿû]—®]÷àþc®Yö¡ó.7 ³)ÃÀPÿ+o­Ùtè[Vr0‘äum‡±é'»ýpF®£âŠEiWˆrwÏ÷¿òÀËW-ùÄe¼3™LÁÈÅ© —Ï­ßúøë{ÿ…Ù݉4w’5"ãPWÿã­Ž“Èn}Žã‚›¦iÛ¶™H`"ŽñiˆàºJqǶAÊÚsÅq •ó$w H½2س¡»Þÿµ×_á…Æ.\Ó¸–eÙ S© ™¼/~Ï¢%äP©@©D¥’ò#ë©ïîyë¯`AàèZ‚TðF¾}w¾ðýWÞpÃ¥—^Ú¤*2ކ –Ü$½¶ÿó¯îø× ü`€¾ù“·&Ï[0ãªé“ÏO''[Üñdµ\èØy {}_ù5Ë­¸i榸írÓŠÒg!%ië¦Ü[¯e¹^sEqÅŠMúO- ,ÛÑó­ý( Àóûˆè¾gšY·`þô•3:/Ȧ:-‘”W©æz†vì^ß]Xo8y'Å)î$˜i£0‡G¤`çÖüæ—ŽÉG¯º$¸êª«šÉD­6¸Ã" ×9a W9¸öÍOÿòÍ/Ïé¼jÖ”¥íÙ™œ›Rz}Cö¼~dpš}N’»Iî$¸í2úw,êi°Gqã‹Ý•žÇV.§›nºÉ²šÌ7;™ÞE=ºg¦a:Žc¦R˜NC6 ™ ĽܜC6 à8èû ”–]°,H&Ç „Á_Þúriˆè›{¾µzõ{ßûÞO}êSP·SôÜ`ÇuY: --Ïõî¹u?´ìJàô<Õúâvˆh–¥½‘ó'w^9÷œçöl×§<°}ã=WÜhIɉ (WŠ^õ3Þz:ß«èþ½«zèú믯TÏ@!дPº@\¨Àp¤P’¤¢ªÜüæÍö" 2ÒÉŠ†Å’-h»µÖ2m4L¦-Ñ -^U}ãoö¾ðÄ ’tàþï®Y¹rå=÷ÜÓ(¸ `úÕœ É–\IR¹sË‘›ëddšA a¡›e¶Ë—Ù fÙL ÃÖBÐ÷þáÀ3õÉ€öõ“Ë–-û¾а2_­·1àµ^§×—C.Ð0UÕV~U~Ͼíéû‘äêª&Úif¹B§ëÃ}”¤‡þùðcßî}Ú÷Ã{×.Y²äÛßþöœ9sNj3 C\X–e&“O•¿½c}_èƒalî>´»¿çšï}½¶D’ª‡ëV½G£d7–zO÷Þ—ŠƒQ“”ò‡?üa{{ûûÞ÷>¨)]ÛæÉä}}‡ŸÚùúëýLJá¿úÒÏþ”S„ù'Óç/5M¬ÖbŒs0ÍïÝ÷øÆ Ç ¹è¬£ÅüM~wªéüÞäé·§'YR}õðާr=ƒRêé§ŸÎd2ûØÇb÷d5ƒˆ1ަ…aÀ”)Iÿ–!)IJAÔ`Ñ$ =aKKm“ykþµû—õG ˆž{î¹/~ñ‹ºÇÛƒs3b`µ€$YO²– ‰Z Ä´˜i£Y›“S³tãÆÅOïï}ê¢a†õë×ß}÷ÝwÝuW¥Vߺ%ø¨MÎó=øšª¶Œî?¢‘¡®qcýçùÇþ·c¤†6nÜø‰O|â±ÇkèB'³°î¦5׫…÷¬{2læÌ/zÕçöî€q¥¢tÊÃAõg…þQ‚MkÖ¬¹õÖ[ãzwuÏnyyô‘?ݶQ~h×–­×¾·Cˆ0 õTø‡{}à•µM~y`7<¸kóã—Ýx™á®<6ú˜'Ÿ|òƒü DYÔ5 '#´PJÐ9 JÕDGIÐsTk38 ‡Ù äõÖöŽ @µ¢~ö£Ñ k×®½óÎ;¡nUÔŒcŽ5Ç‹ Ó")¤N΢¨#E²«m·ˆA˜zÎBm2Yœ! híC£›wݺup]·©x†(ô—$L4}Òžê 7ÕÂȹ@a¢aÔtúˆ5j<ý@ßh]÷ꫯ¾ùæ›—\rɸe·^aˆˆŒoÈõ…§%1WJª¯¤{<ô}¢Ñ¶y.—ƒZÞcœ­ìûª¹ÀßZê4“‘CäžccŸB/tÏoŸ^MÖ@)‹ÝÝÝét:ª ½ze= µUÎÔ'tÔd(ª¤šªæzí4`¼îá¤A@(æd1×d¨çy===íííqqa„ˆ ˜@ª'Eèà™RPÛ¢F0Dœ»¢FøÅÊ5ÐŒfð»»{ô#{øú¨“€™ö‘¬÷áa 6Ü“GÎGùæÀóèøÁ&n{¥Ô¾}û&"»Po"Rry¦Ý@Ð)L:¨7©e7ËGÝh:k§X,êÄC%å5­ß:²{Œ«¶šÖâDVUkc5’òÚö)_Û³e¬•T®mëL"³•©‘²¬––=¯˜¢µè0µUjj“R‘†×xˆµk-ª ëèf^'Á-›…A#ç<«ñ`5¿á8@OR¨uÖœÀvY"Í«åÆöeŒe³Y¬KYÓ™\ˆÀ9¡ê«DA]ý×b¬V8šA˜˜iM»ñ¤I“¶4‘ÝX€©6;7ô}I6ûÔïúÖá]yÖœ £á„’Rf†r’Y­ê|†Ù†½ÄN½Q-ÔãVµ²jÕªHvƒ0¬zÞZ§ËV=9p,'%°ør„¤¦YîŸL¨R_C„{Þ­ÙŽ‡WÜøX÷¡!ŒZùOµpã÷;f^Ÿn¯ W§ÚžÊõ4¯X±¢½½½§§GÇÓtÂ9"i\ZàpÖv-©µ;(r Äe¥YHÀM±e«ÒÏ=6ذwéÒ¥S§Nííí­3 Gü›2€^$j„c€æ=Go1-\qcæ‰Õ} {.\ØÕÕ500€P_5¡Y3kY$@$½>HÃl¶1táVÞÒòàW7lŸ;wîhÏO£ìbÌ´ÔËS© ½j• ×&’ï8ÿr°,bùjQÞ÷©Z•år¥\ÃP Ä¿éìúø‘m‡ƒá¼¬ /¼ð“Ÿü¤¶“ÀÃrµšÈÞŸi¿£sÖðÝ¡ža†äyT©TK%½.Dô]~/ÑúûçMÓ>@Ÿ¾O•Š_(øž÷×óöz¥ÕRÔ%ººº>ó™ÏԓݘN©PÃ*8> ¶¦‘€â›âûÇ\ý@Wö‡ÿjꑽþîÍùa³gÏþÜç>§b-±á`„Û?Þ¹›÷Ö«ÃëeM™2åî»ï6M“1†Èt,šˆB“Ö#mf Ž-/5åuó“v¾Yyã¹|´£­­ík_ûÚhƒ»‰ìF‹ÿS­´óeÈ«U ÃÐ(W¸àµÕÏÇ_´s\Ê0ü Ðs‰I)貜ïw-ýa¾wCPbË–\síµ·Ývcl``€1†Ž—AÒóL¥¤Q­pè§aý²JÊ0¨_¶f3)¥Lßå2&Z3^*XF§Lfâ{s/ZSè}¥’ .<+ßÿþ÷[–544Ä97…íU@¤LɸPÍâîœsÖ :Ù6q×wÎù壹M/Då¼+V\uÇw$‰¡¡!ƘaØ•*†!Jq& Ù™`H¦Ùgÿuþ Oäß|!O…s.]vÅ>ðl6«LÓÎWyJI†Šðõpr1‹ÁrðÓ_Ÿ÷òSÅ×~‘ rs–_xåG>ò‘¹sçŽTÑðw B$gÍ<ÆÈ!eJÉ=ŸˆÂ0ðx•Eîì L,…hy)½@š^ H€Ú„ñg³óçÎ1ÿç_¦R)ÆXµZÕ¯ˆIN™rÔbY/DJÓó™Ðî¥á‹ëU³ô¢oÑLO’RÏÊ9Ë£•®‡—û""ÆR†øÃI3nŸq1|þ³™l–sîyž~oGKbò¾£ÉL[I˜’1ŸÕ¬Sx¯x"TvBÜü¡Žëo;oNøw­ÙV!„~ïˆa™D˱ã-mSú C2Ûç€\Û½§•L®ßäU·ÎŸV¹grkgœ!é$÷÷Lg ÅlñL0" ®~OÛU7ÏèÈß3½cŽëºMEmXvã‚«§è´ttì=î”Mû¸°=%‚P¿GhÂi§P{œÕYª .ñ t튤Î/‹1¤³Ù]KÏñâ&½Š¾†cÈëÂ3¼>ã¨å8Ö§ŸÃ$5=g’q@ †ù•—L²mÍMUJ§ÒþîKÊs~Æ8C ƒ „‰¤øÙ`€À€8a(‰áÐen»ñŽiš 7GVssNÈ0ˆ¡Àèô30¢@.Mµd"Ã0LÓt]׸ªËþ£¶l»ëºf}н˜1]{vUy̲C†8= ¤‘,äŒÒÁ+ç:©¥£Ac@’ÏÝ·JþQÓ ðô3¨Rž/Ÿ ïh›¦FÏn¬õ–ø"1Tc¥RÑïÉår¹\®X,=ZÞwÊåáï)ô.†LpfY–ÛÙÙ~Áù“¦NÍd2ÉdÒqýÄø{Jr¹\>Ÿ/ ƒÝÝŽû Pa3‘HÄWé;åE™0z«+f}°1ض­´m[¿ÒñL04ÔCCÓzˆ^Äpê Œ1ÝZ›4,£ADÑTˆHèz8] úʺ"ód‹5Mhñtpô–çSìdqÖÈ×ðrä4bÐ_)zîiYò,®rôÝ£7ëÆ;O4D×Cô¦é3Ê´fˆç$E¯™>C mgˆ4´ã8‘<œ^­ÑšÊCtððçz4|ÔBÛ£ÞzpºÖÉÃúL̈¸¡µâ 4òµö§—!Ò:ë¯ÿ­eˆ0ÎCÓu·Dâ &¾c0ÄkŸ£{† ‘NYãŽÆ+¹¦†³ ¿6†˜_?CÓÚ}ÌðŸñÛ7EC¸OîI<Ó ãÁ8Ëð›eh"Ê£­…Ó t¶œ-§^šKsSSá7NùÛÀð›Å8ËÐÀÐd×X¿Nâ!þškíDvÞY†ß†œ5ΖßÑrÆ×=?[Ζ3TÎÊîÙò»ZÎÊîÙò»Zþuå>pX¼ŠIEND®B`‚lasso-2.9.0/PaxHeaders/ltmain.sh0000644000000000000000000000013215046611451013544 xustar0030 mtime=1754993449.835756097 30 atime=1754993467.667383445 30 ctime=1754993575.189133761 lasso-2.9.0/ltmain.sh0000755000175000017500000122276515046611451015576 0ustar00bdauvergnebdauvergne#! /usr/bin/env sh ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in ## by inline-source v2019-02-19.15 # libtool (GNU libtool) 2.5.4 # Provide generalized library-building support services. # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996-2019, 2021-2024 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool 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. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool 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, see . PROGRAM=libtool PACKAGE=libtool VERSION="2.5.4 Debian-2.5.4-4" package_revision=2.5.4 ## ------ ## ## Usage. ## ## ------ ## # Run './libtool --help' for help with using this script from the # command line. ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # After configure completes, it has a better idea of some of the # shell tools we need than the defaults used by the functions shared # with bootstrap, so set those here where they can still be over- # ridden by the user, but otherwise take precedence. : ${AUTOCONF="autoconf"} : ${AUTOMAKE="automake"} ## -------------------------- ## ## Source external libraries. ## ## -------------------------- ## # Much of our low-level functionality needs to be sourced from external # libraries, which are installed to $pkgauxdir. # Set a version string for this script. scriptversion=2024-12-01.17; # UTC # General shell script boiler plate, and helper functions. # Written by Gary V. Vaughan, 2004 # This is free software. There is NO warranty; not even for # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # # Copyright (C) 2004-2019, 2021, 2023-2024 Bootstrap Authors # # This file is dual licensed under the terms of the MIT license # , and GPL version 2 or later # . You must apply one of # these licenses when using or redistributing this software or any of # the files within it. See the URLs above, or the file `LICENSE` # included in the Bootstrap distribution for the full license texts. # Please report bugs or propose patches to: # ## ------ ## ## Usage. ## ## ------ ## # Evaluate this file near the top of your script to gain access to # the functions and variables defined here: # # . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh # # If you need to override any of the default environment variable # settings, do that before evaluating this file. ## -------------------- ## ## Shell normalisation. ## ## -------------------- ## # Some shells need a little help to be as Bourne compatible as possible. # Before doing anything else, make sure all that help has been provided! DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi # NLS nuisances: We save the old values in case they are required later. _G_user_locale= _G_safe_locale= for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test set = \"\${$_G_var+set}\"; then save_$_G_var=\$$_G_var $_G_var=C export $_G_var _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" fi" done # These NLS vars are set unconditionally (bootstrap issue #24). Unset those # in case the environment reset is needed later and the $save_* variant is not # defined (see the code above). LC_ALL=C LANGUAGE=C export LANGUAGE LC_ALL # Make sure IFS has a sensible default sp=' ' nl=' ' IFS="$sp $nl" # There are apparently some systems that use ';' as a PATH separator! if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # func_unset VAR # -------------- # Portably unset VAR. # In some shells, an 'unset VAR' statement leaves a non-zero return # status if VAR is already unset, which might be problematic if the # statement is used at the end of a function (thus poisoning its return # value) or when 'set -e' is active (causing even a spurious abort of # the script in this case). func_unset () { { eval $1=; (eval unset $1) >/dev/null 2>&1 && eval unset $1 || : ; } } # Make sure CDPATH doesn't cause `cd` commands to output the target dir. func_unset CDPATH # Make sure ${,E,F}GREP behave sanely. func_unset GREP_OPTIONS ## ------------------------- ## ## Locate command utilities. ## ## ------------------------- ## # func_executable_p FILE # ---------------------- # Check that FILE is an executable regular file. func_executable_p () { test -f "$1" && test -x "$1" } # func_path_progs PROGS_LIST CHECK_FUNC [PATH] # -------------------------------------------- # Search for either a program that responds to --version with output # containing "GNU", or else returned by CHECK_FUNC otherwise, by # trying all the directories in PATH with each of the elements of # PROGS_LIST. # # CHECK_FUNC should accept the path to a candidate program, and # set $func_check_prog_result if it truncates its output less than # $_G_path_prog_max characters. func_path_progs () { _G_progs_list=$1 _G_check_func=$2 _G_PATH=${3-"$PATH"} _G_path_prog_max=0 _G_path_prog_found=false _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:} for _G_dir in $_G_PATH; do IFS=$_G_save_IFS test -z "$_G_dir" && _G_dir=. for _G_prog_name in $_G_progs_list; do for _exeext in '' .EXE; do _G_path_prog=$_G_dir/$_G_prog_name$_exeext func_executable_p "$_G_path_prog" || continue case `"$_G_path_prog" --version 2>&1` in *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; *) $_G_check_func $_G_path_prog func_path_progs_result=$func_check_prog_result ;; esac $_G_path_prog_found && break 3 done done done IFS=$_G_save_IFS test -z "$func_path_progs_result" && { echo "no acceptable sed could be found in \$PATH" >&2 exit 1 } } # We want to be able to use the functions in this file before configure # has figured out where the best binaries are kept, which means we have # to search for them ourselves - except when the results are already set # where we skip the searches. # Unless the user overrides by setting SED, search the path for either GNU # sed, or the sed that truncates its output the least. test -z "$SED" && { _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for _G_i in 1 2 3 4 5 6 7; do _G_sed_script=$_G_sed_script$nl$_G_sed_script done echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed _G_sed_script= func_check_prog_sed () { _G_path_prog=$1 _G_count=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo '' >> conftest.nl "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "sed gsed" func_check_prog_sed "$PATH:/usr/xpg4/bin" rm -f conftest.sed SED=$func_path_progs_result } # Unless the user overrides by setting GREP, search the path for either GNU # grep, or the grep that truncates its output the least. test -z "$GREP" && { func_check_prog_grep () { _G_path_prog=$1 _G_count=0 _G_path_prog_max=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo 'GREP' >> conftest.nl "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "grep ggrep" func_check_prog_grep "$PATH:/usr/xpg4/bin" GREP=$func_path_progs_result } ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # All uppercase variable names are used for environment variables. These # variables can be overridden by the user before calling a script that # uses them if a suitable command of that name is not already available # in the command search PATH. : ${CP="cp -f"} : ${ECHO="printf %s\n"} : ${EGREP="$GREP -E"} : ${FGREP="$GREP -F"} : ${LN_S="ln -s"} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} ## -------------------- ## ## Useful sed snippets. ## ## -------------------- ## sed_dirname='s|/[^/]*$||' sed_basename='s|^.*/||' # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='s|\([`"$\\]\)|\\\1|g' # Same as above, but do not quote variable references. sed_double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution that turns a string into a regex matching for the # string literally. sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g' # Sed substitution that converts a w32 file name or path # that contains forward slashes, into one that contains # (escaped) backslashes. A very naive implementation. sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Re-'\' parameter expansions in output of sed_double_quote_subst that # were '\'-ed in input to the same. If an odd number of '\' preceded a # '$' in input to sed_double_quote_subst, that '$' was protected from # expansion. Since each input '\' is now two '\'s, look for any number # of runs of four '\'s followed by two '\'s and then a '$'. '\' that '$'. _G_bs='\\' _G_bs2='\\\\' _G_bs4='\\\\\\\\' _G_dollar='\$' sed_double_backslash="\ s/$_G_bs4/&\\ /g s/^$_G_bs2$_G_dollar/$_G_bs&/ s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g s/\n//g" # require_check_ifs_backslash # --------------------------- # Check if we can use backslash as IFS='\' separator, and set # $check_ifs_backshlash_broken to ':' or 'false'. require_check_ifs_backslash=func_require_check_ifs_backslash func_require_check_ifs_backslash () { _G_save_IFS=$IFS IFS='\' _G_check_ifs_backshlash='a\\b' for _G_i in $_G_check_ifs_backshlash do case $_G_i in a) check_ifs_backshlash_broken=false ;; '') break ;; *) check_ifs_backshlash_broken=: break ;; esac done IFS=$_G_save_IFS require_check_ifs_backslash=: } ## ----------------- ## ## Global variables. ## ## ----------------- ## # Except for the global variables explicitly listed below, the following # functions in the '^func_' namespace, and the '^require_' namespace # variables initialised in the 'Resource management' section, sourcing # this file will not pollute your global namespace with anything # else. There's no portable way to scope variables in Bourne shell # though, so actually running these functions will sometimes place # results into a variable named after the function, and often use # temporary variables in the '^_G_' namespace. If you are careful to # avoid using those namespaces casually in your sourcing script, things # should continue to work as you expect. And, of course, you can freely # overwrite any of the functions or variables defined here before # calling anything to customize them. EXIT_SUCCESS=0 EXIT_FAILURE=1 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. # Allow overriding, eg assuming that you follow the convention of # putting '$debug_cmd' at the start of all your functions, you can get # bash to show function call trace with: # # debug_cmd='echo "${FUNCNAME[0]} $*" >&2' bash your-script-name debug_cmd=${debug_cmd-":"} exit_cmd=: # By convention, finish your script with: # # exit $exit_status # # so that you can set exit_status to non-zero if you want to indicate # something went wrong during execution without actually bailing out at # the point of failure. exit_status=$EXIT_SUCCESS # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath=$0 # The name of this program. progname=`$ECHO "$progpath" |$SED "$sed_basename"` # Make sure we have an absolute progpath for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` progdir=`cd "$progdir" && pwd` progpath=$progdir/$progname ;; *) _G_IFS=$IFS IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do IFS=$_G_IFS test -x "$progdir/$progname" && break done IFS=$_G_IFS test -n "$progdir" || progdir=`pwd` progpath=$progdir/$progname ;; esac ## ----------------- ## ## Standard options. ## ## ----------------- ## # The following options affect the operation of the functions defined # below, and should be set appropriately depending on run-time para- # meters passed on the command line. opt_dry_run=false opt_quiet=false opt_verbose=false # Categories 'all' and 'none' are always available. Append any others # you will pass as the first argument to func_warning from your own # code. warning_categories= # By default, display warnings according to 'opt_warning_types'. Set # 'warning_func' to ':' to elide all warnings, or func_fatal_error to # treat the next displayed warning as a fatal error. warning_func=func_warn_and_continue # Set to 'all' to display all warnings, 'none' to suppress all # warnings, or a space delimited list of some subset of # 'warning_categories' to display only the listed warnings. opt_warning_types=all ## -------------------- ## ## Resource management. ## ## -------------------- ## # This section contains definitions for functions that each ensure a # particular resource (a file, or a non-empty configuration variable for # example) is available, and if appropriate to extract default values # from pertinent package files. Call them using their associated # 'require_*' variable to ensure that they are executed, at most, once. # # It's entirely deliberate that calling these functions can set # variables that don't obey the namespace limitations obeyed by the rest # of this file, in order that that they be as useful as possible to # callers. # require_term_colors # ------------------- # Allow display of bold text on terminals that support it. require_term_colors=func_require_term_colors func_require_term_colors () { $debug_cmd test -t 1 && { # COLORTERM and USE_ANSI_COLORS environment variables take # precedence, because most terminfo databases neglect to describe # whether color sequences are supported. test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} if test 1 = "$USE_ANSI_COLORS"; then # Standard ANSI escape sequences tc_reset='' tc_bold=''; tc_standout='' tc_red=''; tc_green='' tc_blue=''; tc_cyan='' else # Otherwise trust the terminfo database after all. test -n "`tput sgr0 2>/dev/null`" && { tc_reset=`tput sgr0` test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` tc_standout=$tc_bold test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` } fi } require_term_colors=: } ## ----------------- ## ## Function library. ## ## ----------------- ## # This section contains a variety of useful functions to call in your # scripts. Take note of the portable wrappers for features provided by # some modern shells, which will fall back to slower equivalents on # less featureful shells. # func_append VAR VALUE # --------------------- # Append VALUE onto the existing contents of VAR. # _G_HAVE_PLUSEQ_OP # Can be empty, in which case the shell is probed, "yes" if += is # usable or anything else if it does not work. if test -z "$_G_HAVE_PLUSEQ_OP" && \ __PLUSEQ_TEST="a" && \ __PLUSEQ_TEST+=" b" 2>/dev/null && \ test "a b" = "$__PLUSEQ_TEST"; then _G_HAVE_PLUSEQ_OP=yes fi if test yes = "$_G_HAVE_PLUSEQ_OP" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_append () { $debug_cmd eval "$1+=\$2" }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_append () { $debug_cmd eval "$1=\$$1\$2" } fi # func_append_quoted VAR VALUE # ---------------------------- # Quote VALUE and append to the end of shell variable VAR, separated # by a space. if test yes = "$_G_HAVE_PLUSEQ_OP"; then eval 'func_append_quoted () { $debug_cmd func_quote_arg pretty "$2" eval "$1+=\\ \$func_quote_arg_result" }' else func_append_quoted () { $debug_cmd func_quote_arg pretty "$2" eval "$1=\$$1\\ \$func_quote_arg_result" } fi # func_append_uniq VAR VALUE # -------------------------- # Append unique VALUE onto the existing contents of VAR, assuming # entries are delimited by the first character of VALUE. For example: # # func_append_uniq options " --another-option option-argument" # # will only append to $options if " --another-option option-argument " # is not already present somewhere in $options already (note spaces at # each end implied by leading space in second argument). func_append_uniq () { $debug_cmd eval _G_current_value='`$ECHO $'$1'`' _G_delim=`expr "$2" : '\(.\)'` case $_G_delim$_G_current_value$_G_delim in *"$2$_G_delim"*) ;; *) func_append "$@" ;; esac } # func_arith TERM... # ------------------ # Set func_arith_result to the result of evaluating TERMs. test -z "$_G_HAVE_ARITH_OP" \ && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ && _G_HAVE_ARITH_OP=yes if test yes = "$_G_HAVE_ARITH_OP"; then eval 'func_arith () { $debug_cmd func_arith_result=$(( $* )) }' else func_arith () { $debug_cmd func_arith_result=`expr "$@"` } fi # func_basename FILE # ------------------ # Set func_basename_result to FILE with everything up to and including # the last / stripped. if test yes = "$_G_HAVE_XSI_OPS"; then # If this shell supports suffix pattern removal, then use it to avoid # forking. Hide the definitions single quotes in case the shell chokes # on unsupported syntax... _b='func_basename_result=${1##*/}' _d='case $1 in */*) func_dirname_result=${1%/*}$2 ;; * ) func_dirname_result=$3 ;; esac' else # ...otherwise fall back to using sed. _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` if test "X$func_dirname_result" = "X$1"; then func_dirname_result=$3 else func_append func_dirname_result "$2" fi' fi eval 'func_basename () { $debug_cmd '"$_b"' }' # func_dirname FILE APPEND NONDIR_REPLACEMENT # ------------------------------------------- # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. eval 'func_dirname () { $debug_cmd '"$_d"' }' # func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT # -------------------------------------------------------- # Perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value returned in "$func_basename_result" # For efficiency, we do not delegate to the functions above but instead # duplicate the functionality here. eval 'func_dirname_and_basename () { $debug_cmd '"$_b"' '"$_d"' }' # func_echo ARG... # ---------------- # Echo program name prefixed message. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname: $_G_line" done IFS=$func_echo_IFS } # func_echo_all ARG... # -------------------- # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } # func_echo_infix_1 INFIX ARG... # ------------------------------ # Echo program name, followed by INFIX on the first line, with any # additional lines not showing INFIX. func_echo_infix_1 () { $debug_cmd $require_term_colors _G_infix=$1; shift _G_indent=$_G_infix _G_prefix="$progname: $_G_infix: " _G_message=$* # Strip color escape sequences before counting printable length for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" do test -n "$_G_tc" && { _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` } done _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes func_echo_infix_1_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_infix_1_IFS $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 _G_prefix=$_G_indent done IFS=$func_echo_infix_1_IFS } # func_error ARG... # ----------------- # Echo program name prefixed message to standard error. func_error () { $debug_cmd $require_term_colors func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 } # func_fatal_error ARG... # ----------------------- # Echo program name prefixed message to standard error, and exit. func_fatal_error () { $debug_cmd func_error "$*" exit $EXIT_FAILURE } # func_grep EXPRESSION FILENAME # ----------------------------- # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $debug_cmd $GREP "$1" "$2" >/dev/null 2>&1 } # func_len STRING # --------------- # Set func_len_result to the length of STRING. STRING may not # start with a hyphen. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_len () { $debug_cmd func_len_result=${#1} }' else func_len () { $debug_cmd func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` } fi # func_mkdir_p DIRECTORY-PATH # --------------------------- # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { $debug_cmd _G_directory_path=$1 _G_dir_list= if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then # Protect directory names starting with '-' case $_G_directory_path in -*) _G_directory_path=./$_G_directory_path ;; esac # While some portion of DIR does not yet exist... while test ! -d "$_G_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list in case some portion of path contains whitespace. _G_dir_list=$_G_directory_path:$_G_dir_list # If the last portion added has no slash in it, the list is done case $_G_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` done _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` func_mkdir_p_IFS=$IFS; IFS=: for _G_dir in $_G_dir_list; do IFS=$func_mkdir_p_IFS # mkdir can fail with a 'File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! $MKDIR "$_G_dir" 2>/dev/null || : done IFS=$func_mkdir_p_IFS # Bail out if we (or some other process) failed to create a directory. test -d "$_G_directory_path" || \ func_fatal_error "Failed to create '$1'" fi } # func_mktempdir [BASENAME] # ------------------------- # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, BASENAME is the basename for that directory. func_mktempdir () { $debug_cmd _G_template=${TMPDIR-/tmp}/${1-$progname} if test : = "$opt_dry_run"; then # Return a directory name, but don't create it in dry-run mode _G_tmpdir=$_G_template-$$ else # If mktemp works, use that first and foremost _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` if test ! -d "$_G_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race _G_tmpdir=$_G_template-${RANDOM-0}$$ func_mktempdir_umask=`umask` umask 0077 $MKDIR "$_G_tmpdir" umask $func_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$_G_tmpdir" || \ func_fatal_error "cannot create temporary directory '$_G_tmpdir'" fi $ECHO "$_G_tmpdir" } # func_normal_abspath PATH # ------------------------ # Remove doubled-up and trailing slashes, "." path components, # and cancel out any ".." path components in PATH after making # it an absolute path. func_normal_abspath () { $debug_cmd # These SED scripts presuppose an absolute path with a trailing slash. _G_pathcar='s|^/\([^/]*\).*$|\1|' _G_pathcdr='s|^/[^/]*||' _G_removedotparts=':dotsl s|/\./|/|g t dotsl s|/\.$|/|' _G_collapseslashes='s|/\{1,\}|/|g' _G_finalslash='s|/*$|/|' # Start from root dir and reassemble the path. func_normal_abspath_result= func_normal_abspath_tpath=$1 func_normal_abspath_altnamespace= case $func_normal_abspath_tpath in "") # Empty path, that just means $cwd. func_stripname '' '/' "`pwd`" func_normal_abspath_result=$func_stripname_result return ;; # The next three entries are used to spot a run of precisely # two leading slashes without using negated character classes; # we take advantage of case's first-match behaviour. ///*) # Unusual form of absolute path, do nothing. ;; //*) # Not necessarily an ordinary path; POSIX reserves leading '//' # and for example Cygwin uses it to access remote file shares # over CIFS/SMB, so we conserve a leading double slash if found. func_normal_abspath_altnamespace=/ ;; /*) # Absolute path, do nothing. ;; *) # Relative path, prepend $cwd. func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath ;; esac # Cancel out all the simple stuff to save iterations. We also want # the path to end with a slash for ease of parsing, so make sure # there is one (and only one) here. func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"` while :; do # Processed it all yet? if test / = "$func_normal_abspath_tpath"; then # If we ascended to the root using ".." the result may be empty now. if test -z "$func_normal_abspath_result"; then func_normal_abspath_result=/ fi break fi func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcar"` func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcdr"` # Figure out what to do with it case $func_normal_abspath_tcomponent in "") # Trailing empty path component, ignore it. ;; ..) # Parent dir; strip last assembled component from result. func_dirname "$func_normal_abspath_result" func_normal_abspath_result=$func_dirname_result ;; *) # Actual path component, append it. func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent" ;; esac done # Restore leading double-slash if one was found on entry. func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result } # func_notquiet ARG... # -------------------- # Echo program name prefixed message only when not in quiet mode. func_notquiet () { $debug_cmd $opt_quiet || func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to # work around that: : } # func_relative_path SRCDIR DSTDIR # -------------------------------- # Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. func_relative_path () { $debug_cmd func_relative_path_result= func_normal_abspath "$1" func_relative_path_tlibdir=$func_normal_abspath_result func_normal_abspath "$2" func_relative_path_tbindir=$func_normal_abspath_result # Ascend the tree starting from libdir while :; do # check if we have found a prefix of bindir case $func_relative_path_tbindir in $func_relative_path_tlibdir) # found an exact match func_relative_path_tcancelled= break ;; $func_relative_path_tlibdir*) # found a matching prefix func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" func_relative_path_tcancelled=$func_stripname_result if test -z "$func_relative_path_result"; then func_relative_path_result=. fi break ;; *) func_dirname $func_relative_path_tlibdir func_relative_path_tlibdir=$func_dirname_result if test -z "$func_relative_path_tlibdir"; then # Have to descend all the way to the root! func_relative_path_result=../$func_relative_path_result func_relative_path_tcancelled=$func_relative_path_tbindir break fi func_relative_path_result=../$func_relative_path_result ;; esac done # Now calculate path; take care to avoid doubling-up slashes. func_stripname '' '/' "$func_relative_path_result" func_relative_path_result=$func_stripname_result func_stripname '/' '/' "$func_relative_path_tcancelled" if test -n "$func_stripname_result"; then func_append func_relative_path_result "/$func_stripname_result" fi # Normalisation. If bindir is libdir, return '.' else relative path. if test -n "$func_relative_path_result"; then func_stripname './' '' "$func_relative_path_result" func_relative_path_result=$func_stripname_result fi test -n "$func_relative_path_result" || func_relative_path_result=. : } # func_quote_portable EVAL ARG # ---------------------------- # Internal function to portably implement func_quote_arg. Note that we still # keep attention to performance here so we as much as possible try to avoid # calling sed binary (so far O(N) complexity as long as func_append is O(1)). func_quote_portable () { $debug_cmd $require_check_ifs_backslash func_quote_portable_result=$2 # one-time-loop (easy break) while true do if $1; then func_quote_portable_result=`$ECHO "$2" | $SED \ -e "$sed_double_quote_subst" -e "$sed_double_backslash"` break fi # Quote for eval. case $func_quote_portable_result in *[\\\`\"\$]*) # Fallback to sed for $func_check_bs_ifs_broken=:, or when the string # contains the shell wildcard characters. case $check_ifs_backshlash_broken$func_quote_portable_result in :*|*[\[\*\?]*) func_quote_portable_result=`$ECHO "$func_quote_portable_result" \ | $SED "$sed_quote_subst"` break ;; esac func_quote_portable_old_IFS=$IFS for _G_char in '\' '`' '"' '$' do # STATE($1) PREV($2) SEPARATOR($3) set start "" "" func_quote_portable_result=dummy"$_G_char$func_quote_portable_result$_G_char"dummy IFS=$_G_char for _G_part in $func_quote_portable_result do case $1 in quote) func_append func_quote_portable_result "$3$2" set quote "$_G_part" "\\$_G_char" ;; start) set first "" "" func_quote_portable_result= ;; first) set quote "$_G_part" "" ;; esac done done IFS=$func_quote_portable_old_IFS ;; *) ;; esac break done func_quote_portable_unquoted_result=$func_quote_portable_result case $func_quote_portable_result in # double-quote args containing shell metacharacters to delay # word splitting, command substitution and variable expansion # for a subsequent eval. # many bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") func_quote_portable_result=\"$func_quote_portable_result\" ;; esac } # func_quotefast_eval ARG # ----------------------- # Quote one ARG (internal). This is equivalent to 'func_quote_arg eval ARG', # but optimized for speed. Result is stored in $func_quotefast_eval. if test xyes = `(x=; printf -v x %q yes; echo x"$x") 2>/dev/null`; then printf -v _GL_test_printf_tilde %q '~' if test '\~' = "$_GL_test_printf_tilde"; then func_quotefast_eval () { printf -v func_quotefast_eval_result %q "$1" } else # Broken older Bash implementations. Make those faster too if possible. func_quotefast_eval () { case $1 in '~'*) func_quote_portable false "$1" func_quotefast_eval_result=$func_quote_portable_result ;; *) printf -v func_quotefast_eval_result %q "$1" ;; esac } fi else func_quotefast_eval () { func_quote_portable false "$1" func_quotefast_eval_result=$func_quote_portable_result } fi # func_quote_arg MODEs ARG # ------------------------ # Quote one ARG to be evaled later. MODEs argument may contain zero or more # specifiers listed below separated by ',' character. This function returns two # values: # i) func_quote_arg_result # double-quoted (when needed), suitable for a subsequent eval # ii) func_quote_arg_unquoted_result # has all characters that are still active within double # quotes backslashified. Available only if 'unquoted' is specified. # # Available modes: # ---------------- # 'eval' (default) # - escape shell special characters # 'expand' # - the same as 'eval'; but do not quote variable references # 'pretty' # - request aesthetic output, i.e. '"a b"' instead of 'a\ b'. This might # be used later in func_quote to get output like: 'echo "a b"' instead # of 'echo a\ b'. This is slower than default on some shells. # 'unquoted' # - produce also $func_quote_arg_unquoted_result which does not contain # wrapping double-quotes. # # Examples for 'func_quote_arg pretty,unquoted string': # # string | *_result | *_unquoted_result # ------------+-----------------------+------------------- # " | \" | \" # a b | "a b" | a b # "a b" | "\"a b\"" | \"a b\" # * | "*" | * # z="${x-$y}" | "z=\"\${x-\$y}\"" | z=\"\${x-\$y}\" # # Examples for 'func_quote_arg pretty,unquoted,expand string': # # string | *_result | *_unquoted_result # --------------+---------------------+-------------------- # z="${x-$y}" | "z=\"${x-$y}\"" | z=\"${x-$y}\" func_quote_arg () { _G_quote_expand=false case ,$1, in *,expand,*) _G_quote_expand=: ;; esac case ,$1, in *,pretty,*|*,expand,*|*,unquoted,*) func_quote_portable $_G_quote_expand "$2" func_quote_arg_result=$func_quote_portable_result func_quote_arg_unquoted_result=$func_quote_portable_unquoted_result ;; *) # Faster quote-for-eval for some shells. func_quotefast_eval "$2" func_quote_arg_result=$func_quotefast_eval_result ;; esac } # func_quote MODEs ARGs... # ------------------------ # Quote all ARGs to be evaled later and join them into single command. See # func_quote_arg's description for more info. func_quote () { $debug_cmd _G_func_quote_mode=$1 ; shift func_quote_result= while test 0 -lt $#; do func_quote_arg "$_G_func_quote_mode" "$1" if test -n "$func_quote_result"; then func_append func_quote_result " $func_quote_arg_result" else func_append func_quote_result "$func_quote_arg_result" fi shift done } # func_stripname PREFIX SUFFIX NAME # --------------------------------- # strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_stripname () { $debug_cmd # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary variable first. func_stripname_result=$3 func_stripname_result=${func_stripname_result#"$1"} func_stripname_result=${func_stripname_result%"$2"} }' else func_stripname () { $debug_cmd case $2 in .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; esac } fi # func_show_eval CMD [FAIL_EXP] # ----------------------------- # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} func_quote_arg pretty,expand "$_G_cmd" eval "func_notquiet $func_quote_arg_result" $opt_dry_run || { eval "$_G_cmd" _G_status=$? if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_show_eval_locale CMD [FAIL_EXP] # ------------------------------------ # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} $opt_quiet || { func_quote_arg expand,pretty "$_G_cmd" eval "func_echo $func_quote_arg_result" } $opt_dry_run || { eval "$_G_user_locale $_G_cmd" _G_status=$? eval "$_G_safe_locale" if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_tr_sh # ---------- # Turn $1 into a string suitable for a shell variable name. # Result is stored in $func_tr_sh_result. All characters # not in the set a-zA-Z0-9_ are replaced with '_'. Further, # if $1 begins with a digit, a '_' is prepended as well. func_tr_sh () { $debug_cmd case $1 in [0-9]* | *[!a-zA-Z0-9_]*) func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` ;; * ) func_tr_sh_result=$1 ;; esac } # func_verbose ARG... # ------------------- # Echo program name prefixed message in verbose mode only. func_verbose () { $debug_cmd $opt_verbose && func_echo "$*" : } # func_warn_and_continue ARG... # ----------------------------- # Echo program name prefixed warning message to standard error. func_warn_and_continue () { $debug_cmd $require_term_colors func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 } # func_warning CATEGORY ARG... # ---------------------------- # Echo program name prefixed warning message to standard error. Warning # messages can be filtered according to CATEGORY, where this function # elides messages where CATEGORY is not listed in the global variable # 'opt_warning_types'. func_warning () { $debug_cmd # CATEGORY must be in the warning_categories list! case " $warning_categories " in *" $1 "*) ;; *) func_internal_error "invalid warning category '$1'" ;; esac _G_category=$1 shift case " $opt_warning_types " in *" $_G_category "*) $warning_func ${1+"$@"} ;; esac } # func_sort_ver VER1 VER2 # ----------------------- # 'sort -V' is not generally available. # Note this deviates from the version comparison in automake # in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a # but this should suffice as we won't be specifying old # version formats or redundant trailing .0 in bootstrap.conf. # If we did want full compatibility then we should probably # use m4_version_compare from autoconf. func_sort_ver () { $debug_cmd printf '%s\n%s\n' "$1" "$2" \ | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n } # func_lt_ver PREV CURR # --------------------- # Return true if PREV and CURR are in the correct order according to # func_sort_ver, otherwise false. Use it like this: # # func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." func_lt_ver () { $debug_cmd test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: #! /bin/sh # A portable, pluggable option parser for Bourne shell. # Written by Gary V. Vaughan, 2010 # This is free software. There is NO warranty; not even for # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # # Copyright (C) 2010-2019, 2021, 2023-2024 Bootstrap Authors # # This file is dual licensed under the terms of the MIT license # , and GPL version 2 or later # . You must apply one of # these licenses when using or redistributing this software or any of # the files within it. See the URLs above, or the file `LICENSE` # included in the Bootstrap distribution for the full license texts. # Please report bugs or propose patches to: # # Set a version string for this script. scriptversion=2019-02-19.15; # UTC ## ------ ## ## Usage. ## ## ------ ## # This file is a library for parsing options in your shell scripts along # with assorted other useful supporting features that you can make use # of too. # # For the simplest scripts you might need only: # # #!/bin/sh # . relative/path/to/funclib.sh # . relative/path/to/options-parser # scriptversion=1.0 # func_options ${1+"$@"} # eval set dummy "$func_options_result"; shift # ...rest of your script... # # In order for the '--version' option to work, you will need to have a # suitably formatted comment like the one at the top of this file # starting with '# Written by ' and ending with '# Copyright'. # # For '-h' and '--help' to work, you will also need a one line # description of your script's purpose in a comment directly above the # '# Written by ' line, like the one at the top of this file. # # The default options also support '--debug', which will turn on shell # execution tracing (see the comment above debug_cmd below for another # use), and '--verbose' and the func_verbose function to allow your script # to display verbose messages only when your user has specified # '--verbose'. # # After sourcing this file, you can plug in processing for additional # options by amending the variables from the 'Configuration' section # below, and following the instructions in the 'Option parsing' # section further down. ## -------------- ## ## Configuration. ## ## -------------- ## # You should override these variables in your script after sourcing this # file so that they reflect the customisations you have added to the # option parser. # The usage line for option parsing errors and the start of '-h' and # '--help' output messages. You can embed shell variables for delayed # expansion at the time the message is displayed, but you will need to # quote other shell meta-characters carefully to prevent them being # expanded when the contents are evaled. usage='$progpath [OPTION]...' # Short help message in response to '-h' and '--help'. Add to this or # override it after sourcing this library to reflect the full set of # options your script accepts. usage_message="\ --debug enable verbose shell tracing -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -v, --verbose verbosely report processing --version print version information and exit -h, --help print short or long help message and exit " # Additional text appended to 'usage_message' in response to '--help'. long_help_message=" Warning categories include: 'all' show all warnings 'none' turn off all the warnings 'error' warnings are treated as fatal errors" # Help message printed before fatal option parsing errors. fatal_help="Try '\$progname --help' for more information." ## ------------------------- ## ## Hook function management. ## ## ------------------------- ## # This section contains functions for adding, removing, and running hooks # in the main code. A hook is just a list of function names that can be # run in order later on. # func_hookable FUNC_NAME # ----------------------- # Declare that FUNC_NAME will run hooks added with # 'func_add_hook FUNC_NAME ...'. func_hookable () { $debug_cmd func_append hookable_fns " $1" } # func_add_hook FUNC_NAME HOOK_FUNC # --------------------------------- # Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must # first have been declared "hookable" by a call to 'func_hookable'. func_add_hook () { $debug_cmd case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not accept hook functions." ;; esac eval func_append ${1}_hooks '" $2"' } # func_remove_hook FUNC_NAME HOOK_FUNC # ------------------------------------ # Remove HOOK_FUNC from the list of hook functions to be called by # FUNC_NAME. func_remove_hook () { $debug_cmd eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' } # func_propagate_result FUNC_NAME_A FUNC_NAME_B # --------------------------------------------- # If the *_result variable of FUNC_NAME_A _is set_, assign its value to # *_result variable of FUNC_NAME_B. func_propagate_result () { $debug_cmd func_propagate_result_result=: if eval "test \"\${${1}_result+set}\" = set" then eval "${2}_result=\$${1}_result" else func_propagate_result_result=false fi } # func_run_hooks FUNC_NAME [ARG]... # --------------------------------- # Run all hook functions registered to FUNC_NAME. # It's assumed that the list of hook functions contains nothing more # than a whitespace-delimited list of legal shell function names, and # no effort is wasted trying to catch shell meta-characters or preserve # whitespace. func_run_hooks () { $debug_cmd _G_rc_run_hooks=false case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not support hook functions." ;; esac eval _G_hook_fns=\$$1_hooks; shift for _G_hook in $_G_hook_fns; do func_unset "${_G_hook}_result" eval $_G_hook '${1+"$@"}' func_propagate_result $_G_hook func_run_hooks if $func_propagate_result_result; then eval set dummy "$func_run_hooks_result"; shift fi done } ## --------------- ## ## Option parsing. ## ## --------------- ## # In order to add your own option parsing hooks, you must accept the # full positional parameter list from your hook function. You may remove # or edit any options that you action, and then pass back the remaining # unprocessed options in '_result', escaped # suitably for 'eval'. # # The '_result' variable is automatically unset # before your hook gets called; for best performance, only set the # *_result variable when necessary (i.e. don't call the 'func_quote' # function unnecessarily because it can be an expensive operation on some # machines). # # Like this: # # my_options_prep () # { # $debug_cmd # # # Extend the existing usage message. # usage_message=$usage_message' # -s, --silent don'\''t print informational messages # ' # # No change in '$@' (ignored completely by this hook). Leave # # my_options_prep_result variable intact. # } # func_add_hook func_options_prep my_options_prep # # # my_silent_option () # { # $debug_cmd # # args_changed=false # # # Note that, for efficiency, we parse as many options as we can # # recognise in a loop before passing the remainder back to the # # caller on the first unrecognised argument we encounter. # while test $# -gt 0; do # opt=$1; shift # case $opt in # --silent|-s) opt_silent=: # args_changed=: # ;; # # Separate non-argument short options: # -s*) func_split_short_opt "$_G_opt" # set dummy "$func_split_short_opt_name" \ # "-$func_split_short_opt_arg" ${1+"$@"} # shift # args_changed=: # ;; # *) # Make sure the first unrecognised option "$_G_opt" # # is added back to "$@" in case we need it later, # # if $args_changed was set to 'true'. # set dummy "$_G_opt" ${1+"$@"}; shift; break ;; # esac # done # # # Only call 'func_quote' here if we processed at least one argument. # if $args_changed; then # func_quote eval ${1+"$@"} # my_silent_option_result=$func_quote_result # fi # } # func_add_hook func_parse_options my_silent_option # # # my_option_validation () # { # $debug_cmd # # $opt_silent && $opt_verbose && func_fatal_help "\ # '--silent' and '--verbose' options are mutually exclusive." # } # func_add_hook func_validate_options my_option_validation # # You'll also need to manually amend $usage_message to reflect the extra # options you parse. It's preferable to append if you can, so that # multiple option parsing hooks can be added safely. # func_options_finish [ARG]... # ---------------------------- # Finishing the option parse loop (call 'func_options' hooks ATM). func_options_finish () { $debug_cmd func_run_hooks func_options ${1+"$@"} func_propagate_result func_run_hooks func_options_finish } # func_options [ARG]... # --------------------- # All the functions called inside func_options are hookable. See the # individual implementations for details. func_hookable func_options func_options () { $debug_cmd _G_options_quoted=false for my_func in options_prep parse_options validate_options options_finish do func_unset func_${my_func}_result func_unset func_run_hooks_result eval func_$my_func '${1+"$@"}' func_propagate_result func_$my_func func_options if $func_propagate_result_result; then eval set dummy "$func_options_result"; shift _G_options_quoted=: fi done $_G_options_quoted || { # As we (func_options) are top-level options-parser function and # nobody quoted "$@" for us yet, we need to do it explicitly for # caller. func_quote eval ${1+"$@"} func_options_result=$func_quote_result } } # func_options_prep [ARG]... # -------------------------- # All initialisations required before starting the option parse loop. # Note that when calling hook functions, we pass through the list of # positional parameters. If a hook function modifies that list, and # needs to propagate that back to rest of this script, then the complete # modified list must be put in 'func_run_hooks_result' before returning. func_hookable func_options_prep func_options_prep () { $debug_cmd # Option defaults: opt_verbose=false opt_warning_types= func_run_hooks func_options_prep ${1+"$@"} func_propagate_result func_run_hooks func_options_prep } # func_parse_options [ARG]... # --------------------------- # The main option parsing loop. func_hookable func_parse_options func_parse_options () { $debug_cmd _G_parse_options_requote=false # this just eases exit handling while test $# -gt 0; do # Defer to hook functions for initial option parsing, so they # get priority in the event of reusing an option name. func_run_hooks func_parse_options ${1+"$@"} func_propagate_result func_run_hooks func_parse_options if $func_propagate_result_result; then eval set dummy "$func_parse_options_result"; shift # Even though we may have changed "$@", we passed the "$@" array # down into the hook and it quoted it for us (because we are in # this if-branch). No need to quote it again. _G_parse_options_requote=false fi # Break out of the loop if we already parsed every option. test $# -gt 0 || break # We expect that one of the options parsed in this function matches # and thus we remove _G_opt from "$@" and need to re-quote. _G_match_parse_options=: _G_opt=$1 shift case $_G_opt in --debug|-x) debug_cmd='set -x' func_echo "enabling shell trace mode" >&2 $debug_cmd ;; --no-warnings|--no-warning|--no-warn) set dummy --warnings none ${1+"$@"} shift ;; --warnings|--warning|-W) if test $# = 0 && func_missing_arg $_G_opt; then _G_parse_options_requote=: break fi case " $warning_categories $1" in *" $1 "*) # trailing space prevents matching last $1 above func_append_uniq opt_warning_types " $1" ;; *all) opt_warning_types=$warning_categories ;; *none) opt_warning_types=none warning_func=: ;; *error) opt_warning_types=$warning_categories warning_func=func_fatal_error ;; *) func_fatal_error \ "unsupported warning category: '$1'" ;; esac shift ;; --verbose|-v) opt_verbose=: ;; --version) func_version ;; -\?|-h) func_usage ;; --help) func_help ;; # Separate optargs to long options (plugins may need this): --*=*) func_split_equals "$_G_opt" set dummy "$func_split_equals_lhs" \ "$func_split_equals_rhs" ${1+"$@"} shift ;; # Separate optargs to short options: -W*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "$func_split_short_opt_arg" ${1+"$@"} shift ;; # Separate non-argument short options: -\?*|-h*|-v*|-x*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "-$func_split_short_opt_arg" ${1+"$@"} shift ;; --) _G_parse_options_requote=: ; break ;; -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; *) set dummy "$_G_opt" ${1+"$@"}; shift _G_match_parse_options=false break ;; esac if $_G_match_parse_options; then _G_parse_options_requote=: fi done if $_G_parse_options_requote; then # save modified positional parameters for caller func_quote eval ${1+"$@"} func_parse_options_result=$func_quote_result fi } # func_validate_options [ARG]... # ------------------------------ # Perform any sanity checks on option settings and/or unconsumed # arguments. func_hookable func_validate_options func_validate_options () { $debug_cmd # Display all warnings if -W was not given. test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" func_run_hooks func_validate_options ${1+"$@"} func_propagate_result func_run_hooks func_validate_options # Bail if the options were screwed! $exit_cmd $EXIT_FAILURE } ## ----------------- ## ## Helper functions. ## ## ----------------- ## # This section contains the helper functions used by the rest of the # hookable option parser framework in ascii-betical order. # func_fatal_help ARG... # ---------------------- # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { $debug_cmd eval \$ECHO \""Usage: $usage"\" eval \$ECHO \""$fatal_help"\" func_error ${1+"$@"} exit $EXIT_FAILURE } # func_help # --------- # Echo long help message to standard output and exit. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message" exit 0 } # func_missing_arg ARGNAME # ------------------------ # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { $debug_cmd func_error "Missing argument for '$1'." exit_cmd=exit } # func_split_equals STRING # ------------------------ # Set func_split_equals_lhs and func_split_equals_rhs shell variables # after splitting STRING at the '=' sign. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_equals () { $debug_cmd func_split_equals_lhs=${1%%=*} func_split_equals_rhs=${1#*=} if test "x$func_split_equals_lhs" = "x$1"; then func_split_equals_rhs= fi }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_equals () { $debug_cmd func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` func_split_equals_rhs= test "x$func_split_equals_lhs=" = "x$1" \ || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` } fi #func_split_equals # func_split_short_opt SHORTOPT # ----------------------------- # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_short_opt () { $debug_cmd func_split_short_opt_arg=${1#??} func_split_short_opt_name=${1%"$func_split_short_opt_arg"} }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_short_opt () { $debug_cmd func_split_short_opt_name=`expr "x$1" : 'x\(-.\)'` func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` } fi #func_split_short_opt # func_usage # ---------- # Echo short help message to standard output and exit. func_usage () { $debug_cmd func_usage_message $ECHO "Run '$progname --help |${PAGER-more}' for full usage" exit 0 } # func_usage_message # ------------------ # Echo short help message to standard output. func_usage_message () { $debug_cmd eval \$ECHO \""Usage: $usage"\" echo $SED -n 's|^# || /^Written by/{ x;p;x } h /^Written by/q' < "$progpath" echo eval \$ECHO \""$usage_message"\" } # func_version # ------------ # Echo version message to standard output and exit. # The version message is extracted from the calling file's header # comments, with leading '# ' stripped: # 1. First display the progname and version # 2. Followed by the header comment line matching /^# Written by / # 3. Then a blank line followed by the first following line matching # /^# Copyright / # 4. Immediately followed by any lines between the previous matches, # except lines preceding the intervening completely blank line. # For example, see the header comments of this file. func_version () { $debug_cmd printf '%s\n' "$progname $scriptversion" $SED -n ' /^# Written by /!b s|^# ||; p; n :fwd2blnk /./ { n b fwd2blnk } p; n :holdwrnt s|^# || s|^# *$|| /^Copyright /!{ /./H n b holdwrnt } s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| G s|\(\n\)\n*|\1|g p; q' < "$progpath" exit $? } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "30/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: # Set a version string. scriptversion='(GNU libtool) 2.5.4' # func_version # ------------ # Echo version message to standard output and exit. func_version () { $debug_cmd year=`date +%Y` cat < This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Originally written by Gordon Matzigkeit, 1996 (See AUTHORS for complete contributor listing) EOF exit $? } # func_echo ARG... # ---------------- # Libtool also displays the current mode in messages, so override # funclib.sh func_echo with this custom definition. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" done IFS=$func_echo_IFS } ## ---------------- ## ## Options parsing. ## ## ---------------- ## # Hook in the functions to make sure our own options are parsed during # the option parsing loop. usage='$progpath [OPTION]... [MODE-ARG]...' # Short help message in response to '-h'. usage_message="Options: --config show all configuration variables --debug enable verbose shell tracing -n, --dry-run display commands without modifying any files --features display basic configuration information --finish use operation '--mode=finish' --mode=MODE use operation mode MODE --no-finish don't update shared library cache --no-quiet, --no-silent print default informational messages --no-warnings equivalent to '-Wnone' --preserve-dup-deps don't remove duplicate dependency libraries --quiet, --silent don't print informational messages --reorder-cache=DIRS reorder shared library cache for preferred DIRS --tag=TAG use configuration variables from tag TAG -v, --verbose print more informational messages than default --version print version information -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -h, --help, --help-all print short, long, or detailed help message " # Additional text appended to 'usage_message' in response to '--help'. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message MODE must be one of the following: clean remove files from the build directory compile compile a source file into a libtool object execute automatically set library path, then run a program finish complete the installation of libtool libraries install install libraries or executables link create a library or an executable uninstall remove libraries from an installed directory MODE-ARGS vary depending on the MODE. When passed as first option, '--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that. Try '$progname --help --mode=MODE' for a more detailed description of MODE. When reporting a bug, please describe a test case to reproduce it and include the following information: host-triplet: $host shell: $SHELL compiler: $LTCC compiler flags: $LTCFLAGS linker: $LD (gnu? $with_gnu_ld) version: $progname $scriptversion Debian-2.5.4-4 automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` Report bugs to . GNU libtool home page: . General help using GNU software: ." exit 0 } # func_lo2o OBJECT-NAME # --------------------- # Transform OBJECT-NAME from a '.lo' suffix to the platform specific # object suffix. lo2o=s/\\.lo\$/.$objext/ o2lo=s/\\.$objext\$/.lo/ if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_lo2o () { case $1 in *.lo) func_lo2o_result=${1%.lo}.$objext ;; * ) func_lo2o_result=$1 ;; esac }' # func_xform LIBOBJ-OR-SOURCE # --------------------------- # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) # suffix to a '.lo' libtool-object suffix. eval 'func_xform () { func_xform_result=${1%.*}.lo }' else # ...otherwise fall back to using sed. func_lo2o () { func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` } func_xform () { func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` } fi # func_fatal_configuration ARG... # ------------------------------- # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { func_fatal_error ${1+"$@"} \ "See the $PACKAGE documentation for more information." \ "Fatal configuration error." } # func_config # ----------- # Display the configuration for all the tags in this script. func_config () { re_begincf='^# ### BEGIN LIBTOOL' re_endcf='^# ### END LIBTOOL' # Default configuration. $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" # Now print the configurations for the tags. for tagname in $taglist; do $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" done exit $? } # func_features # ------------- # Display the features supported by this script. func_features () { echo "host: $host" if test yes = "$build_libtool_libs"; then echo "enable shared libraries" else echo "disable shared libraries" fi if test yes = "$build_old_libs"; then echo "enable static libraries" else echo "disable static libraries" fi exit $? } # func_enable_tag TAGNAME # ----------------------- # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { # Global variable: tagname=$1 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" sed_extractcf=/$re_begincf/,/$re_endcf/p # Validate tagname. case $tagname in *[!-_A-Za-z0-9,/]*) func_fatal_error "invalid tag name: $tagname" ;; esac # Don't test for the "default" C tag, as we know it's # there but not specially marked. case $tagname in CC) ;; *) if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then taglist="$taglist $tagname" # Evaluate the configuration. Be careful to quote the path # and the sed script, to avoid splitting on whitespace, but # also don't use non-portable quotes within backquotes within # quotes we have to do it in 2 steps: extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` eval "$extractedcf" else func_error "ignoring unknown tag $tagname" fi ;; esac } # func_check_version_match # ------------------------ # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { if test "$package_revision" != "$macro_revision"; then if test "$VERSION" != "$macro_version"; then if test -z "$macro_version"; then cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF fi else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF fi exit $EXIT_MISMATCH fi } # libtool_options_prep [ARG]... # ----------------------------- # Preparation for options parsed by libtool. libtool_options_prep () { $debug_mode # Option defaults: opt_config=false opt_dlopen= opt_dry_run=false opt_help=false opt_mode= opt_reorder_cache=false opt_preserve_dup_deps=false opt_quiet=false opt_finishing=true opt_warning= nonopt= preserve_args= _G_rc_lt_options_prep=: _G_rc_lt_options_prep=: # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) shift; set dummy --mode clean ${1+"$@"}; shift ;; compile|compil|compi|comp|com|co|c) shift; set dummy --mode compile ${1+"$@"}; shift ;; execute|execut|execu|exec|exe|ex|e) shift; set dummy --mode execute ${1+"$@"}; shift ;; finish|finis|fini|fin|fi|f) shift; set dummy --mode finish ${1+"$@"}; shift ;; install|instal|insta|inst|ins|in|i) shift; set dummy --mode install ${1+"$@"}; shift ;; link|lin|li|l) shift; set dummy --mode link ${1+"$@"}; shift ;; uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; *) _G_rc_lt_options_prep=false ;; esac if $_G_rc_lt_options_prep; then # Pass back the list of options. func_quote eval ${1+"$@"} libtool_options_prep_result=$func_quote_result fi } func_add_hook func_options_prep libtool_options_prep # libtool_parse_options [ARG]... # --------------------------------- # Provide handling for libtool specific options. libtool_parse_options () { $debug_cmd _G_rc_lt_parse_options=false # Perform our own loop to consume as many options as possible in # each iteration. while test $# -gt 0; do _G_match_lt_parse_options=: _G_opt=$1 shift case $_G_opt in --dry-run|--dryrun|-n) opt_dry_run=: ;; --config) func_config ;; --dlopen|-dlopen) opt_dlopen="${opt_dlopen+$opt_dlopen }$1" shift ;; --preserve-dup-deps) opt_preserve_dup_deps=: ;; --features) func_features ;; --finish) set dummy --mode finish ${1+"$@"}; shift ;; --help) opt_help=: ;; --help-all) opt_help=': help-all' ;; --mode) test $# = 0 && func_missing_arg $_G_opt && break opt_mode=$1 case $1 in # Valid mode arguments: clean|compile|execute|finish|install|link|relink|uninstall) ;; # Catch anything else as an error *) func_error "invalid argument '$1' for $_G_opt" exit_cmd=exit ;; esac shift ;; --no-finish) opt_finishing=false func_append preserve_args " $_G_opt" ;; --no-silent|--no-quiet) opt_quiet=false func_append preserve_args " $_G_opt" ;; --no-warnings|--no-warning|--no-warn) opt_warning=false func_append preserve_args " $_G_opt" ;; --no-verbose) opt_verbose=false func_append preserve_args " $_G_opt" ;; --reorder-cache) opt_reorder_cache=true shared_lib_dirs=$1 if test -n "$shared_lib_dirs"; then case $1 in # Must begin with /: /*) ;; # Catch anything else as an error (relative paths) *) func_error "invalid argument '$1' for $_G_opt" func_error "absolute paths are required for $_G_opt" exit_cmd=exit ;; esac fi shift ;; --silent|--quiet) opt_quiet=: opt_verbose=false func_append preserve_args " $_G_opt" ;; --tag) test $# = 0 && func_missing_arg $_G_opt && break opt_tag=$1 func_append preserve_args " $_G_opt $1" func_enable_tag "$1" shift ;; --verbose|-v) opt_quiet=false opt_verbose=: func_append preserve_args " $_G_opt" ;; # An option not handled by this hook function: *) set dummy "$_G_opt" ${1+"$@"} ; shift _G_match_lt_parse_options=false break ;; esac $_G_match_lt_parse_options && _G_rc_lt_parse_options=: done if $_G_rc_lt_parse_options; then # save modified positional parameters for caller func_quote eval ${1+"$@"} libtool_parse_options_result=$func_quote_result fi } func_add_hook func_parse_options libtool_parse_options # func_warning ARG... # ------------------- # Libtool warnings are not categorized, so override funclib.sh # func_warning with this simpler definition. func_warning () { if $opt_warning; then $debug_cmd $warning_func ${1+"$@"} fi } # libtool_validate_options [ARG]... # --------------------------------- # Perform any sanity checks on option settings and/or unconsumed # arguments. libtool_validate_options () { # save first non-option argument if test 0 -lt $#; then nonopt=$1 shift fi # preserve --debug test : = "$debug_cmd" || func_append preserve_args " --debug" case $host_os in # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 cygwin* | mingw* | windows* | pw32* | cegcc* | solaris2* | os2*) # don't eliminate duplications in $postdeps and $predeps opt_duplicate_compiler_generated_deps=: ;; *) opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps ;; esac $opt_help || { # Sanity checks first: func_check_version_match test yes != "$build_libtool_libs" \ && test yes != "$build_old_libs" \ && func_fatal_configuration "not configured to build any kind of library" # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$opt_dlopen" && test execute != "$opt_mode"; then func_error "unrecognized option '-dlopen'" $ECHO "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help=$help help="Try '$progname --help --mode=$opt_mode' for more information." } # Pass back the unparsed argument list func_quote eval ${1+"$@"} libtool_validate_options_result=$func_quote_result } func_add_hook func_validate_options libtool_validate_options # Process options as early as possible so that --help and --version # can return quickly. func_options ${1+"$@"} eval set dummy "$func_options_result"; shift ## ----------- ## ## Main. ## ## ----------- ## magic='%%%MAGIC variable%%%' magic_exe='%%%MAGIC EXE variable%%%' # Global variables. extracted_archives= extracted_serial=0 # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } # func_generated_by_libtool # True iff stdin has been generated by Libtool. This function is only # a basic sanity check; it will hardly flush out determined imposters. func_generated_by_libtool_p () { $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # func_lalib_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p } # func_lalib_unsafe_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be # fatal anyway. Works if 'file' does not exist. func_lalib_unsafe_p () { lalib_p=no if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then for lalib_p_l in 1 2 3 4 do read lalib_p_line case $lalib_p_line in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi test yes = "$lalib_p" } # func_ltwrapper_script_p file # True iff FILE is a libtool wrapper script # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_script_p () { test -f "$1" && $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p } # func_ltwrapper_executable_p file # True iff FILE is a libtool wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_executable_p () { func_ltwrapper_exec_suffix= case $1 in *.exe) ;; *) func_ltwrapper_exec_suffix=.exe ;; esac $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 } # func_ltwrapper_scriptname file # Assumes file is an ltwrapper_executable # uses $file to determine the appropriate filename for a # temporary ltwrapper_script. func_ltwrapper_scriptname () { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper } # func_ltwrapper_p file # True iff FILE is a libtool wrapper script or wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_p () { func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" } # func_execute_cmds commands fail_cmd # Execute tilde-delimited COMMANDS. # If FAIL_CMD is given, eval that upon failure. # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { $debug_cmd save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs } # func_source file # Source FILE, adding directory component if necessary. # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # 'FILE.' does not work on cygwin managed mounts. func_source () { $debug_cmd case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; esac } # func_resolve_sysroot PATH # Replace a leading = in PATH with a sysroot. Store the result into # func_resolve_sysroot_result func_resolve_sysroot () { func_resolve_sysroot_result=$1 case $func_resolve_sysroot_result in =*) func_stripname '=' '' "$func_resolve_sysroot_result" func_resolve_sysroot_result=$lt_sysroot$func_stripname_result ;; esac } # func_replace_sysroot PATH # If PATH begins with the sysroot, replace it with = and # store the result into func_replace_sysroot_result. func_replace_sysroot () { case $lt_sysroot:$1 in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" func_replace_sysroot_result='='$func_stripname_result ;; *) # Including no sysroot. func_replace_sysroot_result=$1 ;; esac } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { $debug_cmd if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case "$@ " in " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" func_fatal_error "specify a tag with '--tag'" # else # func_verbose "using $tagname tagged configuration" fi ;; esac fi } # func_write_libtool_object output_name pic_name nonpic_name # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. func_write_libtool_object () { write_libobj=$1 if test yes = "$build_libtool_libs"; then write_lobj=\'$2\' else write_lobj=none fi if test yes = "$build_old_libs"; then write_oldobj=\'$3\' else write_oldobj=none fi $opt_dry_run || { cat >${write_libobj}T </dev/null` if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | $SED -e "$sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi fi } # end: func_convert_core_file_wine_to_w32 # func_convert_core_path_wine_to_w32 ARG # Helper function used by path conversion functions when $build is *nix, and # $host is mingw, windows, cygwin, or some other w32 environment. Relies on a # correctly configured wine environment available, with the winepath program # in $build's $PATH. Assumes ARG has no leading or trailing path separator # characters. # # ARG is path to be converted from $build format to win32. # Result is available in $func_convert_core_path_wine_to_w32_result. # Unconvertible file (directory) names in ARG are skipped; if no directory names # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { $debug_cmd # unfortunately, winepath doesn't convert paths, only file names func_convert_core_path_wine_to_w32_result= if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" if test -n "$func_convert_core_file_wine_to_w32_result"; then if test -z "$func_convert_core_path_wine_to_w32_result"; then func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi fi done IFS=$oldIFS fi } # end: func_convert_core_path_wine_to_w32 # func_cygpath ARGS... # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or # (2), returns the Cygwin file name or path in func_cygpath_result (input # file name or path is assumed to be in w32 format, as previously converted # from $build's *nix or MSYS format). In case (3), returns the w32 file name # or path in func_cygpath_result (input file name or path is assumed to be in # Cygwin format). Returns an empty string on error. # # ARGS are passed to cygpath, with the last one being the file name or path to # be converted. # # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH # environment variable; do not put it in $PATH. func_cygpath () { $debug_cmd if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then # on failure, ensure result is empty func_cygpath_result= fi else func_cygpath_result= func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'" fi } #end: func_cygpath # func_convert_core_msys_to_w32 ARG # Convert file name or path ARG from MSYS format to w32 format. Return # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { $debug_cmd # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 # func_convert_file_check ARG1 ARG2 # Verify that ARG1 (a file name in $build format) was converted to $host # format in ARG2. Otherwise, emit an error message, but continue (resetting # func_to_host_file_result to ARG1). func_convert_file_check () { $debug_cmd if test -z "$2" && test -n "$1"; then func_error "Could not determine host file name corresponding to" func_error " '$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: func_to_host_file_result=$1 fi } # end func_convert_file_check # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH # Verify that FROM_PATH (a path in $build format) was converted to $host # format in TO_PATH. Otherwise, emit an error message, but continue, resetting # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { $debug_cmd if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" func_error " '$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. if test "x$1" != "x$2"; then lt_replace_pathsep_chars="s|$1|$2|g" func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else func_to_host_path_result=$3 fi fi } # end func_convert_path_check # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { $debug_cmd case $4 in $1 ) func_to_host_path_result=$3$func_to_host_path_result ;; esac case $4 in $2 ) func_append func_to_host_path_result "$3" ;; esac } # end func_convert_path_front_back_pathsep # func_convert_delimited_path PATH ORIG_DELIMITER NEW_DELIMITER # Replaces a delimiter for a given path. func_convert_delimited_path () { converted_path=`$ECHO "$1" | $SED "s#$2#$3#g"` } # end func_convert_delimited_path ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## # invoked via '$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. # func_to_host_file ARG # Converts the file name ARG from $build format to $host format. Return result # in func_to_host_file_result. func_to_host_file () { $debug_cmd $to_host_file_cmd "$1" } # end func_to_host_file # func_to_tool_file ARG LAZY # converts the file name ARG from $build format to toolchain format. Return # result in func_to_tool_file_result. If the conversion in use is listed # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { $debug_cmd case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 ;; *) $to_tool_file_cmd "$1" func_to_tool_file_result=$func_to_host_file_result ;; esac } # end func_to_tool_file # func_convert_file_noop ARG # Copy ARG to func_to_host_file_result. func_convert_file_noop () { func_to_host_file_result=$1 } # end func_convert_file_noop # func_convert_file_msys_to_w32 ARG # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_file_result. func_convert_file_msys_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_to_host_file_result=$func_convert_core_msys_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_w32 # func_convert_file_cygwin_to_w32 ARG # Convert file name ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. func_to_host_file_result=`cygpath -m "$1"` fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_cygwin_to_w32 # func_convert_file_nix_to_w32 ARG # Convert file name ARG from *nix to w32 format. Requires a wine environment # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" func_to_host_file_result=$func_convert_core_file_wine_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_w32 # func_convert_file_msys_to_cygwin ARG # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_cygwin # func_convert_file_nix_to_cygwin ARG # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed # in a wine environment, working winepath, and LT_CYGPATH set. Returns result # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_cygwin ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# # invoked via '$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. # # Path separators are also converted from $build format to $host format. If # ARG begins or ends with a path separator character, it is preserved (but # converted to $host format) on output. # # All path conversion functions are named using the following convention: # file name conversion function : func_convert_file_X_to_Y () # path conversion function : func_convert_path_X_to_Y () # where, for any given $build/$host combination the 'X_to_Y' value is the # same. If conversion functions are added for new $build/$host combinations, # the two new functions must follow this pattern, or func_init_to_host_path_cmd # will break. # func_init_to_host_path_cmd # Ensures that function "pointer" variable $to_host_path_cmd is set to the # appropriate value, based on the value of $to_host_file_cmd. to_host_path_cmd= func_init_to_host_path_cmd () { $debug_cmd if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" to_host_path_cmd=func_convert_path_$func_stripname_result fi } # func_to_host_path ARG # Converts the path ARG from $build format to $host format. Return result # in func_to_host_path_result. func_to_host_path () { $debug_cmd func_init_to_host_path_cmd $to_host_path_cmd "$1" } # end func_to_host_path # func_convert_path_noop ARG # Copy ARG to func_to_host_path_result. func_convert_path_noop () { func_to_host_path_result=$1 } # end func_convert_path_noop # func_convert_path_msys_to_w32 ARG # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_path_result. func_convert_path_msys_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; # and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_msys_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_msys_to_w32 # func_convert_path_cygwin_to_w32 ARG # Convert path ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_cygwin_to_w32 # func_convert_path_nix_to_w32 ARG # Convert path ARG from *nix to w32 format. Requires a wine environment and # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_path_wine_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_nix_to_w32 # func_convert_path_msys_to_cygwin ARG # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_msys_to_cygwin # func_convert_path_nix_to_cygwin ARG # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a # a wine environment, working winepath, and LT_CYGPATH set. Returns result in # func_to_host_file_result. func_convert_path_nix_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them # into '.;' and ';.', and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_nix_to_cygwin # func_dll_def_p FILE # True iff FILE is a Windows DLL '.def' file. # Keep in sync with _LT_DLL_DEF_P in libtool.m4 func_dll_def_p () { $debug_cmd func_dll_def_p_tmp=`$SED -n \ -e 's/^[ ]*//' \ -e '/^\(;.*\)*$/d' \ -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ -e q \ "$1"` test DEF = "$func_dll_def_p_tmp" } # func_reorder_shared_lib_cache DIRS # Reorder the shared library cache by unconfiguring previous shared library cache # and configuring preferred search directories before previous search directories. # Previous shared library cache: /usr/lib /usr/local/lib # Preferred search directories: /tmp/testing # Reordered shared library cache: /tmp/testing /usr/lib /usr/local/lib func_reorder_shared_lib_cache () { $debug_cmd case $host_os in openbsd*) get_search_directories=`PATH="$PATH:/sbin" ldconfig -r | $GREP "search directories" | $SED "s#.*search directories:\ ##g"` func_convert_delimited_path "$get_search_directories" ':' '\ ' save_search_directories=$converted_path func_convert_delimited_path "$1" ':' '\ ' # Ensure directories exist for dir in $converted_path; do # Ensure each directory is an absolute path case $dir in /*) ;; *) func_error "Directory '$dir' is not an absolute path" exit $EXIT_FAILURE ;; esac # Ensure no trailing slashes func_stripname '' '/' "$dir" dir=$func_stripname_result if test -d "$dir"; then if test -n "$preferred_search_directories"; then preferred_search_directories="$preferred_search_directories $dir" else preferred_search_directories=$dir fi else func_error "Directory '$dir' does not exist" exit $EXIT_FAILURE fi done PATH="$PATH:/sbin" ldconfig -U $save_search_directories PATH="$PATH:/sbin" ldconfig -m $preferred_search_directories $save_search_directories get_search_directories=`PATH="$PATH:/sbin" ldconfig -r | $GREP "search directories" | $SED "s#.*search directories:\ ##g"` func_convert_delimited_path "$get_search_directories" ':' '\ ' reordered_search_directories=$converted_path $ECHO "Original: $save_search_directories" $ECHO "Reordered: $reordered_search_directories" exit $EXIT_SUCCESS ;; *) func_error "--reorder-cache is not supported for host_os=$host_os." exit $EXIT_FAILURE ;; esac } # end func_reorder_shared_lib_cache # func_mode_compile arg... func_mode_compile () { $debug_cmd # Get the compilation command and the source file. base_compile= srcfile=$nonopt # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= pie_flag= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg=$arg arg_mode=normal ;; target ) libobj=$arg arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) test -n "$libobj" && \ func_fatal_error "you cannot specify '-o' more than once" arg_mode=target continue ;; -pie | -fpie | -fPIE) func_append pie_flag " $arg" continue ;; -shared | -static | -prefer-pic | -prefer-non-pic) func_append later " $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= save_ifs=$IFS; IFS=, for arg in $args; do IFS=$save_ifs func_append_quoted lastarg "$arg" done IFS=$save_ifs func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result # Add the arguments to base_compile. func_append base_compile " $lastarg" continue ;; *) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg=$srcfile srcfile=$arg ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. func_append_quoted base_compile "$lastarg" done # for arg case $arg_mode in arg) func_fatal_error "you must specify an argument for -Xcompile" ;; target) func_fatal_error "you must specify a target with '-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" libobj=$func_basename_result } ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo case $libobj in *.[cCFSifmso] | \ *.ada | *.adb | *.ads | *.asm | \ *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) func_xform "$libobj" libobj=$func_xform_result ;; esac case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) func_fatal_error "cannot determine name of library object from '$libobj'" ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -shared) test yes = "$build_libtool_libs" \ || func_fatal_configuration "cannot build a shared library" build_old_libs=no continue ;; -static) build_libtool_libs=no build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done func_quote_arg pretty "$libobj" test "X$libobj" != "X$func_quote_arg_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ && func_warning "libobj name '$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" objname=$func_basename_result xdir=$func_dirname_result lobj=$xdir$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. if test yes = "$build_old_libs"; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | windows* | pw32* | os2* | cegcc*) pic_mode=default ;; esac if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test no = "$compiler_c_o"; then output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext lockfile=$output_obj.lock else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test yes = "$need_locks"; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done elif test warn = "$need_locks"; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi func_append removelist " $output_obj" $ECHO "$srcfile" > "$lockfile" fi $opt_dry_run || $RM $removelist func_append removelist " $lockfile" trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result func_quote_arg pretty "$srcfile" qsrcfile=$func_quote_arg_result # Only build a PIC object if we are building libtool libraries. if test yes = "$build_libtool_libs"; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test no != "$pic_mode"; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code command="$base_compile $qsrcfile" fi func_mkdir_p "$xdir$objdir" if test -z "$output_obj"; then # Place PIC objects in $objdir func_append command " -o $lobj" fi func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then func_show_eval '$MV "$output_obj" "$lobj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi # Allow error messages only from the first compilation. if test yes = "$suppress_opt"; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test yes = "$build_old_libs"; then if test yes != "$pic_mode"; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test yes = "$compiler_c_o"; then func_append command " -o $obj" fi # Suppress compiler output if we already did a PIC compilation. func_append command "$suppress_output" func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then func_show_eval '$MV "$output_obj" "$obj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi fi $opt_dry_run || { func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked if test no != "$need_locks"; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test compile = "$opt_mode" && func_mode_compile ${1+"$@"} } func_mode_help () { # We need to display help for each of the modes. case $opt_mode in "") # Generic help is extracted from the usage comments # at the start of this file. func_help ;; clean) $ECHO \ "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $ECHO \ "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only -shared do not build a '.o' file suitable for static linking -static only build a '.o' file suitable for static linking -Wc,FLAG -Xcompiler FLAG pass FLAG directly to the compiler COMPILE-COMMAND is a command to be used in creating a 'standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix '.c' with the library object suffix, '.lo'." ;; execute) $ECHO \ "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to '-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $ECHO \ "Usage: $progname [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the '--dry-run' option if you just want to see what would be executed." ;; install) $ECHO \ "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the 'install' or 'cp' program. The following components of INSTALL-COMMAND are treated specially: -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $ECHO \ "Usage: $progname [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) -dlopen FILE '-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE use a list of object files found in FILE to specify objects -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -shared only do dynamic linking of libtool libraries -shrext SUFFIX override the standard shared library file extension -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] -weak LIBNAME declare that the target provides the LIBNAME interface -Wc,FLAG -Xcompiler FLAG pass linker-specific FLAG directly to the compiler -Wa,FLAG -Xassembler FLAG pass linker-specific FLAG directly to the assembler -Wl,FLAG -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) All other options (arguments beginning with '-') are ignored. Every other argument is treated as a filename. Files ending in '.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in '.la', then a libtool library is created, only library objects ('.lo' files) may be specified, and '-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created using 'ar' and 'ranlib', or on Windows using 'lib'. If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $ECHO \ "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) func_fatal_help "invalid operation mode '$opt_mode'" ;; esac echo $ECHO "Try '$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then if test : = "$opt_help"; then func_mode_help else { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done } | $SED -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do echo func_mode_help done } | $SED '1d /^When reporting/,/^Report/{ H d } $x /information about other modes/d /more detailed .*MODE/d s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' fi exit $? fi # If option '--reorder-cache', reorder the shared library cache and exit. if $opt_reorder_cache; then func_reorder_shared_lib_cache $shared_lib_dirs fi # func_mode_execute arg... func_mode_execute () { $debug_cmd # The first argument is the command name. cmd=$nonopt test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ || func_fatal_help "'$file' is not a file" dir= case $file in *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$lib' is not a valid libtool archive" # Read the libtool library. dlname= library_names= func_source "$file" # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ func_warning "'$file' was not linked with '-export-dynamic'" continue fi func_dirname "$file" "" "." dir=$func_dirname_result if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'" fi fi ;; *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." dir=$func_dirname_result ;; *) func_warning "'-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir=$absdir # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic=$magic # Check if any of the arguments is a wrapper script. args= for file do case $file in -* | *.la | *.lo ) ;; *) # Do a test to see if this is really a libtool program. if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. file=$progdir/$program elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. file=$progdir/$program fi ;; esac # Quote arguments (to preserve shell metacharacters). func_append_quoted args "$file" done if $opt_dry_run; then # Display what would be done. if test -n "$shlibpath_var"; then eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" echo "export $shlibpath_var" fi $ECHO "$cmd$args" exit $EXIT_SUCCESS else if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd=\$cmd$args fi } test execute = "$opt_mode" && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $debug_cmd libs= libdirs= admincmds= for opt in "$nonopt" ${1+"$@"} do if test -d "$opt"; then func_append libdirs " $opt" elif test -f "$opt"; then if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else func_warning "'$opt' is not a valid libtool archive" fi else func_fatal_error "invalid argument '$opt'" fi done if test -n "$libs"; then if test -n "$lt_sysroot"; then sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" else sysroot_cmd= fi # Remove sysroot references if $opt_dry_run; then for lib in $libs; do echo "removing references to $lt_sysroot and '=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done ${RM}r "$tmpdir" fi fi if test -n "$finish_cmds$finish_eval" && test -n "$libdirs" && $opt_finishing; then for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. func_execute_cmds "$finish_cmds" 'admincmds="$admincmds '"$cmd"'"' fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $opt_dry_run || eval "$cmds" || func_append admincmds " $cmds" fi done fi # Exit here if they wanted silent mode. $opt_quiet && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" echo "Libraries have been installed in:" for libdir in $libdirs; do $ECHO " $libdir" done if test "false" = "$opt_finishing"; then echo echo "NOTE: finish_cmds were not executed during testing, so you must" echo "manually run ldconfig to add a given test directory, LIBDIR, to" echo "the search path for generated executables." fi echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" echo "specify the full pathname of the library, or use the '-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then echo " - add LIBDIR to the '$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then echo " - add LIBDIR to the '$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $ECHO " - use the '$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then echo " - have your system administrator add LIBDIR to '/etc/ld.so.conf'" fi echo echo "See any operating system documentation about shared libraries for" case $host in solaris2.[6789]|solaris2.1[0-9]) echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" echo "pages." ;; *) echo "more information, such as the ld(1) and ld.so(8) manual pages." ;; esac echo "----------------------------------------------------------------------" fi exit $EXIT_SUCCESS } test finish = "$opt_mode" && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $debug_cmd # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || # Allow the use of GNU shtool's install command. case $nonopt in *shtool*) :;; *) false;; esac then # Aesthetically quote it. func_quote_arg pretty "$nonopt" install_prog="$func_quote_arg_result " arg=$1 shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. func_quote_arg pretty "$arg" func_append install_prog "$func_quote_arg_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; *) install_cp=false ;; esac # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=false stripme= no_mode=: for arg do arg2= if test -n "$dest"; then func_append files " $dest" dest=$arg continue fi case $arg in -d) isdir=: ;; -f) if $install_cp; then :; else prev=$arg fi ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then if test X-m = "X$prev" && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. func_quote_arg pretty "$arg" func_append install_prog " $func_quote_arg_result" if test -n "$arg2"; then func_quote_arg pretty "$arg2" fi func_append install_shared_prog " $func_quote_arg_result" done test -z "$install_prog" && \ func_fatal_help "you must specify an install program" test -n "$prev" && \ func_fatal_help "the '$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else func_quote_arg pretty "$install_override_mode" func_append install_shared_prog " -m $func_quote_arg_result" fi fi if test -z "$files"; then if test -z "$dest"; then func_fatal_help "no file or destination specified" else func_fatal_help "you must specify a destination" fi fi # Strip any trailing slash from the destination. func_stripname '' '/' "$dest" dest=$func_stripname_result # Check to see that the destination is a directory. test -d "$dest" && isdir=: if $isdir; then destdir=$dest destname= else func_dirname_and_basename "$dest" "" "." destdir=$func_dirname_result destname=$func_basename_result # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ func_fatal_help "'$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) func_fatal_help "'$destdir' must be an absolute directory name" ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic=$magic staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. func_append staticlibs " $file" ;; *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$file' is not a valid libtool archive" library_names= old_library= relink_command= func_source "$file" # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) func_append current_libdirs " $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) func_append future_libdirs " $libdir" ;; esac fi func_dirname "$file" "/" "" dir=$func_dirname_result func_append dir "$objdir" if test -n "$relink_command"; then # Strip any trailing slash from the destination. func_stripname '' '/' "$libdir" destlibdir=$func_stripname_result func_stripname '' '/' "$destdir" s_destdir=$func_stripname_result # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$ECHO "X$s_destdir" | $Xsed -e "s%$destlibdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi func_warning "relinking '$file'" func_show_eval "$relink_command" \ 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then realname=$1 shift srcname=$realname test -n "$relink_command" && srcname=${realname}T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' tstripme=$stripme case $host_os in cygwin* | mingw* | windows* | pw32* | cegcc*) case $realname in *.dll.a) tstripme= ;; esac ;; os2*) case $realname in *_dll.a) tstripme= ;; esac ;; esac if test -n "$tstripme" && test -n "$striplib"; then func_show_eval "$striplib $destdir/$realname" 'exit $?' fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try 'ln -sf' first, because the 'ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do test "$linkname" != "$realname" \ && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" done fi # Do each command in the postinstall commands. lib=$destdir/$realname func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" name=$func_basename_result instname=$dir/${name}i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. test -n "$old_library" && func_append staticlibs " $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) func_lo2o "$destfile" staticdest=$func_lo2o_result ;; *.$objext) staticdest=$destfile destfile= ;; *) func_fatal_help "cannot copy a libtool object to '$destfile'" ;; esac # Install the libtool object if requested. test -n "$destfile" && \ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. if test yes = "$build_old_libs"; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext= case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result stripped_ext=.exe fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin* | *mingw* | *windows*) if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" wrapper=$func_ltwrapper_scriptname_result else func_stripname '' '.exe' "$file" wrapper=$func_stripname_result fi ;; *) wrapper=$file ;; esac if func_ltwrapper_script_p "$wrapper"; then notinst_deplibs= relink_command= func_source "$wrapper" # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ func_fatal_error "invalid libtool wrapper script '$wrapper'" finalize=: for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'` if test -n "$libdir" && test ! -f "$libfile"; then func_warning "'$lib' has not been installed in '$libdir'" finalize=false fi done relink_command= func_source "$wrapper" outputname= if test no = "$fast_install" && test -n "$relink_command"; then $opt_dry_run || { if $finalize; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" file=$func_basename_result outputname=$tmpdir/$file # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` $opt_quiet || { func_quote_arg expand,pretty "$relink_command" eval "func_echo $func_quote_arg_result" } if eval "$relink_command"; then : else func_error "error: relink '$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi file=$outputname else func_warning "cannot relink '$file'" fi } else # Install the binary that we compiled earlier. file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) func_stripname '' '.exe' "$destfile" destfile=$func_stripname_result ;; esac ;; esac func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' $opt_dry_run || if test -n "$outputname"; then ${RM}r "$tmpdir" fi ;; esac done for file in $staticlibs; do func_basename "$file" name=$func_basename_result # Set up the ranlib parameters. oldlib=$destdir/$name func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result func_show_eval "$install_prog \$file \$oldlib" 'exit $?' if test -n "$stripme" && test -n "$old_striplib"; then func_show_eval "$old_striplib $tool_oldlib" 'exit $?' fi # Do each command in the postinstall commands. func_execute_cmds "$old_postinstall_cmds" 'exit $?' done test -n "$future_libdirs" && \ func_warning "remember to run '$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } test install = "$opt_mode" && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p # Extract symbols from dlprefiles and create ${outputname}S.o with # a dlpreopen symbol table. func_generate_dlsyms () { $debug_cmd my_outputname=$1 my_originator=$2 my_pic_p=${3-false} my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then if test -n "$NM" && test -n "$global_symbol_pipe"; then my_dlsyms=${my_outputname}S.c else func_error "not configured to extract global symbols from dlpreopened files" fi fi if test -n "$my_dlsyms"; then case $my_dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist=$output_objdir/$my_outputname.nm func_show_eval "$RM $nlist ${nlist}S ${nlist}T" # Parse the name list into a source file. func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ /* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */ /* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif #if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* External symbol declarations for the compiler. */\ " if test yes = "$dlself"; then func_verbose "generating symbol list for '$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 func_verbose "extracting global C symbols from '$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $opt_dry_run || { eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi if test -n "$export_symbols_regex"; then $opt_dry_run || { eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols=$output_objdir/$outputname.exp $opt_dry_run || { $RM $export_symbols eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *windows* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac } else $opt_dry_run || { eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* | *windows* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac } fi fi for dlprefile in $dlprefiles; do func_verbose "extracting global C symbols from '$dlprefile'" func_basename "$dlprefile" name=$func_basename_result case $host in *cygwin* | *mingw* | *windows* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" dlprefile_dlbasename= if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` if test -n "$dlprefile_dlname"; then func_basename "$dlprefile_dlname" dlprefile_dlbasename=$func_basename_result else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" dlprefile_dlbasename=$sharedlib_from_linklib_result fi fi $opt_dry_run || { if test -n "$dlprefile_dlbasename"; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" eval '$ECHO ": $name " >> "$nlist"' fi func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 case $host in i[3456]86-*-mingw32*) eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" ;; *) eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/__nm_//' >> '$nlist'" ;; esac } else # not an import lib $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } fi ;; *) $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } ;; esac done $opt_dry_run || { # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $MV "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if $GREP -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else $GREP -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' else echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi func_show_eval '$RM "${nlist}I"' if test -n "$global_symbol_to_import"; then eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' fi echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ typedef struct { const char *name; void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[];\ " if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ static void lt_syminit(void) { LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; for (; symbol->name; ++symbol) {" $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" echo >> "$output_objdir/$my_dlsyms" "\ } }" fi echo >> "$output_objdir/$my_dlsyms" "\ LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = { {\"$my_originator\", (void *) 0}," if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ {\"@INIT@\", (void *) <_syminit}," fi case $need_lib_prefix in no) eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; *) eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; esac echo >> "$output_objdir/$my_dlsyms" "\ {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_${my_prefix}_LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " } # !$opt_dry_run pic_flag_for_symtable= case "$compile_command " in *" -static "*) ;; *) case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) $my_pic_p && pic_flag_for_symtable=" $pic_flag" ;; esac ;; esac symtab_cflags= for arg in $LTCFLAGS; do case $arg in -pie | -fpie | -fPIE) ;; *) func_append symtab_cflags " $arg" ;; esac done # Now compile the dynamic symbol file. func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"' # Transform the symbol file into the correct name. symfileobj=$output_objdir/${my_outputname}S.$objext case $host in *cygwin* | *mingw* | *windows* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` else compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` fi ;; *) compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` ;; esac ;; *) func_fatal_error "unknown suffix for '$my_dlsyms'" ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` fi } # func_cygming_gnu_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is a GNU/binutils-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_gnu_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` test -n "$func_cygming_gnu_implib_tmp" } # func_cygming_ms_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is an MS-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_ms_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` test -n "$func_cygming_ms_implib_tmp" } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. # Despite the name, also deal with 64 bit binaries. func_win32_libid () { $debug_cmd win32_libid_type=unknown win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64|pe-aarch64)' >/dev/null; then case $nm_interface in "MS dumpbin") if func_cygming_ms_implib_p "$1" || func_cygming_gnu_implib_p "$1" then win32_nmres=import else win32_nmres= fi ;; *) func_to_tool_file "$1" func_convert_file_msys_to_w32 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | $SED -n -e ' 1,100{ / I /{ s|.*|import| p q } }'` ;; esac case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $ECHO "$win32_libid_type" } # func_cygming_dll_for_implib ARG # # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { $debug_cmd sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs # # The is the core of a fallback implementation of a # platform-specific function to extract the name of the # DLL associated with the specified import library LIBNAME. # # SECTION_NAME is either .idata$6 or .idata$7, depending # on the platform and compiler that created the implib. # # Echos the name of the DLL associated with the # specified import library. func_cygming_dll_for_implib_fallback_core () { $debug_cmd match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ # Place marker at beginning of archive member dllname section s/.*/====MARK====/ p d } # These lines can sometimes be longer than 43 characters, but # are always uninteresting /:[ ]*file format pe[i]\{,1\}-/d /^In archive [^:]*:/d # Ensure marker is printed /^====MARK====/p # Remove all lines with less than 43 characters /^.\{43\}/!d # From remaining lines, remove first 43 characters s/^.\{43\}//' | $SED -n ' # Join marker and all lines until next marker into a single line /^====MARK====/ b para H $ b para b :para x s/\n//g # Remove the marker s/^====MARK====// # Remove trailing dots and whitespace s/[\. \t]*$// # Print /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the # archive that possess that section. Heuristic: eliminate # all those that have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually # begins with a literal '.' or a single character followed by # a '.'. # # Of those that remain, print the first one. $SED -e '/^\./d;/^.\./d;q' } # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # # This fallback implementation is for use when $DLLTOOL # does not support the --identify-strict option. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { $debug_cmd if func_cygming_gnu_implib_p "$1"; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` elif func_cygming_ms_implib_p "$1"; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown sharedlib_from_linklib_result= fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { $debug_cmd f_ex_an_ar_dir=$1; shift f_ex_an_ar_oldlib=$1 if test yes = "$lock_old_archive_extraction"; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' if test yes = "$lock_old_archive_extraction"; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" fi } # func_extract_archives gentop oldlib ... func_extract_archives () { $debug_cmd my_gentop=$1; shift my_oldlibs=${1+"$@"} my_oldobjs= my_xlib= my_xabs= my_xdir= for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" my_xlib=$func_basename_result my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) func_arith $extracted_serial + 1 extracted_serial=$func_arith_result my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir=$my_gentop/$my_xlib_u func_mkdir_p "$my_xdir" case $host in *-darwin*) func_verbose "Extracting $my_xabs" # Do not bother doing anything if just a dry run $opt_dry_run || { darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` func_basename "$darwin_archive" darwin_base_archive=$func_basename_result darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches; do func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch" $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive" cd "unfat-$$/$darwin_base_archive-$darwin_arch" func_extract_an_archive "`pwd`" "$darwin_base_archive" cd "$darwin_curdir" $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` $LIPO -create -output "$darwin_file" $darwin_files done # $darwin_filelist $RM -rf unfat-$$ cd "$darwin_orig_dir" else cd $darwin_orig_dir func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches } # !$opt_dry_run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done func_extract_archives_result=$my_oldobjs } # func_emit_wrapper [arg=no] # # Emit a libtool wrapper script on stdout. # Don't directly open a file because we may want to # incorporate the script contents within a cygwin/mingw/windows # wrapper executable. Must ONLY be called from within # func_mode_link because it depends on a number of variables # set therein. # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script # will assume that the directory where it is stored is # the $objdir directory. This is a cygwin/mingw/windows-specific # behavior. func_emit_wrapper () { func_emit_wrapper_arg1=${1-no} $ECHO "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='$sed_quote_subst' # Be Bourne compatible if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variables: generated_by_libtool_version='$macro_version' notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$ECHO are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" func_quote_arg pretty "$ECHO" qECHO=$func_quote_arg_result $ECHO "\ # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } ECHO=$qECHO fi # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper # /script/ and the wrapper /executable/ that is used only on # windows platforms, and (c) all begin with the string "--lt-" # (application programs are unlikely to have options that match # this pattern). # # There are only two supported options: --lt-debug and # --lt-dump-script. There is, deliberately, no --lt-help. # # The first argument to this parsing function should be the # script's $0 value, followed by "$@". lt_option_debug= func_parse_lt_options () { lt_script_arg0=\$0 shift for lt_opt do case \"\$lt_opt\" in --lt-debug) lt_option_debug=1 ;; --lt-dump-script) lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` cat \"\$lt_dump_D/\$lt_dump_F\" exit 0 ;; --lt-*) \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 exit 1 ;; esac done # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2 fi } # Used when --lt-debug. Prints its arguments to stdout # (redirection is the responsibility of the caller) func_lt_dump_args () { lt_dump_args_N=1; for lt_arg do \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } # Core function for launching the target application func_exec_program_core () { " case $host in # Backslashes separate directories on plain windows *-*-mingw* | *-*-windows* | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $ECHO "\ \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 exit 1 } # A function to encapsulate launching the target application # Strips options in the --lt-* namespace from \$@ and # launches target application with the remaining arguments. func_exec_program () { case \" \$* \" in *\\ --lt-*) for lt_wr_arg do case \$lt_wr_arg in --lt-*) ;; *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; esac shift done ;; esac func_exec_program_core \${1+\"\$@\"} } # Parse options func_parse_lt_options \"\$0\" \${1+\"\$@\"} # Find the directory that this script lives in. thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` done # Usually 'no', except on cygwin/mingw/windows when embedded into # the cwrapper. WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then # special case for '.' if test \"\$thisdir\" = \".\"; then thisdir=\`pwd\` fi # remove .libs from thisdir case \"\$thisdir\" in *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; $objdir ) thisdir=. ;; esac fi # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test yes = "$fast_install"; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $MKDIR \"\$progdir\" else $RM \"\$progdir/\$file\" fi" $ECHO "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else \$ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi fi $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $RM \"\$progdir/\$program\"; $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } $RM \"\$progdir/\$file\" fi" else $ECHO "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $ECHO "\ if test -f \"\$progdir/\$program\"; then" # fixup the dll searchpath if we need to. # # Fix the DLL searchpath if we need to. Do this before prepending # to shlibpath, because on Windows, both are PATH and uninstalled # libraries must come first. if test -n "$dllsearchpath"; then $ECHO "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi # Export our shlibpath_var if we have one. if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` export $shlibpath_var " fi $ECHO "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. func_exec_program \${1+\"\$@\"} fi else # The program doesn't exist. \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 fi fi\ " } # func_emit_cwrapperexe_src # emit the source code for a wrapper executable on stdout # Must ONLY be called from within func_mode_link because # it depends on a number of variable set therein. func_emit_cwrapperexe_src () { cat < #include #if defined _WIN32 && !defined __GNUC__ # include # include # include #else # include # include # ifdef __CYGWIN__ # include # endif #endif #include #include #include #include #include #include #include #include #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* declarations of non-ANSI functions */ #if defined __MINGW32__ # ifdef __STRICT_ANSI__ _CRTIMP int __cdecl _putenv (const char *); # endif #elif defined __CYGWIN__ # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif /* #elif defined other_platform || defined ... */ #endif /* portability defines, excluding path handling macros */ #if defined _MSC_VER # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC #elif defined __MINGW32__ # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv #elif defined __CYGWIN__ # define HAVE_SETENV # define FOPEN_WB "wb" /* #elif defined other platforms ... */ #endif #if defined PATH_MAX # define LT_PATHMAX PATH_MAX #elif defined MAXPATHLEN # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef S_IXOTH # define S_IXOTH 0 #endif #ifndef S_IXGRP # define S_IXGRP 0 #endif /* path handling portability macros */ #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \ defined __OS2__ # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #ifndef FOPEN_WB # define FOPEN_WB "w" #endif #ifndef _O_BINARY # define _O_BINARY 0 #endif #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free (stale); stale = 0; } \ } while (0) #if defined LT_DEBUGWRAPPER static int lt_debug = 1; #else static int lt_debug = 0; #endif const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ void *xmalloc (size_t num); char *xstrdup (const char *string); const char *base_name (const char *name); char *find_executable (const char *wrapper); char *chase_symlinks (const char *pathspec); int make_executable (const char *path); int check_executable (const char *path); char *strendzap (char *str, const char *pat); void lt_debugprintf (const char *file, int line, const char *fmt, ...); void lt_fatal (const char *file, int line, const char *message, ...); static const char *nonnull (const char *s); static const char *nonempty (const char *s); void lt_setenv (const char *name, const char *value); char *lt_extend_str (const char *orig_value, const char *add, int to_end); void lt_update_exe_path (const char *name, const char *value); void lt_update_lib_path (const char *name, const char *value); char **prepare_spawn (char **argv); void lt_dump_script (FILE *f); EOF cat <= 0) && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return 1; else return 0; } int make_executable (const char *path) { int rval = 0; struct stat st; lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", nonempty (path)); if ((!path) || (!*path)) return 0; if (stat (path, &st) >= 0) { rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); } return rval; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise Does not chase symlinks, even on platforms that support them. */ char * find_executable (const char *wrapper) { int has_slash = 0; const char *p; const char *p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; size_t tmp_len; char *concat_name; lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", nonempty (wrapper)); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined HAVE_DOS_BASED_FILE_SYSTEM if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } #if defined HAVE_DOS_BASED_FILE_SYSTEM } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char *path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char *q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR (*q)) break; p_len = (size_t) (q - p); p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); return NULL; } char * chase_symlinks (const char *pathspec) { #ifndef S_ISLNK return xstrdup (pathspec); #else char buf[LT_PATHMAX]; struct stat s; char *tmp_pathspec = xstrdup (pathspec); char *p; int has_symlinks = 0; while (strlen (tmp_pathspec) && !has_symlinks) { lt_debugprintf (__FILE__, __LINE__, "checking path component for symlinks: %s\n", tmp_pathspec); if (lstat (tmp_pathspec, &s) == 0) { if (S_ISLNK (s.st_mode) != 0) { has_symlinks = 1; break; } /* search backwards for last DIR_SEPARATOR */ p = tmp_pathspec + strlen (tmp_pathspec) - 1; while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) p--; if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) { /* no more DIR_SEPARATORS left */ break; } *p = '\0'; } else { lt_fatal (__FILE__, __LINE__, "error accessing file \"%s\": %s", tmp_pathspec, nonnull (strerror (errno))); } } XFREE (tmp_pathspec); if (!has_symlinks) { return xstrdup (pathspec); } tmp_pathspec = realpath (pathspec, buf); if (tmp_pathspec == 0) { lt_fatal (__FILE__, __LINE__, "could not follow symlinks for %s", pathspec); } return xstrdup (tmp_pathspec); #endif } char * strendzap (char *str, const char *pat) { size_t len, patlen; assert (str != NULL); assert (pat != NULL); len = strlen (str); patlen = strlen (pat); if (patlen <= len) { str += len - patlen; if (STREQ (str, pat)) *str = '\0'; } return str; } void lt_debugprintf (const char *file, int line, const char *fmt, ...) { va_list args; if (lt_debug) { (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); va_start (args, fmt); (void) vfprintf (stderr, fmt, args); va_end (args); } } static void lt_error_core (int exit_status, const char *file, int line, const char *mode, const char *message, va_list ap) { fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *file, int line, const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); va_end (ap); } static const char * nonnull (const char *s) { return s ? s : "(null)"; } static const char * nonempty (const char *s) { return (s && !*s) ? "(empty)" : nonnull (s); } void lt_setenv (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_setenv) setting '%s' to '%s'\n", nonnull (name), nonnull (value)); { #ifdef HAVE_SETENV /* always make a copy, for consistency with !HAVE_SETENV */ char *str = xstrdup (value); setenv (name, str, 1); #else size_t len = strlen (name) + 1 + strlen (value) + 1; char *str = XMALLOC (char, len); sprintf (str, "%s=%s", name, value); if (putenv (str) != EXIT_SUCCESS) { XFREE (str); } #endif } } char * lt_extend_str (const char *orig_value, const char *add, int to_end) { char *new_value; if (orig_value && *orig_value) { size_t orig_value_len = strlen (orig_value); size_t add_len = strlen (add); new_value = XMALLOC (char, add_len + orig_value_len + 1); if (to_end) { strcpy (new_value, orig_value); strcpy (new_value + orig_value_len, add); } else { strcpy (new_value, add); strcpy (new_value + add_len, orig_value); } } else { new_value = xstrdup (add); } return new_value; } void lt_update_exe_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); /* some systems can't cope with a ':'-terminated path #' */ size_t len = strlen (new_value); while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[--len] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); } } void lt_update_lib_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); lt_setenv (name, new_value); XFREE (new_value); } } EOF case $host_os in mingw* | windows*) cat <<"EOF" /* Prepares an argument vector before calling spawn(). Note that spawn() does not by itself call the command interpreter (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&v); v.dwPlatformId == VER_PLATFORM_WIN32_NT; }) ? "cmd.exe" : "command.com"). Instead it simply concatenates the arguments, separated by ' ', and calls CreateProcess(). We must quote the arguments since Win32 CreateProcess() interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a special way: - Space and tab are interpreted as delimiters. They are not treated as delimiters if they are surrounded by double quotes: "...". - Unescaped double quotes are removed from the input. Their only effect is that within double quotes, space and tab are treated like normal characters. - Backslashes not followed by double quotes are not special. - But 2*n+1 backslashes followed by a double quote become n backslashes followed by a double quote (n >= 0): \" -> " \\\" -> \" \\\\\" -> \\" */ #define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" #define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" char ** prepare_spawn (char **argv) { size_t argc; char **new_argv; size_t i; /* Count number of arguments. */ for (argc = 0; argv[argc] != NULL; argc++) ; /* Allocate new argument vector. */ new_argv = XMALLOC (char *, argc + 1); /* Put quoted arguments into the new argument vector. */ for (i = 0; i < argc; i++) { const char *string = argv[i]; if (string[0] == '\0') new_argv[i] = xstrdup ("\"\""); else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) { int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); size_t length; unsigned int backslashes; const char *s; char *quoted_string; char *p; length = 0; backslashes = 0; if (quote_around) length++; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') length += backslashes + 1; length++; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) length += backslashes + 1; quoted_string = XMALLOC (char, length + 1); p = quoted_string; backslashes = 0; if (quote_around) *p++ = '"'; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') { unsigned int j; for (j = backslashes + 1; j > 0; j--) *p++ = '\\'; } *p++ = c; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) { unsigned int j; for (j = backslashes; j > 0; j--) *p++ = '\\'; *p++ = '"'; } *p = '\0'; new_argv[i] = quoted_string; } else new_argv[i] = (char *) string; } new_argv[argc] = NULL; return new_argv; } EOF ;; esac cat <<"EOF" void lt_dump_script (FILE* f) { EOF func_emit_wrapper yes | $SED -n -e ' s/^\(.\{79\}\)\(..*\)/\1\ \2/ h s/\([\\"]\)/\\\1/g s/$/\\n/ s/\([^\n]*\).*/ fputs ("\1", f);/p g D' cat <<"EOF" } EOF } # end: func_emit_cwrapperexe_src # func_win32_import_lib_p ARG # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { $debug_cmd case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } # func_suncc_cstd_abi # !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!! # Several compiler flags select an ABI that is incompatible with the # Cstd library. Avoid specifying it if any are in CXXFLAGS. func_suncc_cstd_abi () { $debug_cmd case " $compile_command " in *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*) suncc_use_cstd_abi=no ;; *) suncc_use_cstd_abi=yes ;; esac } # func_mode_link arg... func_mode_link () { $debug_cmd case $host in *-*-cygwin* | *-*-mingw* | *-*-windows* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out # what system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying # to make a dll that has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. allow_undefined=yes ;; *) allow_undefined=yes ;; esac libtool_args=$nonopt base_compile="$nonopt $@" compile_command=$nonopt finalize_command=$nonopt compile_rpath= compile_rpath_tail= finalize_rpath= compile_shlibpath= finalize_shlibpath= convenience= old_convenience= deplibs= old_deplibs= compiler_flags= linker_flags= dllsearchpath= lib_search_path=`pwd` inst_prefix_dir= new_inherited_linker_flags= avoid_version=no bindir= dlfiles= dlprefiles= dlself=no export_dynamic=no export_symbols= export_symbols_regex= generated= libobjs= ltlibs= module=no no_install=no objs= os2dllname= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=false prev= prevarg= release= rpath= xrpath= perm_rpath= temp_rpath= temp_rpath_tail= thread_safe=no vinfo= vinfo_number=no weak_libs= rpath_arg= single_module=$wl-single_module func_infer_tag $base_compile # We need to know -static, to get the right output filenames. for arg do case $arg in -shared) test yes != "$build_libtool_libs" \ && func_fatal_configuration "cannot build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg=$1 shift func_quote_arg pretty,unquoted "$arg" qarg=$func_quote_arg_unquoted_result func_append libtool_args " $func_quote_arg_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) func_append compile_command " @OUTPUT@" func_append finalize_command " @OUTPUT@" ;; esac case $prev in bindir) bindir=$arg prev= continue ;; dlfiles|dlprefiles) $preload || { # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=: } case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test no = "$dlself"; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test dlprefiles = "$prev"; then dlself=yes elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test dlfiles = "$prev"; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" fi prev= continue ;; esac ;; expsyms) export_symbols=$arg test -f "$arg" \ || func_fatal_error "symbol file '$arg' does not exist" prev= continue ;; expsyms_regex) export_symbols_regex=$arg prev= continue ;; framework) case $host in *-*-darwin*) case "$deplibs " in *" $qarg.ltframework "*) ;; *) func_append deplibs " $qarg.ltframework" # this is fixed later ;; esac ;; esac prev= continue ;; inst_prefix) inst_prefix_dir=$arg prev= continue ;; mllvm) # Clang does not use LLVM to link, so we can simply discard any # '-mllvm $arg' options when doing the link step. prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat "$save_arg"` do # func_append moreargs " $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result if test none != "$pic_object"; then # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object fi # Non-PIC object. if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test none = "$pic_object"; then arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "'$arg' is not a valid libtool object" fi fi done else func_fatal_error "link input file '$arg' does not exist" fi arg=$save_arg prev= continue ;; os2dllname) os2dllname=$arg prev= continue ;; precious_regex) precious_files_regex=$arg prev= continue ;; release) release=-$arg prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) func_fatal_error "argument to -rpath is not absolute: $arg" ;; esac if test rpath = "$prev"; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) func_append xrpath " $arg" ;; esac fi prev= continue ;; shrext) shrext_cmds=$arg prev= continue ;; weak) func_append weak_libs " $arg" prev= continue ;; xassembler) func_append compiler_flags " -Xassembler $qarg" prev= func_append compile_command " -Xassembler $qarg" func_append finalize_command " -Xassembler $qarg" continue ;; xcclinker) func_append linker_flags " $qarg" func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xcompiler) func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xlinker) func_append linker_flags " $qarg" func_append compiler_flags " $wl$qarg" prev= func_append compile_command " $wl$qarg" func_append finalize_command " $wl$qarg" continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg=$arg case $arg in -all-static) if test -n "$link_static_flag"; then # See comment for -static flag below, for more details. func_append compile_command " $link_static_flag" func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. func_fatal_error "'-allow-undefined' must not be used because it is the default" ;; -avoid-version) avoid_version=yes continue ;; -bindir) prev=bindir continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi if test X-export-symbols = "X$arg"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework) prev=framework continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) func_append compile_command " $arg" func_append finalize_command " $arg" ;; esac continue ;; -L*) func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then func_fatal_error "require no space between '-L' and '$1'" else func_fatal_error "need path for '-L' option" fi fi func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ func_fatal_error "cannot determine absolute directory name of '$dir'" dir=$absdir ;; esac case "$deplibs " in *" -L$dir "* | *" $arg "*) # Will only happen for absolute or sysroot arguments ;; *) # Preserve sysroot, but never include relative directories case $dir in [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; *) func_append deplibs " -L$dir" ;; esac func_append lib_search_path " $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-windows* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; ::) dllsearchpath=$dir;; *) func_append dllsearchpath ":$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac continue ;; -l*) if test X-lc = "X$arg" || test X-lm = "X$arg"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-windows* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test X-lc = "X$arg" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-midnightbsd*) # Do not include libc due to us having libc/libc_r. test X-lc = "X$arg" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework func_append deplibs " System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test X-lc = "X$arg" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test X-lc = "X$arg" && continue ;; esac elif test X-lc_r = "X$arg"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-midnightbsd*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi func_append deplibs " $arg" continue ;; -mllvm) prev=mllvm continue ;; -module) module=yes continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. # -q