glib2 2.2.4-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README +40 -0
- data/Rakefile +157 -0
- data/ext/glib2/depend +18 -0
- data/ext/glib2/extconf.rb +80 -0
- data/ext/glib2/glib2.def +147 -0
- data/ext/glib2/rbgcompat.h +29 -0
- data/ext/glib2/rbglib.c +1158 -0
- data/ext/glib2/rbglib.h +202 -0
- data/ext/glib2/rbglib2conversions.h +57 -0
- data/ext/glib2/rbglib_bookmarkfile.c +546 -0
- data/ext/glib2/rbglib_convert.c +197 -0
- data/ext/glib2/rbglib_error.c +164 -0
- data/ext/glib2/rbglib_fileutils.c +119 -0
- data/ext/glib2/rbglib_gettext.c +48 -0
- data/ext/glib2/rbglib_i18n.c +40 -0
- data/ext/glib2/rbglib_int64.c +165 -0
- data/ext/glib2/rbglib_io_constants.c +30 -0
- data/ext/glib2/rbglib_iochannel.c +824 -0
- data/ext/glib2/rbglib_iochannel_win32_socket.c +56 -0
- data/ext/glib2/rbglib_iochannelerror.c +49 -0
- data/ext/glib2/rbglib_keyfile.c +755 -0
- data/ext/glib2/rbglib_maincontext.c +565 -0
- data/ext/glib2/rbglib_mainloop.c +121 -0
- data/ext/glib2/rbglib_messages.c +148 -0
- data/ext/glib2/rbglib_pollfd.c +112 -0
- data/ext/glib2/rbglib_shell.c +64 -0
- data/ext/glib2/rbglib_shellerror.c +34 -0
- data/ext/glib2/rbglib_source.c +242 -0
- data/ext/glib2/rbglib_spawn.c +245 -0
- data/ext/glib2/rbglib_spawnerror.c +53 -0
- data/ext/glib2/rbglib_threads.c +61 -0
- data/ext/glib2/rbglib_timer.c +127 -0
- data/ext/glib2/rbglib_ucs4.c +79 -0
- data/ext/glib2/rbglib_unichar.c +201 -0
- data/ext/glib2/rbglib_unicode.c +90 -0
- data/ext/glib2/rbglib_utf16.c +78 -0
- data/ext/glib2/rbglib_utf8.c +257 -0
- data/ext/glib2/rbglib_utils.c +339 -0
- data/ext/glib2/rbglib_win32.c +112 -0
- data/ext/glib2/rbglibdeprecated.c +56 -0
- data/ext/glib2/rbglibdeprecated.h +34 -0
- data/ext/glib2/rbgobj_boxed.c +295 -0
- data/ext/glib2/rbgobj_closure.c +345 -0
- data/ext/glib2/rbgobj_convert.c +195 -0
- data/ext/glib2/rbgobj_enumflags.c +109 -0
- data/ext/glib2/rbgobj_enums.c +401 -0
- data/ext/glib2/rbgobj_flags.c +522 -0
- data/ext/glib2/rbgobj_object.c +885 -0
- data/ext/glib2/rbgobj_param.c +378 -0
- data/ext/glib2/rbgobj_paramspecs.c +311 -0
- data/ext/glib2/rbgobj_signal.c +978 -0
- data/ext/glib2/rbgobj_strv.c +44 -0
- data/ext/glib2/rbgobj_type.c +846 -0
- data/ext/glib2/rbgobj_typeinstance.c +128 -0
- data/ext/glib2/rbgobj_typeinterface.c +149 -0
- data/ext/glib2/rbgobj_typemodule.c +72 -0
- data/ext/glib2/rbgobj_typeplugin.c +57 -0
- data/ext/glib2/rbgobj_value.c +395 -0
- data/ext/glib2/rbgobj_valuearray.c +100 -0
- data/ext/glib2/rbgobj_valuetypes.c +243 -0
- data/ext/glib2/rbgobject.c +387 -0
- data/ext/glib2/rbgobject.h +301 -0
- data/ext/glib2/rbgprivate.h +178 -0
- data/ext/glib2/rbgutil.c +183 -0
- data/ext/glib2/rbgutil.h +119 -0
- data/ext/glib2/rbgutil_callback.c +272 -0
- data/ext/glib2/rbgutil_list.c +173 -0
- data/ext/glib2/rbgutil_list.h +85 -0
- data/ext/glib2/rbgutildeprecated.c +252 -0
- data/ext/glib2/rbgutildeprecated.h +63 -0
- data/extconf.rb +49 -0
- data/lib/2.0/glib2.so +0 -0
- data/lib/2.1/glib2.so +0 -0
- data/lib/2.2/glib2.so +0 -0
- data/lib/glib-mkenums.rb +214 -0
- data/lib/glib2.rb +231 -0
- data/lib/glib2/deprecatable.rb +153 -0
- data/lib/gnome2-raketask.rb +8 -0
- data/lib/gnome2/rake/external-package.rb +227 -0
- data/lib/gnome2/rake/native-binary-build-task.rb +129 -0
- data/lib/gnome2/rake/package-task.rb +273 -0
- data/lib/gnome2/rake/package.rb +152 -0
- data/lib/gnome2/rake/source-download-task.rb +82 -0
- data/lib/gnome2/rake/windows-binary-build-task.rb +303 -0
- data/lib/gnome2/rake/windows-binary-download-task.rb +181 -0
- data/lib/mkmf-gnome2.rb +637 -0
- data/sample/bookmarkfile.rb +66 -0
- data/sample/idle.rb +41 -0
- data/sample/iochannel.rb +44 -0
- data/sample/keyfile.rb +62 -0
- data/sample/shell.rb +36 -0
- data/sample/spawn.rb +25 -0
- data/sample/timeout.rb +28 -0
- data/sample/timeout2.rb +35 -0
- data/sample/timer.rb +40 -0
- data/sample/type-register.rb +103 -0
- data/sample/type-register2.rb +104 -0
- data/sample/utils.rb +54 -0
- data/test/glib-test-init.rb +5 -0
- data/test/glib-test-utils.rb +12 -0
- data/test/run-test.rb +21 -0
- data/test/test_enum.rb +99 -0
- data/test/test_file_utils.rb +53 -0
- data/test/test_flags.rb +129 -0
- data/test/test_glib2.rb +122 -0
- data/test/test_iochannel.rb +275 -0
- data/test/test_key_file.rb +42 -0
- data/test/test_mkenums.rb +25 -0
- data/test/test_poll_fd.rb +26 -0
- data/test/test_signal.rb +20 -0
- data/test/test_source.rb +63 -0
- data/test/test_spawn.rb +33 -0
- data/test/test_timeout.rb +28 -0
- data/test/test_unicode.rb +394 -0
- data/test/test_utils.rb +37 -0
- data/test/test_value.rb +31 -0
- data/test/test_win32.rb +13 -0
- data/vendor/local/bin/certtool.exe +0 -0
- data/vendor/local/bin/danetool.exe +0 -0
- data/vendor/local/bin/envsubst.exe +0 -0
- data/vendor/local/bin/gdbus-codegen +39 -0
- data/vendor/local/bin/gdbus.exe +0 -0
- data/vendor/local/bin/gettext.exe +0 -0
- data/vendor/local/bin/gettext.sh +121 -0
- data/vendor/local/bin/gio-querymodules.exe +0 -0
- data/vendor/local/bin/glib-compile-resources.exe +0 -0
- data/vendor/local/bin/glib-compile-schemas.exe +0 -0
- data/vendor/local/bin/glib-genmarshal.exe +0 -0
- data/vendor/local/bin/glib-gettextize +187 -0
- data/vendor/local/bin/glib-mkenums +565 -0
- data/vendor/local/bin/gnutls-cli-debug.exe +0 -0
- data/vendor/local/bin/gnutls-cli.exe +0 -0
- data/vendor/local/bin/gnutls-serv.exe +0 -0
- data/vendor/local/bin/gobject-query.exe +0 -0
- data/vendor/local/bin/gresource.exe +0 -0
- data/vendor/local/bin/gsettings.exe +0 -0
- data/vendor/local/bin/gspawn-win64-helper-console.exe +0 -0
- data/vendor/local/bin/gspawn-win64-helper.exe +0 -0
- data/vendor/local/bin/iconv.exe +0 -0
- data/vendor/local/bin/libasprintf-0.dll +0 -0
- data/vendor/local/bin/libcharset-1.dll +0 -0
- data/vendor/local/bin/libffi-6.dll +0 -0
- data/vendor/local/bin/libgio-2.0-0.dll +0 -0
- data/vendor/local/bin/libglib-2.0-0.dll +0 -0
- data/vendor/local/bin/libgmodule-2.0-0.dll +0 -0
- data/vendor/local/bin/libgmp-10.dll +0 -0
- data/vendor/local/bin/libgnutls-28.def +861 -0
- data/vendor/local/bin/libgnutls-28.dll +0 -0
- data/vendor/local/bin/libgnutls-openssl-27.dll +0 -0
- data/vendor/local/bin/libgnutls-openssl-28.def +228 -0
- data/vendor/local/bin/libgnutls-xssl-0.dll +0 -0
- data/vendor/local/bin/libgnutls-xssl-28.def +13 -0
- data/vendor/local/bin/libgobject-2.0-0.dll +0 -0
- data/vendor/local/bin/libgthread-2.0-0.dll +0 -0
- data/vendor/local/bin/libhogweed-2-5.dll +0 -0
- data/vendor/local/bin/libiconv-2.dll +0 -0
- data/vendor/local/bin/libintl-8.dll +0 -0
- data/vendor/local/bin/libnettle-4-7.dll +0 -0
- data/vendor/local/bin/nettle-hash.exe +0 -0
- data/vendor/local/bin/nettle-lfib-stream.exe +0 -0
- data/vendor/local/bin/ngettext.exe +0 -0
- data/vendor/local/bin/ocsptool.exe +0 -0
- data/vendor/local/bin/pkcs1-conv.exe +0 -0
- data/vendor/local/bin/psktool.exe +0 -0
- data/vendor/local/bin/sexp-conv.exe +0 -0
- data/vendor/local/bin/srptool.exe +0 -0
- data/vendor/local/include/autosprintf.h +67 -0
- data/vendor/local/include/gio-win32-2.0/gio/gwin32inputstream.h +82 -0
- data/vendor/local/include/gio-win32-2.0/gio/gwin32outputstream.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gaction.h +98 -0
- data/vendor/local/include/glib-2.0/gio/gactiongroup.h +161 -0
- data/vendor/local/include/glib-2.0/gio/gactiongroupexporter.h +45 -0
- data/vendor/local/include/glib-2.0/gio/gactionmap.h +95 -0
- data/vendor/local/include/glib-2.0/gio/gappinfo.h +313 -0
- data/vendor/local/include/glib-2.0/gio/gapplication.h +236 -0
- data/vendor/local/include/glib-2.0/gio/gapplicationcommandline.h +122 -0
- data/vendor/local/include/glib-2.0/gio/gasyncinitable.h +124 -0
- data/vendor/local/include/glib-2.0/gio/gasyncresult.h +85 -0
- data/vendor/local/include/glib-2.0/gio/gbufferedinputstream.h +133 -0
- data/vendor/local/include/glib-2.0/gio/gbufferedoutputstream.h +86 -0
- data/vendor/local/include/glib-2.0/gio/gbytesicon.h +52 -0
- data/vendor/local/include/glib-2.0/gio/gcancellable.h +118 -0
- data/vendor/local/include/glib-2.0/gio/gcharsetconverter.h +63 -0
- data/vendor/local/include/glib-2.0/gio/gcontenttype.h +71 -0
- data/vendor/local/include/glib-2.0/gio/gconverter.h +96 -0
- data/vendor/local/include/glib-2.0/gio/gconverterinputstream.h +80 -0
- data/vendor/local/include/glib-2.0/gio/gconverteroutputstream.h +80 -0
- data/vendor/local/include/glib-2.0/gio/gcredentials.h +85 -0
- data/vendor/local/include/glib-2.0/gio/gdatainputstream.h +180 -0
- data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +125 -0
- data/vendor/local/include/glib-2.0/gio/gdbusactiongroup.h +54 -0
- data/vendor/local/include/glib-2.0/gio/gdbusaddress.h +65 -0
- data/vendor/local/include/glib-2.0/gio/gdbusauthobserver.h +51 -0
- data/vendor/local/include/glib-2.0/gio/gdbusconnection.h +663 -0
- data/vendor/local/include/glib-2.0/gio/gdbuserror.h +109 -0
- data/vendor/local/include/glib-2.0/gio/gdbusinterface.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gdbusinterfaceskeleton.h +127 -0
- data/vendor/local/include/glib-2.0/gio/gdbusintrospection.h +325 -0
- data/vendor/local/include/glib-2.0/gio/gdbusmenumodel.h +45 -0
- data/vendor/local/include/glib-2.0/gio/gdbusmessage.h +197 -0
- data/vendor/local/include/glib-2.0/gio/gdbusmethodinvocation.h +97 -0
- data/vendor/local/include/glib-2.0/gio/gdbusnameowning.h +115 -0
- data/vendor/local/include/glib-2.0/gio/gdbusnamewatching.h +102 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobject.h +78 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectmanager.h +94 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectmanagerclient.h +146 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectmanagerserver.h +93 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectproxy.h +79 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectskeleton.h +96 -0
- data/vendor/local/include/glib-2.0/gio/gdbusproxy.h +214 -0
- data/vendor/local/include/glib-2.0/gio/gdbusserver.h +60 -0
- data/vendor/local/include/glib-2.0/gio/gdbusutils.h +55 -0
- data/vendor/local/include/glib-2.0/gio/gdrive.h +259 -0
- data/vendor/local/include/glib-2.0/gio/gemblem.h +61 -0
- data/vendor/local/include/glib-2.0/gio/gemblemedicon.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gfile.h +1250 -0
- data/vendor/local/include/glib-2.0/gio/gfileattribute.h +84 -0
- data/vendor/local/include/glib-2.0/gio/gfileenumerator.h +144 -0
- data/vendor/local/include/glib-2.0/gio/gfileicon.h +57 -0
- data/vendor/local/include/glib-2.0/gio/gfileinfo.h +1070 -0
- data/vendor/local/include/glib-2.0/gio/gfileinputstream.h +114 -0
- data/vendor/local/include/glib-2.0/gio/gfileiostream.h +121 -0
- data/vendor/local/include/glib-2.0/gio/gfilemonitor.h +98 -0
- data/vendor/local/include/glib-2.0/gio/gfilenamecompleter.h +79 -0
- data/vendor/local/include/glib-2.0/gio/gfileoutputstream.h +122 -0
- data/vendor/local/include/glib-2.0/gio/gfilterinputstream.h +78 -0
- data/vendor/local/include/glib-2.0/gio/gfilteroutputstream.h +78 -0
- data/vendor/local/include/glib-2.0/gio/gicon.h +101 -0
- data/vendor/local/include/glib-2.0/gio/ginetaddress.h +124 -0
- data/vendor/local/include/glib-2.0/gio/ginetaddressmask.h +85 -0
- data/vendor/local/include/glib-2.0/gio/ginetsocketaddress.h +78 -0
- data/vendor/local/include/glib-2.0/gio/ginitable.h +99 -0
- data/vendor/local/include/glib-2.0/gio/ginputstream.h +201 -0
- data/vendor/local/include/glib-2.0/gio/gio.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gioenums.h +1816 -0
- data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gioerror.h +53 -0
- data/vendor/local/include/glib-2.0/gio/giomodule.h +169 -0
- data/vendor/local/include/glib-2.0/gio/gioscheduler.h +54 -0
- data/vendor/local/include/glib-2.0/gio/giostream.h +135 -0
- data/vendor/local/include/glib-2.0/gio/giotypes.h +535 -0
- data/vendor/local/include/glib-2.0/gio/gloadableicon.h +99 -0
- data/vendor/local/include/glib-2.0/gio/gmemoryinputstream.h +90 -0
- data/vendor/local/include/glib-2.0/gio/gmemoryoutputstream.h +107 -0
- data/vendor/local/include/glib-2.0/gio/gmenu.h +182 -0
- data/vendor/local/include/glib-2.0/gio/gmenuexporter.h +40 -0
- data/vendor/local/include/glib-2.0/gio/gmenumodel.h +305 -0
- data/vendor/local/include/glib-2.0/gio/gmount.h +276 -0
- data/vendor/local/include/glib-2.0/gio/gmountoperation.h +140 -0
- data/vendor/local/include/glib-2.0/gio/gnativevolumemonitor.h +61 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkaddress.h +78 -0
- data/vendor/local/include/glib-2.0/gio/gnetworking.h +82 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkmonitor.h +93 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gnotification.h +97 -0
- data/vendor/local/include/glib-2.0/gio/goutputstream.h +254 -0
- data/vendor/local/include/glib-2.0/gio/gpermission.h +127 -0
- data/vendor/local/include/glib-2.0/gio/gpollableinputstream.h +105 -0
- data/vendor/local/include/glib-2.0/gio/gpollableoutputstream.h +105 -0
- data/vendor/local/include/glib-2.0/gio/gpollableutils.h +64 -0
- data/vendor/local/include/glib-2.0/gio/gpropertyaction.h +47 -0
- data/vendor/local/include/glib-2.0/gio/gproxy.h +128 -0
- data/vendor/local/include/glib-2.0/gio/gproxyaddress.h +86 -0
- data/vendor/local/include/glib-2.0/gio/gproxyaddressenumerator.h +74 -0
- data/vendor/local/include/glib-2.0/gio/gproxyresolver.h +95 -0
- data/vendor/local/include/glib-2.0/gio/gremoteactiongroup.h +75 -0
- data/vendor/local/include/glib-2.0/gio/gresolver.h +212 -0
- data/vendor/local/include/glib-2.0/gio/gresource.h +129 -0
- data/vendor/local/include/glib-2.0/gio/gseekable.h +103 -0
- data/vendor/local/include/glib-2.0/gio/gsettings.h +331 -0
- data/vendor/local/include/glib-2.0/gio/gsettingsbackend.h +158 -0
- data/vendor/local/include/glib-2.0/gio/gsettingsschema.h +104 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleaction.h +59 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleactiongroup.h +97 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +162 -0
- data/vendor/local/include/glib-2.0/gio/gsimplepermission.h +45 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleproxyresolver.h +89 -0
- data/vendor/local/include/glib-2.0/gio/gsocket.h +289 -0
- data/vendor/local/include/glib-2.0/gio/gsocketaddress.h +82 -0
- data/vendor/local/include/glib-2.0/gio/gsocketaddressenumerator.h +91 -0
- data/vendor/local/include/glib-2.0/gio/gsocketclient.h +197 -0
- data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +75 -0
- data/vendor/local/include/glib-2.0/gio/gsocketconnection.h +115 -0
- data/vendor/local/include/glib-2.0/gio/gsocketcontrolmessage.h +109 -0
- data/vendor/local/include/glib-2.0/gio/gsocketlistener.h +150 -0
- data/vendor/local/include/glib-2.0/gio/gsocketservice.h +91 -0
- data/vendor/local/include/glib-2.0/gio/gsrvtarget.h +59 -0
- data/vendor/local/include/glib-2.0/gio/gsubprocess.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gsubprocesslauncher.h +116 -0
- data/vendor/local/include/glib-2.0/gio/gtask.h +158 -0
- data/vendor/local/include/glib-2.0/gio/gtcpconnection.h +69 -0
- data/vendor/local/include/glib-2.0/gio/gtcpwrapperconnection.h +69 -0
- data/vendor/local/include/glib-2.0/gio/gtestdbus.h +72 -0
- data/vendor/local/include/glib-2.0/gio/gthemedicon.h +68 -0
- data/vendor/local/include/glib-2.0/gio/gthreadedsocketservice.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gtlsbackend.h +96 -0
- data/vendor/local/include/glib-2.0/gio/gtlscertificate.h +92 -0
- data/vendor/local/include/glib-2.0/gio/gtlsclientconnection.h +71 -0
- data/vendor/local/include/glib-2.0/gio/gtlsconnection.h +154 -0
- data/vendor/local/include/glib-2.0/gio/gtlsdatabase.h +247 -0
- data/vendor/local/include/glib-2.0/gio/gtlsfiledatabase.h +58 -0
- data/vendor/local/include/glib-2.0/gio/gtlsinteraction.h +148 -0
- data/vendor/local/include/glib-2.0/gio/gtlspassword.h +110 -0
- data/vendor/local/include/glib-2.0/gio/gtlsserverconnection.h +61 -0
- data/vendor/local/include/glib-2.0/gio/gvfs.h +132 -0
- data/vendor/local/include/glib-2.0/gio/gvolume.h +251 -0
- data/vendor/local/include/glib-2.0/gio/gvolumemonitor.h +154 -0
- data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +62 -0
- data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +58 -0
- data/vendor/local/include/glib-2.0/glib-object.h +40 -0
- data/vendor/local/include/glib-2.0/glib-unix.h +119 -0
- data/vendor/local/include/glib-2.0/glib.h +112 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gallocator.h +88 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gcache.h +75 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gcompletion.h +83 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gmain.h +139 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/grel.h +105 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gthread.h +293 -0
- data/vendor/local/include/glib-2.0/glib/galloca.h +103 -0
- data/vendor/local/include/glib-2.0/glib/garray.h +238 -0
- data/vendor/local/include/glib-2.0/glib/gasyncqueue.h +109 -0
- data/vendor/local/include/glib-2.0/glib/gatomic.h +281 -0
- data/vendor/local/include/glib-2.0/glib/gbacktrace.h +64 -0
- data/vendor/local/include/glib-2.0/glib/gbase64.h +61 -0
- data/vendor/local/include/glib-2.0/glib/gbitlock.h +76 -0
- data/vendor/local/include/glib-2.0/glib/gbookmarkfile.h +255 -0
- data/vendor/local/include/glib-2.0/glib/gbytes.h +90 -0
- data/vendor/local/include/glib-2.0/glib/gcharset.h +43 -0
- data/vendor/local/include/glib-2.0/glib/gchecksum.h +101 -0
- data/vendor/local/include/glib-2.0/glib/gconvert.h +199 -0
- data/vendor/local/include/glib-2.0/glib/gdataset.h +150 -0
- data/vendor/local/include/glib-2.0/glib/gdate.h +309 -0
- data/vendor/local/include/glib-2.0/glib/gdatetime.h +264 -0
- data/vendor/local/include/glib-2.0/glib/gdir.h +64 -0
- data/vendor/local/include/glib-2.0/glib/genviron.h +78 -0
- data/vendor/local/include/glib-2.0/glib/gerror.h +118 -0
- data/vendor/local/include/glib-2.0/glib/gfileutils.h +207 -0
- data/vendor/local/include/glib-2.0/glib/ggettext.h +63 -0
- data/vendor/local/include/glib-2.0/glib/ghash.h +185 -0
- data/vendor/local/include/glib-2.0/glib/ghmac.h +78 -0
- data/vendor/local/include/glib-2.0/glib/ghook.h +202 -0
- data/vendor/local/include/glib-2.0/glib/ghostutils.h +43 -0
- data/vendor/local/include/glib-2.0/glib/gi18n-lib.h +36 -0
- data/vendor/local/include/glib-2.0/glib/gi18n.h +32 -0
- data/vendor/local/include/glib-2.0/glib/giochannel.h +413 -0
- data/vendor/local/include/glib-2.0/glib/gkeyfile.h +320 -0
- data/vendor/local/include/glib-2.0/glib/glist.h +152 -0
- data/vendor/local/include/glib-2.0/glib/gmacros.h +366 -0
- data/vendor/local/include/glib-2.0/glib/gmain.h +614 -0
- data/vendor/local/include/glib-2.0/glib/gmappedfile.h +58 -0
- data/vendor/local/include/glib-2.0/glib/gmarkup.h +262 -0
- data/vendor/local/include/glib-2.0/glib/gmem.h +298 -0
- data/vendor/local/include/glib-2.0/glib/gmessages.h +407 -0
- data/vendor/local/include/glib-2.0/glib/gnode.h +322 -0
- data/vendor/local/include/glib-2.0/glib/goption.h +377 -0
- data/vendor/local/include/glib-2.0/glib/gpattern.h +53 -0
- data/vendor/local/include/glib-2.0/glib/gpoll.h +127 -0
- data/vendor/local/include/glib-2.0/glib/gprimes.h +50 -0
- data/vendor/local/include/glib-2.0/glib/gprintf.h +57 -0
- data/vendor/local/include/glib-2.0/glib/gqsort.h +45 -0
- data/vendor/local/include/glib-2.0/glib/gquark.h +68 -0
- data/vendor/local/include/glib-2.0/glib/gqueue.h +190 -0
- data/vendor/local/include/glib-2.0/glib/grand.h +99 -0
- data/vendor/local/include/glib-2.0/glib/gregex.h +610 -0
- data/vendor/local/include/glib-2.0/glib/gscanner.h +303 -0
- data/vendor/local/include/glib-2.0/glib/gsequence.h +171 -0
- data/vendor/local/include/glib-2.0/glib/gshell.h +59 -0
- data/vendor/local/include/glib-2.0/glib/gslice.h +98 -0
- data/vendor/local/include/glib-2.0/glib/gslist.h +143 -0
- data/vendor/local/include/glib-2.0/glib/gspawn.h +307 -0
- data/vendor/local/include/glib-2.0/glib/gstdio.h +171 -0
- data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +306 -0
- data/vendor/local/include/glib-2.0/glib/gstring.h +189 -0
- data/vendor/local/include/glib-2.0/glib/gstringchunk.h +57 -0
- data/vendor/local/include/glib-2.0/glib/gtestutils.h +421 -0
- data/vendor/local/include/glib-2.0/glib/gthread.h +271 -0
- data/vendor/local/include/glib-2.0/glib/gthreadpool.h +92 -0
- data/vendor/local/include/glib-2.0/glib/gtimer.h +74 -0
- data/vendor/local/include/glib-2.0/glib/gtimezone.h +89 -0
- data/vendor/local/include/glib-2.0/glib/gtrashstack.h +101 -0
- data/vendor/local/include/glib-2.0/glib/gtree.h +104 -0
- data/vendor/local/include/glib-2.0/glib/gtypes.h +482 -0
- data/vendor/local/include/glib-2.0/glib/gunicode.h +860 -0
- data/vendor/local/include/glib-2.0/glib/gurifuncs.h +83 -0
- data/vendor/local/include/glib-2.0/glib/gutils.h +374 -0
- data/vendor/local/include/glib-2.0/glib/gvariant.h +452 -0
- data/vendor/local/include/glib-2.0/glib/gvarianttype.h +380 -0
- data/vendor/local/include/glib-2.0/glib/gversion.h +55 -0
- data/vendor/local/include/glib-2.0/glib/gversionmacros.h +345 -0
- data/vendor/local/include/glib-2.0/glib/gwin32.h +134 -0
- data/vendor/local/include/glib-2.0/gmodule.h +115 -0
- data/vendor/local/include/glib-2.0/gobject/gbinding.h +149 -0
- data/vendor/local/include/glib-2.0/gobject/gboxed.h +122 -0
- data/vendor/local/include/glib-2.0/gobject/gclosure.h +297 -0
- data/vendor/local/include/glib-2.0/gobject/genums.h +273 -0
- data/vendor/local/include/glib-2.0/gobject/glib-types.h +358 -0
- data/vendor/local/include/glib-2.0/gobject/gmarshal.h +385 -0
- data/vendor/local/include/glib-2.0/gobject/gobject.h +672 -0
- data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +197 -0
- data/vendor/local/include/glib-2.0/gobject/gparam.h +447 -0
- data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1164 -0
- data/vendor/local/include/glib-2.0/gobject/gsignal.h +604 -0
- data/vendor/local/include/glib-2.0/gobject/gsourceclosure.h +38 -0
- data/vendor/local/include/glib-2.0/gobject/gtype.h +1990 -0
- data/vendor/local/include/glib-2.0/gobject/gtypemodule.h +278 -0
- data/vendor/local/include/glib-2.0/gobject/gtypeplugin.h +134 -0
- data/vendor/local/include/glib-2.0/gobject/gvalue.h +194 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluearray.h +104 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluecollector.h +254 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +300 -0
- data/vendor/local/include/gmp.h +2301 -0
- data/vendor/local/include/gnutls/abstract.h +454 -0
- data/vendor/local/include/gnutls/compat.h +401 -0
- data/vendor/local/include/gnutls/crypto.h +117 -0
- data/vendor/local/include/gnutls/dtls.h +92 -0
- data/vendor/local/include/gnutls/gnutls.h +2299 -0
- data/vendor/local/include/gnutls/ocsp.h +257 -0
- data/vendor/local/include/gnutls/openpgp.h +366 -0
- data/vendor/local/include/gnutls/openssl.h +329 -0
- data/vendor/local/include/gnutls/pkcs11.h +356 -0
- data/vendor/local/include/gnutls/pkcs12.h +135 -0
- data/vendor/local/include/gnutls/tpm.h +79 -0
- data/vendor/local/include/gnutls/x509.h +1192 -0
- data/vendor/local/include/gnutls/xssl.h +125 -0
- data/vendor/local/include/iconv.h +242 -0
- data/vendor/local/include/libcharset.h +46 -0
- data/vendor/local/include/libintl.h +464 -0
- data/vendor/local/include/localcharset.h +42 -0
- data/vendor/local/include/nettle/aes.h +85 -0
- data/vendor/local/include/nettle/arcfour.h +66 -0
- data/vendor/local/include/nettle/arctwo.h +82 -0
- data/vendor/local/include/nettle/asn1.h +144 -0
- data/vendor/local/include/nettle/base16.h +106 -0
- data/vendor/local/include/nettle/base64.h +153 -0
- data/vendor/local/include/nettle/bignum.h +121 -0
- data/vendor/local/include/nettle/blowfish.h +76 -0
- data/vendor/local/include/nettle/buffer.h +98 -0
- data/vendor/local/include/nettle/camellia.h +82 -0
- data/vendor/local/include/nettle/cast128.h +77 -0
- data/vendor/local/include/nettle/cbc.h +76 -0
- data/vendor/local/include/nettle/ctr.h +62 -0
- data/vendor/local/include/nettle/des-compat.h +154 -0
- data/vendor/local/include/nettle/des.h +111 -0
- data/vendor/local/include/nettle/dsa.h +293 -0
- data/vendor/local/include/nettle/ecc-curve.h +45 -0
- data/vendor/local/include/nettle/ecc.h +261 -0
- data/vendor/local/include/nettle/ecdsa.h +94 -0
- data/vendor/local/include/nettle/gcm.h +186 -0
- data/vendor/local/include/nettle/gosthash94.h +88 -0
- data/vendor/local/include/nettle/hmac.h +202 -0
- data/vendor/local/include/nettle/knuth-lfib.h +75 -0
- data/vendor/local/include/nettle/macros.h +238 -0
- data/vendor/local/include/nettle/md2.h +69 -0
- data/vendor/local/include/nettle/md4.h +73 -0
- data/vendor/local/include/nettle/md5-compat.h +50 -0
- data/vendor/local/include/nettle/md5.h +76 -0
- data/vendor/local/include/nettle/memxor.h +22 -0
- data/vendor/local/include/nettle/nettle-meta.h +232 -0
- data/vendor/local/include/nettle/nettle-stdint.h +286 -0
- data/vendor/local/include/nettle/nettle-types.h +92 -0
- data/vendor/local/include/nettle/pbkdf2.h +77 -0
- data/vendor/local/include/nettle/pgp.h +240 -0
- data/vendor/local/include/nettle/pkcs1.h +106 -0
- data/vendor/local/include/nettle/realloc.h +41 -0
- data/vendor/local/include/nettle/ripemd160.h +78 -0
- data/vendor/local/include/nettle/rsa-compat.h +131 -0
- data/vendor/local/include/nettle/rsa.h +419 -0
- data/vendor/local/include/nettle/salsa20.h +93 -0
- data/vendor/local/include/nettle/serpent.h +81 -0
- data/vendor/local/include/nettle/sexp.h +212 -0
- data/vendor/local/include/nettle/sha.h +34 -0
- data/vendor/local/include/nettle/sha1.h +78 -0
- data/vendor/local/include/nettle/sha2.h +156 -0
- data/vendor/local/include/nettle/sha3.h +176 -0
- data/vendor/local/include/nettle/twofish.h +78 -0
- data/vendor/local/include/nettle/umac.h +241 -0
- data/vendor/local/include/nettle/yarrow.h +137 -0
- data/vendor/local/lib/charset.alias +4 -0
- data/vendor/local/lib/gio/modules/libgiognutls.a +0 -0
- data/vendor/local/lib/gio/modules/libgiognutls.dll +0 -0
- data/vendor/local/lib/gio/modules/libgiognutls.dll.a +0 -0
- data/vendor/local/lib/gio/modules/libgiognutls.la +41 -0
- data/vendor/local/lib/glib-2.0/include/glibconfig.h +199 -0
- data/vendor/local/lib/gthread-2.0.def +3 -0
- data/vendor/local/lib/libasprintf.a +0 -0
- data/vendor/local/lib/libasprintf.dll.a +0 -0
- data/vendor/local/lib/libasprintf.la +41 -0
- data/vendor/local/lib/libcharset.a +0 -0
- data/vendor/local/lib/libcharset.dll.a +0 -0
- data/vendor/local/lib/libcharset.la +41 -0
- data/vendor/local/lib/libffi-3.2.1/include/ffi.h +487 -0
- data/vendor/local/lib/libffi-3.2.1/include/ffitarget.h +150 -0
- data/vendor/local/lib/libffi.a +0 -0
- data/vendor/local/lib/libffi.dll.a +0 -0
- data/vendor/local/lib/libffi.la +41 -0
- data/vendor/local/lib/libgio-2.0.dll.a +0 -0
- data/vendor/local/lib/libgio-2.0.la +41 -0
- data/vendor/local/lib/libglib-2.0.dll.a +0 -0
- data/vendor/local/lib/libglib-2.0.la +41 -0
- data/vendor/local/lib/libgmodule-2.0.dll.a +0 -0
- data/vendor/local/lib/libgmodule-2.0.la +41 -0
- data/vendor/local/lib/libgmp.dll.a +0 -0
- data/vendor/local/lib/libgmp.la +41 -0
- data/vendor/local/lib/libgnutls-openssl.a +0 -0
- data/vendor/local/lib/libgnutls-openssl.dll.a +0 -0
- data/vendor/local/lib/libgnutls-openssl.la +41 -0
- data/vendor/local/lib/libgnutls-xssl.a +0 -0
- data/vendor/local/lib/libgnutls-xssl.dll.a +0 -0
- data/vendor/local/lib/libgnutls-xssl.la +41 -0
- data/vendor/local/lib/libgnutls.a +0 -0
- data/vendor/local/lib/libgnutls.dll.a +0 -0
- data/vendor/local/lib/libgnutls.la +41 -0
- data/vendor/local/lib/libgobject-2.0.dll.a +0 -0
- data/vendor/local/lib/libgobject-2.0.la +41 -0
- data/vendor/local/lib/libgthread-2.0.dll.a +0 -0
- data/vendor/local/lib/libgthread-2.0.la +41 -0
- data/vendor/local/lib/libhogweed.a +0 -0
- data/vendor/local/lib/libhogweed.dll.a +0 -0
- data/vendor/local/lib/libiconv.dll.a +0 -0
- data/vendor/local/lib/libiconv.la +41 -0
- data/vendor/local/lib/libintl.a +0 -0
- data/vendor/local/lib/libintl.dll.a +0 -0
- data/vendor/local/lib/libintl.la +41 -0
- data/vendor/local/lib/libnettle.a +0 -0
- data/vendor/local/lib/libnettle.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/gio-2.0.pc +18 -0
- data/vendor/local/lib/pkgconfig/gio-windows-2.0.pc +11 -0
- data/vendor/local/lib/pkgconfig/glib-2.0.pc +16 -0
- data/vendor/local/lib/pkgconfig/gmodule-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gmodule-export-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gmodule-no-export-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gnutls.pc +24 -0
- data/vendor/local/lib/pkgconfig/gobject-2.0.pc +12 -0
- data/vendor/local/lib/pkgconfig/gthread-2.0.pc +11 -0
- data/vendor/local/lib/pkgconfig/hogweed.pc +18 -0
- data/vendor/local/lib/pkgconfig/libffi.pc +11 -0
- data/vendor/local/lib/pkgconfig/nettle.pc +11 -0
- data/vendor/local/lib/pkgconfig/patched +0 -0
- data/vendor/local/share/aclocal/glib-2.0.m4 +211 -0
- data/vendor/local/share/aclocal/glib-gettext.m4 +435 -0
- data/vendor/local/share/aclocal/gsettings.m4 +83 -0
- data/vendor/local/share/bash-completion/completions/gapplication +55 -0
- data/vendor/local/share/bash-completion/completions/gdbus +33 -0
- data/vendor/local/share/bash-completion/completions/gresource +58 -0
- data/vendor/local/share/bash-completion/completions/gsettings +84 -0
- data/vendor/local/share/doc/gettext/bind_textdomain_codeset.3.html +158 -0
- data/vendor/local/share/doc/gettext/bindtextdomain.3.html +154 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext.html +8 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceManager.html +305 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceSet.html +356 -0
- data/vendor/local/share/doc/gettext/csharpdoc/begin.html +11 -0
- data/vendor/local/share/doc/gettext/csharpdoc/index.html +10 -0
- data/vendor/local/share/doc/gettext/csharpdoc/namespaces.html +6 -0
- data/vendor/local/share/doc/gettext/envsubst.1.html +139 -0
- data/vendor/local/share/doc/gettext/gettext.1.html +188 -0
- data/vendor/local/share/doc/gettext/gettext.3.html +182 -0
- data/vendor/local/share/doc/gettext/javadoc2/allclasses-frame.html +25 -0
- data/vendor/local/share/doc/gettext/javadoc2/deprecated-list.html +87 -0
- data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/GettextResource.html +321 -0
- data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-frame.html +26 -0
- data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-summary.html +103 -0
- data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-tree.html +99 -0
- data/vendor/local/share/doc/gettext/javadoc2/help-doc.html +136 -0
- data/vendor/local/share/doc/gettext/javadoc2/index-all.html +111 -0
- data/vendor/local/share/doc/gettext/javadoc2/index.html +22 -0
- data/vendor/local/share/doc/gettext/javadoc2/overview-tree.html +96 -0
- data/vendor/local/share/doc/gettext/javadoc2/package-list +1 -0
- data/vendor/local/share/doc/gettext/javadoc2/packages.html +26 -0
- data/vendor/local/share/doc/gettext/javadoc2/serialized-form.html +87 -0
- data/vendor/local/share/doc/gettext/javadoc2/stylesheet.css +29 -0
- data/vendor/local/share/doc/gettext/ngettext.1.html +194 -0
- data/vendor/local/share/doc/gettext/ngettext.3.html +138 -0
- data/vendor/local/share/doc/gettext/textdomain.3.html +140 -0
- data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
- data/vendor/local/share/doc/libiconv/iconv.1.html +206 -0
- data/vendor/local/share/doc/libiconv/iconv.3.html +207 -0
- data/vendor/local/share/doc/libiconv/iconv_close.3.html +90 -0
- data/vendor/local/share/doc/libiconv/iconv_open.3.html +318 -0
- data/vendor/local/share/doc/libiconv/iconv_open_into.3.html +120 -0
- data/vendor/local/share/doc/libiconv/iconvctl.3.html +189 -0
- data/vendor/local/share/gdb/auto-load/libglib-2.0.so.0.4200.1-gdb.py +10 -0
- data/vendor/local/share/gdb/auto-load/libgobject-2.0.so.0.4200.1-gdb.py +10 -0
- data/vendor/local/share/gettext/ABOUT-NLS +1282 -0
- data/vendor/local/share/glib-2.0/codegen/__init__.py +27 -0
- data/vendor/local/share/glib-2.0/codegen/__init__.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/__init__.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen.py +3412 -0
- data/vendor/local/share/glib-2.0/codegen/codegen.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_docbook.py +329 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_docbook.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_docbook.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_main.py +201 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_main.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_main.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/config.py +25 -0
- data/vendor/local/share/glib-2.0/codegen/config.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/config.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/dbustypes.py +424 -0
- data/vendor/local/share/glib-2.0/codegen/dbustypes.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/dbustypes.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/parser.py +288 -0
- data/vendor/local/share/glib-2.0/codegen/parser.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/parser.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/utils.py +102 -0
- data/vendor/local/share/glib-2.0/codegen/utils.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/utils.pyo +0 -0
- data/vendor/local/share/glib-2.0/gdb/glib.py +257 -0
- data/vendor/local/share/glib-2.0/gdb/gobject.py +295 -0
- data/vendor/local/share/glib-2.0/gettext/po/Makefile.in.in +268 -0
- data/vendor/local/share/glib-2.0/schemas/gschema.dtd +73 -0
- data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
- data/vendor/local/share/gtk-doc/html/gio/ExampleAnimal.html +1537 -0
- data/vendor/local/share/gtk-doc/html/gio/ExampleCat.html +679 -0
- data/vendor/local/share/gtk-doc/html/gio/ExampleObject.html +572 -0
- data/vendor/local/share/gtk-doc/html/gio/ExampleObjectManagerClient.html +561 -0
- data/vendor/local/share/gtk-doc/html/gio/GAction.html +832 -0
- data/vendor/local/share/gtk-doc/html/gio/GActionGroup.html +1242 -0
- data/vendor/local/share/gtk-doc/html/gio/GActionMap.html +507 -0
- data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +2160 -0
- data/vendor/local/share/gtk-doc/html/gio/GAppInfoMonitor.html +151 -0
- data/vendor/local/share/gtk-doc/html/gio/GApplication.html +2448 -0
- data/vendor/local/share/gtk-doc/html/gio/GApplicationCommandLine.html +981 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +769 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +511 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +705 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +393 -0
- data/vendor/local/share/gtk-doc/html/gio/GCancellable.html +861 -0
- data/vendor/local/share/gtk-doc/html/gio/GCharsetConverter.html +317 -0
- data/vendor/local/share/gtk-doc/html/gio/GConverter.html +467 -0
- data/vendor/local/share/gtk-doc/html/gio/GCredentials.html +564 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusActionGroup.html +161 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusAuthObserver.html +390 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusConnection.html +4687 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusInterface.html +329 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusInterfaceSkeleton.html +882 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusMenuModel.html +152 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusMessage.html +2484 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusMethodInvocation.html +903 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObject.html +404 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManager.html +592 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManagerClient.html +1281 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManagerServer.html +505 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectProxy.html +260 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectSkeleton.html +491 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusProxy.html +2170 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusServer.html +635 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +1595 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +699 -0
- data/vendor/local/share/gtk-doc/html/gio/GDrive.html +1873 -0
- data/vendor/local/share/gtk-doc/html/gio/GEmblem.html +354 -0
- data/vendor/local/share/gtk-doc/html/gio/GEmblemedIcon.html +325 -0
- data/vendor/local/share/gtk-doc/html/gio/GFile.html +9688 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +145 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +713 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileIOStream.html +352 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileIcon.html +200 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileInfo.html +4261 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileInputStream.html +293 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileMonitor.html +475 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileOutputStream.html +345 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilenameCompleter.html +287 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilterInputStream.html +249 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +251 -0
- data/vendor/local/share/gtk-doc/html/gio/GIOModule.html +592 -0
- data/vendor/local/share/gtk-doc/html/gio/GIOStream.html +772 -0
- data/vendor/local/share/gtk-doc/html/gio/GIcon.html +479 -0
- data/vendor/local/share/gtk-doc/html/gio/GInetAddress.html +1044 -0
- data/vendor/local/share/gtk-doc/html/gio/GInetSocketAddress.html +419 -0
- data/vendor/local/share/gtk-doc/html/gio/GInitable.html +455 -0
- data/vendor/local/share/gtk-doc/html/gio/GInputStream.html +1164 -0
- data/vendor/local/share/gtk-doc/html/gio/GLoadableIcon.html +354 -0
- data/vendor/local/share/gtk-doc/html/gio/GMemoryInputStream.html +308 -0
- data/vendor/local/share/gtk-doc/html/gio/GMemoryOutputStream.html +577 -0
- data/vendor/local/share/gtk-doc/html/gio/GMenu.html +1877 -0
- data/vendor/local/share/gtk-doc/html/gio/GMenuModel.html +1205 -0
- data/vendor/local/share/gtk-doc/html/gio/GMount.html +1929 -0
- data/vendor/local/share/gtk-doc/html/gio/GMountOperation.html +1197 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkAddress.html +451 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkMonitor.html +499 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +421 -0
- data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1561 -0
- data/vendor/local/share/gtk-doc/html/gio/GPermission.html +672 -0
- data/vendor/local/share/gtk-doc/html/gio/GPollableInputStream.html +411 -0
- data/vendor/local/share/gtk-doc/html/gio/GPollableOutputStream.html +411 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxy.html +455 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxyAddress.html +580 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxyResolver.html +395 -0
- data/vendor/local/share/gtk-doc/html/gio/GRemoteActionGroup.html +290 -0
- data/vendor/local/share/gtk-doc/html/gio/GResolver.html +1171 -0
- data/vendor/local/share/gtk-doc/html/gio/GSeekable.html +441 -0
- data/vendor/local/share/gtk-doc/html/gio/GSettings.html +3485 -0
- data/vendor/local/share/gtk-doc/html/gio/GSettingsBackend.html +755 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleAction.html +540 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleActionGroup.html +319 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +1634 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimplePermission.html +129 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleProxyResolver.html +433 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocket.html +3696 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +374 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +2079 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +623 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +631 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +330 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +868 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +329 -0
- data/vendor/local/share/gtk-doc/html/gio/GSrvTarget.html +424 -0
- data/vendor/local/share/gtk-doc/html/gio/GSubprocess.html +1601 -0
- data/vendor/local/share/gtk-doc/html/gio/GTask.html +2562 -0
- data/vendor/local/share/gtk-doc/html/gio/GTcpConnection.html +209 -0
- data/vendor/local/share/gtk-doc/html/gio/GTcpWrapperConnection.html +211 -0
- data/vendor/local/share/gtk-doc/html/gio/GTestDBus.html +510 -0
- data/vendor/local/share/gtk-doc/html/gio/GThemedIcon.html +464 -0
- data/vendor/local/share/gtk-doc/html/gio/GThreadedSocketService.html +241 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsBackend.html +432 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsCertificate.html +590 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsClientConnection.html +550 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsConnection.html +1294 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsDatabase.html +1091 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsFileDatabase.html +208 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsInteraction.html +735 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsPassword.html +662 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsServerConnection.html +193 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixConnection.html +553 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixCredentialsMessage.html +268 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +455 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +349 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixInputStream.html +314 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixOutputStream.html +314 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixSocketAddress.html +612 -0
- data/vendor/local/share/gtk-doc/html/gio/GVfs.html +358 -0
- data/vendor/local/share/gtk-doc/html/gio/GVolume.html +1391 -0
- data/vendor/local/share/gtk-doc/html/gio/GVolumeMonitor.html +926 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +330 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +220 -0
- data/vendor/local/share/gtk-doc/html/gio/annotation-glossary.html +76 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-18.html +148 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-20.html +157 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-22.html +1083 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +210 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-26.html +1640 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-28.html +715 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-30.html +686 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-32.html +725 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-34.html +268 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-36.html +259 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-38.html +161 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-40.html +369 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-42.html +50 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +198 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +9512 -0
- data/vendor/local/share/gtk-doc/html/gio/application.html +80 -0
- data/vendor/local/share/gtk-doc/html/gio/async.html +48 -0
- data/vendor/local/share/gtk-doc/html/gio/ch01.html +232 -0
- data/vendor/local/share/gtk-doc/html/gio/ch02.html +114 -0
- data/vendor/local/share/gtk-doc/html/gio/ch03.html +45 -0
- data/vendor/local/share/gtk-doc/html/gio/ch30.html +75 -0
- data/vendor/local/share/gtk-doc/html/gio/ch31.html +217 -0
- data/vendor/local/share/gtk-doc/html/gio/ch31s02.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/ch31s03.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32.html +56 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s02.html +59 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s03.html +159 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s04.html +46 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s05.html +48 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s06.html +278 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s07.html +160 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33.html +116 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33s02.html +142 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33s03.html +202 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33s04.html +97 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33s05.html +931 -0
- data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +131 -0
- data/vendor/local/share/gtk-doc/html/gio/extending.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/failable_initialization.html +38 -0
- data/vendor/local/share/gtk-doc/html/gio/file_mon.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/file_ops.html +50 -0
- data/vendor/local/share/gtk-doc/html/gio/gapplication-tool.html +288 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-codegen.html +1098 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-convenience.html +65 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-lowlevel.html +59 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-org.gtk.GDBus.Example.ObjectManager.Animal.html +161 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-org.gtk.GDBus.Example.ObjectManager.Cat.html +51 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus.html +300 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Addresses.html +390 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Introspection-Data.html +1572 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Utilities.html +398 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html +1131 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Extension-Points.html +613 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GActionGroup-exporter.html +192 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GBytesIcon.html +162 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +595 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +214 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +214 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GDBusError.html +1106 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +650 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +539 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GIOScheduler.html +365 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GInetAddressMask.html +443 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GMenuModel-exporter.html +183 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GNotification.html +670 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GPropertyAction.html +177 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GResource.html +1141 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GSettingsSchema-GSettingsSchemaSource.html +1186 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GSubprocessLauncher.html +931 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GWin32InputStream.html +258 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GWin32OutputStream.html +259 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Owning-Bus-Names.html +658 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-TLS-Overview.html +321 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +1398 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Watching-Bus-Names.html +575 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-gnetworking.h.html +94 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-gpollableutils.html +475 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +188 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-querymodules.html +53 -0
- data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +2715 -0
- data/vendor/local/share/gtk-doc/html/gio/glib-compile-resources.html +209 -0
- data/vendor/local/share/gtk-doc/html/gio/glib-compile-schemas.html +111 -0
- data/vendor/local/share/gtk-doc/html/gio/gresource-tool.html +111 -0
- data/vendor/local/share/gtk-doc/html/gio/gsettings-tool.html +178 -0
- data/vendor/local/share/gtk-doc/html/gio/gvfs-overview.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/highlevel-socket.html +60 -0
- data/vendor/local/share/gtk-doc/html/gio/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/icons.html +53 -0
- data/vendor/local/share/gtk-doc/html/gio/index.html +646 -0
- data/vendor/local/share/gtk-doc/html/gio/index.sgml +4046 -0
- data/vendor/local/share/gtk-doc/html/gio/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/menu-example.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/menu-model.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/migrating.html +82 -0
- data/vendor/local/share/gtk-doc/html/gio/networking.html +75 -0
- data/vendor/local/share/gtk-doc/html/gio/permissions.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/pt01.html +40 -0
- data/vendor/local/share/gtk-doc/html/gio/pt02.html +572 -0
- data/vendor/local/share/gtk-doc/html/gio/resolver.html +53 -0
- data/vendor/local/share/gtk-doc/html/gio/resources.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/running-gio-apps.html +189 -0
- data/vendor/local/share/gtk-doc/html/gio/settings.html +42 -0
- data/vendor/local/share/gtk-doc/html/gio/streaming.html +107 -0
- data/vendor/local/share/gtk-doc/html/gio/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gio/subprocesses.html +38 -0
- data/vendor/local/share/gtk-doc/html/gio/testing.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/tls.html +62 -0
- data/vendor/local/share/gtk-doc/html/gio/tools.html +56 -0
- data/vendor/local/share/gtk-doc/html/gio/types.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/utils.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/volume_mon.html +47 -0
- data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_breadth-first_traversal.svg +134 -0
- data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_inorder.svg +753 -0
- data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_postorder.svg +750 -0
- data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_preorder.svg +750 -0
- data/vendor/local/share/gtk-doc/html/glib/annotation-glossary.html +81 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-10.html +167 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-12.html +307 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-14.html +562 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-16.html +357 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-18.html +108 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-2.html +119 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-20.html +86 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-22.html +189 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-24.html +423 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-26.html +389 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-28.html +122 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-30.html +252 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-32.html +343 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-34.html +116 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-36.html +116 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-38.html +111 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +399 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-40.html +158 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-42.html +35 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +416 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-8.html +157 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-deprecated.html +596 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +9013 -0
- data/vendor/local/share/gtk-doc/html/glib/deprecated.html +47 -0
- data/vendor/local/share/gtk-doc/html/glib/file-name-encodings.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Arrays.html +1130 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Asynchronous-Queues.html +1242 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Atomic-Operations.html +944 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +614 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html +958 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Base64-Encoding.html +440 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html +1155 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Bookmark-file-parser.html +2442 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Arrays.html +1513 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Order-Macros.html +2152 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Caches.html +540 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Character-Set-Conversion.html +1299 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +2164 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Data-Checksums.html +644 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Data-HMACs.html +549 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html +662 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html +2808 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Deprecated-Thread-APIs.html +2101 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Double-ended-Queues.html +1860 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html +1941 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html +664 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html +1226 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +2516 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GDateTime.html +2430 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GTimeZone.html +664 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +6967 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1842 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html +373 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hash-Tables.html +2260 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hook-Functions.html +1817 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hostname-Utilities.html +287 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-I18N.html +814 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-IO-Channels.html +2662 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Key-value-file-parser.html +3457 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html +1007 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Lexical-Scanner.html +1878 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html +1375 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Slices.html +625 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Message-Logging.html +947 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1180 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +2274 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1995 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +236 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +3551 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Pointer-Arrays.html +1059 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html +378 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Random-Numbers.html +775 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Relations-and-Tuples.html +660 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Sequences.html +2054 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Shell-related-Utilities.html +302 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html +1491 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1560 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Spawning-Processes.html +1165 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html +593 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-String-Chunks.html +374 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html +4052 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1797 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +3149 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +5082 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Thread-Pools.html +774 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Threads.html +3183 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Timers.html +319 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Trash-Stacks.html +254 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html +309 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-UNIX-specific-utilities-and-integration.html +618 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-URI-Functions.html +508 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +4995 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +483 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html +598 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html +585 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-building.html +438 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-changes.html +153 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-compiling.html +145 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-core.html +68 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-cross-compiling.html +165 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-data-types.html +100 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-fundamentals.html +57 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-gettextize.html +96 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-programming.html +76 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-regex-syntax.html +2217 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-resources.html +124 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-running.html +295 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +126 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2399 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.html +72 -0
- data/vendor/local/share/gtk-doc/html/glib/gtester-report.html +81 -0
- data/vendor/local/share/gtk-doc/html/glib/gtester.html +187 -0
- data/vendor/local/share/gtk-doc/html/glib/gvariant-format-strings.html +1338 -0
- data/vendor/local/share/gtk-doc/html/glib/gvariant-text.html +667 -0
- data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/index.html +358 -0
- data/vendor/local/share/gtk-doc/html/glib/index.sgml +2782 -0
- data/vendor/local/share/gtk-doc/html/glib/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/mainloop-states.gif +0 -0
- data/vendor/local/share/gtk-doc/html/glib/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/glib/tools.html +41 -0
- data/vendor/local/share/gtk-doc/html/glib/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/GBinding.html +981 -0
- data/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html +814 -0
- data/vendor/local/share/gtk-doc/html/gobject/GTypePlugin.html +558 -0
- data/vendor/local/share/gtk-doc/html/gobject/annotation-glossary.html +76 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-10.html +80 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-12.html +50 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-14.html +46 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-18.html +43 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-2.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-22.html +43 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-24.html +68 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-26.html +196 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-28.html +42 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-30.html +65 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-32.html +76 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-34.html +58 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-36.html +51 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-38.html +68 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-4.html +173 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-40.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-42.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-6.html +39 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-8.html +39 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-deprecated.html +132 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-full.html +2999 -0
- data/vendor/local/share/gtk-doc/html/gobject/ch01s02.html +136 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-gobject.html +290 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-gtype.html +263 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-intro.html +92 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-signal.html +214 -0
- data/vendor/local/share/gtk-doc/html/gobject/glib-genmarshal.html +380 -0
- data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +337 -0
- data/vendor/local/share/gtk-doc/html/gobject/glue.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html +677 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +3510 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html +1110 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-GParamSpec.html +1937 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html +1101 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html +3395 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html +7262 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +4119 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +6080 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +644 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +309 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-memory.html +234 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-properties.html +392 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-query.html +128 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +838 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-conventions.html +141 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-instantiable-classed.html +288 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html +378 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable.html +76 -0
- data/vendor/local/share/gtk-doc/html/gobject/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-chainup.html +98 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-code.html +88 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-construction.html +172 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-destruction.html +117 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-methods.html +250 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject.html +270 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-implement.html +137 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-override.html +133 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-prerequisite.html +123 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-properties.html +153 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface.html +149 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-signals.html +121 -0
- data/vendor/local/share/gtk-doc/html/gobject/index.html +201 -0
- data/vendor/local/share/gtk-doc/html/gobject/index.sgml +869 -0
- data/vendor/local/share/gtk-doc/html/gobject/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/pr01.html +72 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt01.html +80 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt02.html +67 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt03.html +55 -0
- data/vendor/local/share/gtk-doc/html/gobject/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/rn01.html +85 -0
- data/vendor/local/share/gtk-doc/html/gobject/rn02.html +47 -0
- data/vendor/local/share/gtk-doc/html/gobject/signal.html +378 -0
- data/vendor/local/share/gtk-doc/html/gobject/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-ginspector.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-gob.html +40 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-gtkdoc.html +63 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-refdb.html +48 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-vala.html +43 -0
- data/vendor/local/share/gtk-doc/html/gobject/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/up.png +0 -0
- data/vendor/local/share/info/autosprintf.info +133 -0
- data/vendor/local/share/info/dir +43 -0
- data/vendor/local/share/info/gmp.info +181 -0
- data/vendor/local/share/info/gmp.info-1 +7073 -0
- data/vendor/local/share/info/gmp.info-2 +3865 -0
- data/vendor/local/share/info/gnutls-client-server-use-case.png +0 -0
- data/vendor/local/share/info/gnutls-guile.info +1589 -0
- data/vendor/local/share/info/gnutls-handshake-sequence.png +0 -0
- data/vendor/local/share/info/gnutls-handshake-state.png +0 -0
- data/vendor/local/share/info/gnutls-internals.png +0 -0
- data/vendor/local/share/info/gnutls-layers.png +0 -0
- data/vendor/local/share/info/gnutls-logo.png +0 -0
- data/vendor/local/share/info/gnutls-modauth.png +0 -0
- data/vendor/local/share/info/gnutls-pgp.png +0 -0
- data/vendor/local/share/info/gnutls-x509.png +0 -0
- data/vendor/local/share/info/gnutls.info +1371 -0
- data/vendor/local/share/info/gnutls.info-1 +7371 -0
- data/vendor/local/share/info/gnutls.info-2 +7842 -0
- data/vendor/local/share/info/gnutls.info-3 +11715 -0
- data/vendor/local/share/info/gnutls.info-4 +6737 -0
- data/vendor/local/share/info/gnutls.info-5 +2308 -0
- data/vendor/local/share/info/libffi.info +765 -0
- data/vendor/local/share/info/pkcs11-vision.png +0 -0
- data/vendor/local/share/license/gettext/AUTHORS +2 -0
- data/vendor/local/share/license/gettext/COPYING +13 -0
- data/vendor/local/share/license/glib-networking/AUTHORS +0 -0
- data/vendor/local/share/license/glib-networking/COPYING +481 -0
- data/vendor/local/share/license/glib/AUTHORS +40 -0
- data/vendor/local/share/license/glib/COPYING +482 -0
- data/vendor/local/share/license/gmp/AUTHORS +100 -0
- data/vendor/local/share/license/gmp/COPYING +674 -0
- data/vendor/local/share/license/gnutls/AUTHORS +92 -0
- data/vendor/local/share/license/gnutls/COPYING +674 -0
- data/vendor/local/share/license/libiconv/AUTHORS +1 -0
- data/vendor/local/share/license/libiconv/COPYING +674 -0
- data/vendor/local/share/license/libiconv/COPYING.LIB +482 -0
- data/vendor/local/share/license/nettle/AUTHORS +1 -0
- data/vendor/local/share/license/nettle/COPYING.LIB +510 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/an/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/an/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/en@quot/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/en@shaw/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/fur/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/km/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/locale.alias +75 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mg/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tg/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/tg/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/man/man1/certtool.1 +741 -0
- data/vendor/local/share/man/man1/envsubst.1 +54 -0
- data/vendor/local/share/man/man1/gettext.1 +69 -0
- data/vendor/local/share/man/man1/gnutls-cli-debug.1 +165 -0
- data/vendor/local/share/man/man1/gnutls-cli.1 +420 -0
- data/vendor/local/share/man/man1/gnutls-serv.1 +453 -0
- data/vendor/local/share/man/man1/iconv.1 +108 -0
- data/vendor/local/share/man/man1/ngettext.1 +68 -0
- data/vendor/local/share/man/man1/ocsptool.1 +335 -0
- data/vendor/local/share/man/man1/p11tool.1 +320 -0
- data/vendor/local/share/man/man1/psktool.1 +129 -0
- data/vendor/local/share/man/man1/srptool.1 +164 -0
- data/vendor/local/share/man/man1/tpmtool.1 +223 -0
- data/vendor/local/share/man/man3/bind_textdomain_codeset.3 +72 -0
- data/vendor/local/share/man/man3/bindtextdomain.3 +69 -0
- data/vendor/local/share/man/man3/dcgettext.3 +1 -0
- data/vendor/local/share/man/man3/dcngettext.3 +1 -0
- data/vendor/local/share/man/man3/dgettext.3 +1 -0
- data/vendor/local/share/man/man3/dngettext.3 +1 -0
- data/vendor/local/share/man/man3/ffi.3 +41 -0
- data/vendor/local/share/man/man3/ffi_call.3 +103 -0
- data/vendor/local/share/man/man3/ffi_prep_cif.3 +68 -0
- data/vendor/local/share/man/man3/ffi_prep_cif_var.3 +73 -0
- data/vendor/local/share/man/man3/gettext.3 +99 -0
- data/vendor/local/share/man/man3/gnutls_alert_get.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_alert_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_alert_get_strname.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_alert_send.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_alert_send_appropriate.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_alpn_get_selected_protocol.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_alpn_set_protocols.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_anon_allocate_client_credentials.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_anon_allocate_server_credentials.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_anon_free_client_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_anon_free_server_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_anon_set_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_anon_set_server_dh_params.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_anon_set_server_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_auth_client_get_type.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_auth_get_type.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_auth_server_get_type.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_bye.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_certificate_activation_time_peers.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_certificate_allocate_credentials.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_client_get_request_status.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_client_set_retrieve_function.3 +62 -0
- data/vendor/local/share/man/man3/gnutls_certificate_expiration_time_peers.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_ca_names.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_cas.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_credentials.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_crls.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_keys.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_crt_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_issuer.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_ours.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_peers.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_peers_subkey_id.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_certificate_send_x509_rdn_sequence.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_certificate_server_set_request.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_certificate_server_set_retrieve_function.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_dh_params.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_key.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_ocsp_status_request_file.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_ocsp_status_request_function.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_file.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_file2.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_mem.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_mem2.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_keyring_file.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_keyring_mem.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_pin_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_retrieve_function.3 +65 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_retrieve_function2.3 +68 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_rsa_export_params.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_trust_list.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_verify_flags.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_verify_function.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_verify_limits.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl_file.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl_mem.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_file.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_file2.3 +62 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_mem.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_mem2.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_simple_pkcs12_file.3 +63 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_simple_pkcs12_mem.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_system_trust.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust_file.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust_mem.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_get.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_list.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_set_priority.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_certificate_verification_status_print.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_certificate_verify_peers2.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_verify_peers3.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_check_version.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_cipher_add_auth.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_cipher_decrypt.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_cipher_decrypt2.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_cipher_deinit.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_encrypt.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_cipher_encrypt2.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_block_size.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_iv_size.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_key_size.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_tag_size.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_cipher_init.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_cipher_list.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_cipher_set_iv.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_cipher_set_priority.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_cipher_suite_get_name.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_cipher_suite_info.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_cipher_tag.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_compression_get.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_compression_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_compression_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_compression_list.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_compression_set_priority.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_credentials_clear.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_credentials_set.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_db_check_entry.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_db_check_entry_time.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_db_get_default_cache_expiration.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_db_get_ptr.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_db_remove_session.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_db_set_cache_expiration.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_db_set_ptr.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_db_set_remove_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_db_set_retrieve_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_db_set_store_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_group.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_peers_public_bits.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_prime_bits.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_pubkey.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_secret_bits.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_cpy.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_export2_pkcs3.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_export_pkcs3.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_export_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_generate2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_import_pkcs3.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_import_raw.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_dh_set_prime_bits.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_digest_get_id.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_digest_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_digest_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_dtls_cookie_send.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_dtls_cookie_verify.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_dtls_get_data_mtu.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_dtls_get_mtu.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_dtls_get_timeout.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_dtls_prestate_set.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_dtls_set_data_mtu.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_dtls_set_mtu.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_dtls_set_timeouts.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_ecc_curve_get.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_ecc_curve_get_name.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ecc_curve_get_size.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_ecc_curve_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_error_is_fatal.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_error_to_alert.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_est_record_overhead_size.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_fingerprint.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_global_deinit.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_global_init.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_global_set_audit_log_function.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_global_set_log_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_global_set_log_level.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_global_set_mem_functions.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_global_set_mutex.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_global_set_time_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_handshake.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_handshake_description_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_handshake_get_last_in.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_handshake_get_last_out.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_hook_function.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_max_packet_length.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_post_client_hello_function.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_private_extensions.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_random.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_timeout.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_hash.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_hash_deinit.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hash_fast.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_hash_get_len.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hash_init.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_hash_output.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_allowed.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_enable.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_get_timeout.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_ping.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_pong.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_set_timeouts.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_hex2bin.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_hex_decode.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_hex_encode.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_hmac.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_hmac_deinit.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hmac_fast.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_hmac_get_len.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hmac_init.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_hmac_output.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hmac_set_nonce.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_init.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_key_generate.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_kx_get.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_kx_get_id.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_kx_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_kx_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_kx_set_priority.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_load_file.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_mac_get.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_mac_get_id.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_mac_get_key_size.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_mac_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_mac_get_nonce_size.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_mac_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_mac_set_priority.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_add_cert.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_add_cert_id.3 +57 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_export.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_get_cert_id.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_get_extension.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_get_nonce.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_get_version.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_import.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_print.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_randomize_nonce.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_set_extension.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_set_nonce.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_check_crt.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_export.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_certs.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_extension.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_nonce.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_produced.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_responder.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_response.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_signature.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_signature_algorithm.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_single.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_status.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_version.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_import.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_print.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_verify.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_verify_direct.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_status_request_enable_client.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_status_request_get.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_status_request_is_checked.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_check_hostname.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_export.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_export2.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_auth_subkey.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_creation_time.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_expiration_time.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_fingerprint.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_key_id.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_key_usage.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_name.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_algorithm.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_dsa_raw.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_rsa_raw.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_preferred_key_id.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_revoked_status.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_count.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_creation_time.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_expiration_time.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_fingerprint.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_id.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_idx.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_algorithm.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_dsa_raw.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_rsa_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_revoked_status.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_usage.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_version.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_import.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_init.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_print.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_set_preferred_key_id.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_verify_ring.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_verify_self.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_check_id.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_get_crt.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_get_crt_count.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_import.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_init.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export2.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_dsa_raw.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_rsa_raw.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_subkey_dsa_raw.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_subkey_rsa_raw.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_fingerprint.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_key_id.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_pk_algorithm.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_preferred_key_id.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_revoked_status.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_count.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_creation_time.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_expiration_time.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_fingerprint.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_id.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_idx.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_pk_algorithm.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_revoked_status.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_import.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_init.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_sec_param.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_set_preferred_key_id.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_sign_hash.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_send_cert.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_set_recv_key_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pcert_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_pcert_import_openpgp.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pcert_import_openpgp_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pcert_import_x509.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pcert_import_x509_raw.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pcert_list_import_x509_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_pem_base64_decode.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pem_base64_decode_alloc.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pem_base64_encode.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pem_base64_encode_alloc.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_perror.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_pk_algorithm_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_pk_bits_to_sec_param.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pk_get_id.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pk_get_name.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pk_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pk_to_sign.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_add_provider.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_copy_secret_key.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_copy_x509_crt.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_copy_x509_privkey.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_delete_url.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_get_pin_function.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_get_raw_issuer.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_init.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export2.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export3.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export_url.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_get_info.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_get_type.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_import_url.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_list_import_url.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_list_import_url2.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_set_pin_function.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_export_url.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_generate.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_generate2.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_get_info.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_get_pk_algorithm.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_import_url.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_set_pin_function.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_status.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_reinit.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_set_pin_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_set_token_function.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_flags.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_info.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_mechanism.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_random.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_url.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_init.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_set_pin.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_type_get_name.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_decrypt.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_encrypt.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_count.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_data.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_friendly_name.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_key_id.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_type.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_crl.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_crt.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_data.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_friendly_name.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_key_id.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_export2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_generate_mac.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_get_bag.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_import.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_set_bag.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_simple_parse.3 +84 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_verify_mac.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_delete_crl.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_delete_crt.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_export2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_get_crl_count.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_get_crl_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_get_crt_count.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_get_crt_raw.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_import.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_set_crl.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_set_crl_raw.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_set_crt.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_set_crt_raw.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_prf.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_prf_raw.3 +62 -0
- data/vendor/local/share/man/man3/gnutls_priority_certificate_type_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_cipher_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_compression_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_priority_ecc_curve_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_get_cipher_suite_index.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_priority_init.3 +102 -0
- data/vendor/local/share/man/man3/gnutls_priority_kx_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_mac_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_protocol_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_set.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_priority_set_direct.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_priority_sign_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_privkey_decrypt_data.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_privkey_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_privkey_get_pk_algorithm.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_privkey_get_type.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_ext.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_ext2.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_openpgp.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_openpgp_raw.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_pkcs11.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_pkcs11_url.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_tpm_raw.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_tpm_url.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_url.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_x509.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_x509_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_privkey_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_privkey_set_pin_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_privkey_sign_data.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_privkey_sign_hash.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_privkey_sign_raw_data.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_privkey_status.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_protocol_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_protocol_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_protocol_get_version.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_protocol_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_protocol_set_priority.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_psk_allocate_client_credentials.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_psk_allocate_server_credentials.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_psk_client_get_hint.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_psk_free_client_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_psk_free_server_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_psk_server_get_username.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_client_credentials.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_client_credentials_function.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_file.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_function.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_hint.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_dh_params.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_encrypt_data.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_export.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_export2.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_key_id.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_key_usage.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_openpgp_key_id.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_algorithm.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_dsa_raw.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_ecc_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_ecc_x962.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_rsa_raw.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_preferred_hash_algorithm.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_verify_algorithm.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_dsa_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_ecc_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_ecc_x962.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_openpgp.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_openpgp_raw.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_pkcs11.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_pkcs11_url.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_privkey.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_rsa_raw.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_tpm_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_tpm_url.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_url.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_x509.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_x509_crq.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_x509_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_print.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_set_key_usage.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_set_pin_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_verify_data.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_verify_data2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_verify_hash.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_verify_hash2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_random_art.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_range_split.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_record_can_use_length_hiding.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_record_check_corked.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_record_check_pending.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_record_cork.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_record_disable_padding.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_record_get_direction.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_record_get_discarded.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_record_get_max_size.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_record_overhead_size.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_record_recv.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_record_recv_seq.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_record_send.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_record_send_range.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_record_set_max_empty_records.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_record_set_max_size.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_record_set_timeout.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_record_uncork.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_rehandshake.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_rnd.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_rnd_refresh.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_rsa_export_get_modulus_bits.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_rsa_export_get_pubkey.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_cpy.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_export_pkcs1.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_export_raw.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_generate2.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_import_pkcs1.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_import_raw.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_init.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_safe_renegotiation_status.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_sec_param_get_name.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sec_param_to_pk_bits.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_server_name_get.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_server_name_set.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_session_channel_binding.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_session_enable_compatibility_mode.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_session_force_valid.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_session_get_data.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_session_get_data2.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_session_get_desc.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_session_get_id.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_session_get_id2.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_session_get_ptr.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_session_get_random.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_session_is_resumed.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_session_resumption_requested.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_session_set_data.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_session_set_id.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_session_set_premaster.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_session_set_ptr.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_session_ticket_enable_client.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_session_ticket_enable_server.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_session_ticket_key_generate.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_set_default_export_priority.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_set_default_priority.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_sign_algorithm_get.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sign_algorithm_get_client.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sign_algorithm_get_requested.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_sign_callback_get.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_sign_callback_set.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_sign_get_hash_algorithm.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sign_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_sign_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_sign_get_pk_algorithm.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sign_is_secure.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_sign_list.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_srp_allocate_client_credentials.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_srp_allocate_server_credentials.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_srp_base64_decode.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_srp_base64_decode_alloc.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_srp_base64_encode.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_srp_base64_encode_alloc.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_srp_free_client_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_srp_free_server_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_srp_server_get_username.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_client_credentials.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_client_credentials_function.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_prime_bits.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_server_credentials_file.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_server_credentials_function.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_srp_verifier.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_keys.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_mki.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_profile_id.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_profile_name.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_selected_profile.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_srtp_set_mki.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_srtp_set_profile.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_srtp_set_profile_direct.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_store_commitment.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_store_pubkey.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_strerror.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_strerror_name.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_supplemental_get_name.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_tdb_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_tdb_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_tdb_set_store_commitment_func.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_tdb_set_store_func.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_tdb_set_verify_func.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_tpm_get_registered.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_tpm_key_list_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_tpm_key_list_get_url.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_tpm_privkey_delete.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_tpm_privkey_generate.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_transport_get_int.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_transport_get_int2.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_transport_get_ptr.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_transport_get_ptr2.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_errno.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_errno_function.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_int.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_int2.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_ptr.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_ptr2.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_pull_function.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_pull_timeout_function.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_push_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_vec_push_function.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_url_is_supported.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_verify_stored_pubkey.3 +67 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_check_issuer.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_export.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_export2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_authority_key_gn_serial.3 +57 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_authority_key_id.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_crt_count.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_crt_serial.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_dn_oid.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_data.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_info.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_oid.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn2.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn_by_oid.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_next_update.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_number.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_raw_issuer_dn.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_signature.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_signature_algorithm.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_this_update.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_version.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_import.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_init.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_list_import.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_list_import2.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_print.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_privkey_sign.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_authority_key_id.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_crt.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_crt_serial.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_next_update.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_number.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_this_update.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_version.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_sign.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_sign2.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_verify.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_deinit.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_export.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_export2.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_by_oid.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_data.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_info.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_basic_constraints.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_challenge_password.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn2.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn_by_oid.3 +57 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn_oid.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_by_oid.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_data.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_info.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_id.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_purpose_oid.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_rsa_raw.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_usage.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_pk_algorithm.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_private_key_usage_period.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_subject_alt_name.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_subject_alt_othername_oid.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_version.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_import.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_init.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_print.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_privkey_sign.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_attribute_by_oid.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_basic_constraints.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_challenge_password.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_dn.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_dn_by_oid.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_key.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_purpose_oid.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_rsa_raw.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_usage.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_private_key_usage_period.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_pubkey.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_subject_alt_name.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_version.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_sign.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_sign2.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_verify.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_check_hostname.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_check_issuer.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_check_revocation.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_cpy_crl_dist_points.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_export2.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_activation_time.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_info_access.3 +100 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_key_gn_serial.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_key_id.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_basic_constraints.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_ca_status.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_crl_dist_points.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn2.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn_by_oid.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn_oid.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_expiration_time.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_by_oid.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_data.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_info.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_oid.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_fingerprint.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_name.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_name2.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_othername_oid.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn2.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn_by_oid.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn_oid.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_unique_id.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_id.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_purpose_oid.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_usage.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_algorithm.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_dsa_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_rsa_raw.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_policy.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_preferred_hash_algorithm.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_private_key_usage_period.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_proxy.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_raw_dn.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_raw_issuer_dn.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_serial.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_signature.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_signature_algorithm.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_name.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_name2.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_othername_oid.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_key_id.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_unique_id.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_verify_algorithm.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_version.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_import.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_import_pkcs11.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_import_pkcs11_url.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_list_import.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_list_import2.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_list_import_pkcs11.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_list_verify.3 +62 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_print.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_privkey_sign.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_activation_time.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_authority_info_access.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_authority_key_id.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_basic_constraints.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_ca_status.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_crl_dist_points.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_crl_dist_points2.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_crq.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_crq_extensions.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_dn.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_dn_by_oid.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_expiration_time.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_extension_by_oid.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_issuer_dn.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_issuer_dn_by_oid.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_key.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_key_purpose_oid.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_key_usage.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_pin_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_policy.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_private_key_usage_period.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_proxy.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_proxy_dn.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_pubkey.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_serial.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_alt_name.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_alternative_name.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_key_id.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_version.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_sign.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_sign2.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_verify.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_verify_data.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_verify_hash.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_deinit.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_export2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_get_rdn_ava.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_import.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_init.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_oid_known.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_oid_name.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_policy_release.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_cpy.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export2.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export2_pkcs8.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_dsa_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_ecc_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_pkcs8.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_rsa_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_rsa_raw2.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_fix.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_generate.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_get_key_id.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_get_pk_algorithm.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_get_pk_algorithm2.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import2.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_dsa_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_ecc_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_openssl.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_pkcs8.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_rsa_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_rsa_raw2.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_sec_param.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_sign_data.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_sign_hash.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_verify_params.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_rdn_get.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_rdn_get_by_oid.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_rdn_get_oid.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_cas.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_crls.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_named_crt.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_system_trust.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_trust_file.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_trust_mem.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_deinit.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_get_issuer.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_init.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_cas.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_trust_file.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_trust_mem.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_verify_crt.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_verify_named_crt.3 +53 -0
- data/vendor/local/share/man/man3/iconv.3 +92 -0
- data/vendor/local/share/man/man3/iconv_close.3 +31 -0
- data/vendor/local/share/man/man3/iconv_open.3 +205 -0
- data/vendor/local/share/man/man3/iconv_open_into.3 +47 -0
- data/vendor/local/share/man/man3/iconvctl.3 +67 -0
- data/vendor/local/share/man/man3/ngettext.3 +60 -0
- data/vendor/local/share/man/man3/textdomain.3 +57 -0
- data/vendor/local/share/man/man3/xssl_client_init.3 +56 -0
- data/vendor/local/share/man/man3/xssl_cred_deinit.3 +37 -0
- data/vendor/local/share/man/man3/xssl_cred_init.3 +48 -0
- data/vendor/local/share/man/man3/xssl_deinit.3 +36 -0
- data/vendor/local/share/man/man3/xssl_flush.3 +39 -0
- data/vendor/local/share/man/man3/xssl_get_session.3 +35 -0
- data/vendor/local/share/man/man3/xssl_getdelim.3 +49 -0
- data/vendor/local/share/man/man3/xssl_printf.3 +45 -0
- data/vendor/local/share/man/man3/xssl_read.3 +43 -0
- data/vendor/local/share/man/man3/xssl_server_init.3 +50 -0
- data/vendor/local/share/man/man3/xssl_sinit.3 +44 -0
- data/vendor/local/share/man/man3/xssl_write.3 +47 -0
- metadata +2311 -0
@@ -0,0 +1,2308 @@
|
|
1
|
+
This is gnutls.info, produced by makeinfo version 5.2 from gnutls.texi.
|
2
|
+
|
3
|
+
This manual is last updated 1 January 2014 for version 3.2.21 of GnuTLS.
|
4
|
+
|
5
|
+
Copyright (C) 2001-2013 Free Software Foundation, Inc.\\ Copyright (C)
|
6
|
+
2001-2013 Nikos Mavrogiannopoulos
|
7
|
+
|
8
|
+
Permission is granted to copy, distribute and/or modify this
|
9
|
+
document under the terms of the GNU Free Documentation License,
|
10
|
+
Version 1.3 or any later version published by the Free Software
|
11
|
+
Foundation; with no Invariant Sections, no Front-Cover Texts, and
|
12
|
+
no Back-Cover Texts. A copy of the license is included in the
|
13
|
+
section entitled "GNU Free Documentation License".
|
14
|
+
INFO-DIR-SECTION Software libraries
|
15
|
+
START-INFO-DIR-ENTRY
|
16
|
+
* GnuTLS: (gnutls). GNU Transport Layer Security Library.
|
17
|
+
END-INFO-DIR-ENTRY
|
18
|
+
|
19
|
+
INFO-DIR-SECTION System Administration
|
20
|
+
START-INFO-DIR-ENTRY
|
21
|
+
* certtool: (gnutls)Invoking certtool. Manipulate certificates and keys.
|
22
|
+
* gnutls-serv: (gnutls)Invoking gnutls-serv. GnuTLS test server.
|
23
|
+
* gnutls-cli: (gnutls)Invoking gnutls-cli. GnuTLS test client.
|
24
|
+
* gnutls-cli-debug: (gnutls)Invoking gnutls-cli-debug. GnuTLS debug client.
|
25
|
+
* psktool: (gnutls)Invoking psktool. Simple TLS-Pre-Shared-Keys manager.
|
26
|
+
* srptool: (gnutls)Invoking srptool. Simple SRP password tool.
|
27
|
+
END-INFO-DIR-ENTRY
|
28
|
+
|
29
|
+
|
30
|
+
File: gnutls.info, Node: Copying Information, Next: Bibliography, Prev: API reference, Up: Top
|
31
|
+
|
32
|
+
Appendix F Copying Information
|
33
|
+
******************************
|
34
|
+
|
35
|
+
GNU Free Documentation License
|
36
|
+
==============================
|
37
|
+
|
38
|
+
Version 1.3, 3 November 2008
|
39
|
+
|
40
|
+
Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
|
41
|
+
<http://fsf.org/>
|
42
|
+
|
43
|
+
Everyone is permitted to copy and distribute verbatim copies
|
44
|
+
of this license document, but changing it is not allowed.
|
45
|
+
|
46
|
+
0. PREAMBLE
|
47
|
+
|
48
|
+
The purpose of this License is to make a manual, textbook, or other
|
49
|
+
functional and useful document "free" in the sense of freedom: to
|
50
|
+
assure everyone the effective freedom to copy and redistribute it,
|
51
|
+
with or without modifying it, either commercially or
|
52
|
+
noncommercially. Secondarily, this License preserves for the
|
53
|
+
author and publisher a way to get credit for their work, while not
|
54
|
+
being considered responsible for modifications made by others.
|
55
|
+
|
56
|
+
This License is a kind of "copyleft", which means that derivative
|
57
|
+
works of the document must themselves be free in the same sense.
|
58
|
+
It complements the GNU General Public License, which is a copyleft
|
59
|
+
license designed for free software.
|
60
|
+
|
61
|
+
We have designed this License in order to use it for manuals for
|
62
|
+
free software, because free software needs free documentation: a
|
63
|
+
free program should come with manuals providing the same freedoms
|
64
|
+
that the software does. But this License is not limited to
|
65
|
+
software manuals; it can be used for any textual work, regardless
|
66
|
+
of subject matter or whether it is published as a printed book. We
|
67
|
+
recommend this License principally for works whose purpose is
|
68
|
+
instruction or reference.
|
69
|
+
|
70
|
+
1. APPLICABILITY AND DEFINITIONS
|
71
|
+
|
72
|
+
This License applies to any manual or other work, in any medium,
|
73
|
+
that contains a notice placed by the copyright holder saying it can
|
74
|
+
be distributed under the terms of this License. Such a notice
|
75
|
+
grants a world-wide, royalty-free license, unlimited in duration,
|
76
|
+
to use that work under the conditions stated herein. The
|
77
|
+
"Document", below, refers to any such manual or work. Any member
|
78
|
+
of the public is a licensee, and is addressed as "you". You accept
|
79
|
+
the license if you copy, modify or distribute the work in a way
|
80
|
+
requiring permission under copyright law.
|
81
|
+
|
82
|
+
A "Modified Version" of the Document means any work containing the
|
83
|
+
Document or a portion of it, either copied verbatim, or with
|
84
|
+
modifications and/or translated into another language.
|
85
|
+
|
86
|
+
A "Secondary Section" is a named appendix or a front-matter section
|
87
|
+
of the Document that deals exclusively with the relationship of the
|
88
|
+
publishers or authors of the Document to the Document's overall
|
89
|
+
subject (or to related matters) and contains nothing that could
|
90
|
+
fall directly within that overall subject. (Thus, if the Document
|
91
|
+
is in part a textbook of mathematics, a Secondary Section may not
|
92
|
+
explain any mathematics.) The relationship could be a matter of
|
93
|
+
historical connection with the subject or with related matters, or
|
94
|
+
of legal, commercial, philosophical, ethical or political position
|
95
|
+
regarding them.
|
96
|
+
|
97
|
+
The "Invariant Sections" are certain Secondary Sections whose
|
98
|
+
titles are designated, as being those of Invariant Sections, in the
|
99
|
+
notice that says that the Document is released under this License.
|
100
|
+
If a section does not fit the above definition of Secondary then it
|
101
|
+
is not allowed to be designated as Invariant. The Document may
|
102
|
+
contain zero Invariant Sections. If the Document does not identify
|
103
|
+
any Invariant Sections then there are none.
|
104
|
+
|
105
|
+
The "Cover Texts" are certain short passages of text that are
|
106
|
+
listed, as Front-Cover Texts or Back-Cover Texts, in the notice
|
107
|
+
that says that the Document is released under this License. A
|
108
|
+
Front-Cover Text may be at most 5 words, and a Back-Cover Text may
|
109
|
+
be at most 25 words.
|
110
|
+
|
111
|
+
A "Transparent" copy of the Document means a machine-readable copy,
|
112
|
+
represented in a format whose specification is available to the
|
113
|
+
general public, that is suitable for revising the document
|
114
|
+
straightforwardly with generic text editors or (for images composed
|
115
|
+
of pixels) generic paint programs or (for drawings) some widely
|
116
|
+
available drawing editor, and that is suitable for input to text
|
117
|
+
formatters or for automatic translation to a variety of formats
|
118
|
+
suitable for input to text formatters. A copy made in an otherwise
|
119
|
+
Transparent file format whose markup, or absence of markup, has
|
120
|
+
been arranged to thwart or discourage subsequent modification by
|
121
|
+
readers is not Transparent. An image format is not Transparent if
|
122
|
+
used for any substantial amount of text. A copy that is not
|
123
|
+
"Transparent" is called "Opaque".
|
124
|
+
|
125
|
+
Examples of suitable formats for Transparent copies include plain
|
126
|
+
ASCII without markup, Texinfo input format, LaTeX input format,
|
127
|
+
SGML or XML using a publicly available DTD, and standard-conforming
|
128
|
+
simple HTML, PostScript or PDF designed for human modification.
|
129
|
+
Examples of transparent image formats include PNG, XCF and JPG.
|
130
|
+
Opaque formats include proprietary formats that can be read and
|
131
|
+
edited only by proprietary word processors, SGML or XML for which
|
132
|
+
the DTD and/or processing tools are not generally available, and
|
133
|
+
the machine-generated HTML, PostScript or PDF produced by some word
|
134
|
+
processors for output purposes only.
|
135
|
+
|
136
|
+
The "Title Page" means, for a printed book, the title page itself,
|
137
|
+
plus such following pages as are needed to hold, legibly, the
|
138
|
+
material this License requires to appear in the title page. For
|
139
|
+
works in formats which do not have any title page as such, "Title
|
140
|
+
Page" means the text near the most prominent appearance of the
|
141
|
+
work's title, preceding the beginning of the body of the text.
|
142
|
+
|
143
|
+
The "publisher" means any person or entity that distributes copies
|
144
|
+
of the Document to the public.
|
145
|
+
|
146
|
+
A section "Entitled XYZ" means a named subunit of the Document
|
147
|
+
whose title either is precisely XYZ or contains XYZ in parentheses
|
148
|
+
following text that translates XYZ in another language. (Here XYZ
|
149
|
+
stands for a specific section name mentioned below, such as
|
150
|
+
"Acknowledgements", "Dedications", "Endorsements", or "History".)
|
151
|
+
To "Preserve the Title" of such a section when you modify the
|
152
|
+
Document means that it remains a section "Entitled XYZ" according
|
153
|
+
to this definition.
|
154
|
+
|
155
|
+
The Document may include Warranty Disclaimers next to the notice
|
156
|
+
which states that this License applies to the Document. These
|
157
|
+
Warranty Disclaimers are considered to be included by reference in
|
158
|
+
this License, but only as regards disclaiming warranties: any other
|
159
|
+
implication that these Warranty Disclaimers may have is void and
|
160
|
+
has no effect on the meaning of this License.
|
161
|
+
|
162
|
+
2. VERBATIM COPYING
|
163
|
+
|
164
|
+
You may copy and distribute the Document in any medium, either
|
165
|
+
commercially or noncommercially, provided that this License, the
|
166
|
+
copyright notices, and the license notice saying this License
|
167
|
+
applies to the Document are reproduced in all copies, and that you
|
168
|
+
add no other conditions whatsoever to those of this License. You
|
169
|
+
may not use technical measures to obstruct or control the reading
|
170
|
+
or further copying of the copies you make or distribute. However,
|
171
|
+
you may accept compensation in exchange for copies. If you
|
172
|
+
distribute a large enough number of copies you must also follow the
|
173
|
+
conditions in section 3.
|
174
|
+
|
175
|
+
You may also lend copies, under the same conditions stated above,
|
176
|
+
and you may publicly display copies.
|
177
|
+
|
178
|
+
3. COPYING IN QUANTITY
|
179
|
+
|
180
|
+
If you publish printed copies (or copies in media that commonly
|
181
|
+
have printed covers) of the Document, numbering more than 100, and
|
182
|
+
the Document's license notice requires Cover Texts, you must
|
183
|
+
enclose the copies in covers that carry, clearly and legibly, all
|
184
|
+
these Cover Texts: Front-Cover Texts on the front cover, and
|
185
|
+
Back-Cover Texts on the back cover. Both covers must also clearly
|
186
|
+
and legibly identify you as the publisher of these copies. The
|
187
|
+
front cover must present the full title with all words of the title
|
188
|
+
equally prominent and visible. You may add other material on the
|
189
|
+
covers in addition. Copying with changes limited to the covers, as
|
190
|
+
long as they preserve the title of the Document and satisfy these
|
191
|
+
conditions, can be treated as verbatim copying in other respects.
|
192
|
+
|
193
|
+
If the required texts for either cover are too voluminous to fit
|
194
|
+
legibly, you should put the first ones listed (as many as fit
|
195
|
+
reasonably) on the actual cover, and continue the rest onto
|
196
|
+
adjacent pages.
|
197
|
+
|
198
|
+
If you publish or distribute Opaque copies of the Document
|
199
|
+
numbering more than 100, you must either include a machine-readable
|
200
|
+
Transparent copy along with each Opaque copy, or state in or with
|
201
|
+
each Opaque copy a computer-network location from which the general
|
202
|
+
network-using public has access to download using public-standard
|
203
|
+
network protocols a complete Transparent copy of the Document, free
|
204
|
+
of added material. If you use the latter option, you must take
|
205
|
+
reasonably prudent steps, when you begin distribution of Opaque
|
206
|
+
copies in quantity, to ensure that this Transparent copy will
|
207
|
+
remain thus accessible at the stated location until at least one
|
208
|
+
year after the last time you distribute an Opaque copy (directly or
|
209
|
+
through your agents or retailers) of that edition to the public.
|
210
|
+
|
211
|
+
It is requested, but not required, that you contact the authors of
|
212
|
+
the Document well before redistributing any large number of copies,
|
213
|
+
to give them a chance to provide you with an updated version of the
|
214
|
+
Document.
|
215
|
+
|
216
|
+
4. MODIFICATIONS
|
217
|
+
|
218
|
+
You may copy and distribute a Modified Version of the Document
|
219
|
+
under the conditions of sections 2 and 3 above, provided that you
|
220
|
+
release the Modified Version under precisely this License, with the
|
221
|
+
Modified Version filling the role of the Document, thus licensing
|
222
|
+
distribution and modification of the Modified Version to whoever
|
223
|
+
possesses a copy of it. In addition, you must do these things in
|
224
|
+
the Modified Version:
|
225
|
+
|
226
|
+
A. Use in the Title Page (and on the covers, if any) a title
|
227
|
+
distinct from that of the Document, and from those of previous
|
228
|
+
versions (which should, if there were any, be listed in the
|
229
|
+
History section of the Document). You may use the same title
|
230
|
+
as a previous version if the original publisher of that
|
231
|
+
version gives permission.
|
232
|
+
|
233
|
+
B. List on the Title Page, as authors, one or more persons or
|
234
|
+
entities responsible for authorship of the modifications in
|
235
|
+
the Modified Version, together with at least five of the
|
236
|
+
principal authors of the Document (all of its principal
|
237
|
+
authors, if it has fewer than five), unless they release you
|
238
|
+
from this requirement.
|
239
|
+
|
240
|
+
C. State on the Title page the name of the publisher of the
|
241
|
+
Modified Version, as the publisher.
|
242
|
+
|
243
|
+
D. Preserve all the copyright notices of the Document.
|
244
|
+
|
245
|
+
E. Add an appropriate copyright notice for your modifications
|
246
|
+
adjacent to the other copyright notices.
|
247
|
+
|
248
|
+
F. Include, immediately after the copyright notices, a license
|
249
|
+
notice giving the public permission to use the Modified
|
250
|
+
Version under the terms of this License, in the form shown in
|
251
|
+
the Addendum below.
|
252
|
+
|
253
|
+
G. Preserve in that license notice the full lists of Invariant
|
254
|
+
Sections and required Cover Texts given in the Document's
|
255
|
+
license notice.
|
256
|
+
|
257
|
+
H. Include an unaltered copy of this License.
|
258
|
+
|
259
|
+
I. Preserve the section Entitled "History", Preserve its Title,
|
260
|
+
and add to it an item stating at least the title, year, new
|
261
|
+
authors, and publisher of the Modified Version as given on the
|
262
|
+
Title Page. If there is no section Entitled "History" in the
|
263
|
+
Document, create one stating the title, year, authors, and
|
264
|
+
publisher of the Document as given on its Title Page, then add
|
265
|
+
an item describing the Modified Version as stated in the
|
266
|
+
previous sentence.
|
267
|
+
|
268
|
+
J. Preserve the network location, if any, given in the Document
|
269
|
+
for public access to a Transparent copy of the Document, and
|
270
|
+
likewise the network locations given in the Document for
|
271
|
+
previous versions it was based on. These may be placed in the
|
272
|
+
"History" section. You may omit a network location for a work
|
273
|
+
that was published at least four years before the Document
|
274
|
+
itself, or if the original publisher of the version it refers
|
275
|
+
to gives permission.
|
276
|
+
|
277
|
+
K. For any section Entitled "Acknowledgements" or "Dedications",
|
278
|
+
Preserve the Title of the section, and preserve in the section
|
279
|
+
all the substance and tone of each of the contributor
|
280
|
+
acknowledgements and/or dedications given therein.
|
281
|
+
|
282
|
+
L. Preserve all the Invariant Sections of the Document, unaltered
|
283
|
+
in their text and in their titles. Section numbers or the
|
284
|
+
equivalent are not considered part of the section titles.
|
285
|
+
|
286
|
+
M. Delete any section Entitled "Endorsements". Such a section
|
287
|
+
may not be included in the Modified Version.
|
288
|
+
|
289
|
+
N. Do not retitle any existing section to be Entitled
|
290
|
+
"Endorsements" or to conflict in title with any Invariant
|
291
|
+
Section.
|
292
|
+
|
293
|
+
O. Preserve any Warranty Disclaimers.
|
294
|
+
|
295
|
+
If the Modified Version includes new front-matter sections or
|
296
|
+
appendices that qualify as Secondary Sections and contain no
|
297
|
+
material copied from the Document, you may at your option designate
|
298
|
+
some or all of these sections as invariant. To do this, add their
|
299
|
+
titles to the list of Invariant Sections in the Modified Version's
|
300
|
+
license notice. These titles must be distinct from any other
|
301
|
+
section titles.
|
302
|
+
|
303
|
+
You may add a section Entitled "Endorsements", provided it contains
|
304
|
+
nothing but endorsements of your Modified Version by various
|
305
|
+
parties--for example, statements of peer review or that the text
|
306
|
+
has been approved by an organization as the authoritative
|
307
|
+
definition of a standard.
|
308
|
+
|
309
|
+
You may add a passage of up to five words as a Front-Cover Text,
|
310
|
+
and a passage of up to 25 words as a Back-Cover Text, to the end of
|
311
|
+
the list of Cover Texts in the Modified Version. Only one passage
|
312
|
+
of Front-Cover Text and one of Back-Cover Text may be added by (or
|
313
|
+
through arrangements made by) any one entity. If the Document
|
314
|
+
already includes a cover text for the same cover, previously added
|
315
|
+
by you or by arrangement made by the same entity you are acting on
|
316
|
+
behalf of, you may not add another; but you may replace the old
|
317
|
+
one, on explicit permission from the previous publisher that added
|
318
|
+
the old one.
|
319
|
+
|
320
|
+
The author(s) and publisher(s) of the Document do not by this
|
321
|
+
License give permission to use their names for publicity for or to
|
322
|
+
assert or imply endorsement of any Modified Version.
|
323
|
+
|
324
|
+
5. COMBINING DOCUMENTS
|
325
|
+
|
326
|
+
You may combine the Document with other documents released under
|
327
|
+
this License, under the terms defined in section 4 above for
|
328
|
+
modified versions, provided that you include in the combination all
|
329
|
+
of the Invariant Sections of all of the original documents,
|
330
|
+
unmodified, and list them all as Invariant Sections of your
|
331
|
+
combined work in its license notice, and that you preserve all
|
332
|
+
their Warranty Disclaimers.
|
333
|
+
|
334
|
+
The combined work need only contain one copy of this License, and
|
335
|
+
multiple identical Invariant Sections may be replaced with a single
|
336
|
+
copy. If there are multiple Invariant Sections with the same name
|
337
|
+
but different contents, make the title of each such section unique
|
338
|
+
by adding at the end of it, in parentheses, the name of the
|
339
|
+
original author or publisher of that section if known, or else a
|
340
|
+
unique number. Make the same adjustment to the section titles in
|
341
|
+
the list of Invariant Sections in the license notice of the
|
342
|
+
combined work.
|
343
|
+
|
344
|
+
In the combination, you must combine any sections Entitled
|
345
|
+
"History" in the various original documents, forming one section
|
346
|
+
Entitled "History"; likewise combine any sections Entitled
|
347
|
+
"Acknowledgements", and any sections Entitled "Dedications". You
|
348
|
+
must delete all sections Entitled "Endorsements."
|
349
|
+
|
350
|
+
6. COLLECTIONS OF DOCUMENTS
|
351
|
+
|
352
|
+
You may make a collection consisting of the Document and other
|
353
|
+
documents released under this License, and replace the individual
|
354
|
+
copies of this License in the various documents with a single copy
|
355
|
+
that is included in the collection, provided that you follow the
|
356
|
+
rules of this License for verbatim copying of each of the documents
|
357
|
+
in all other respects.
|
358
|
+
|
359
|
+
You may extract a single document from such a collection, and
|
360
|
+
distribute it individually under this License, provided you insert
|
361
|
+
a copy of this License into the extracted document, and follow this
|
362
|
+
License in all other respects regarding verbatim copying of that
|
363
|
+
document.
|
364
|
+
|
365
|
+
7. AGGREGATION WITH INDEPENDENT WORKS
|
366
|
+
|
367
|
+
A compilation of the Document or its derivatives with other
|
368
|
+
separate and independent documents or works, in or on a volume of a
|
369
|
+
storage or distribution medium, is called an "aggregate" if the
|
370
|
+
copyright resulting from the compilation is not used to limit the
|
371
|
+
legal rights of the compilation's users beyond what the individual
|
372
|
+
works permit. When the Document is included in an aggregate, this
|
373
|
+
License does not apply to the other works in the aggregate which
|
374
|
+
are not themselves derivative works of the Document.
|
375
|
+
|
376
|
+
If the Cover Text requirement of section 3 is applicable to these
|
377
|
+
copies of the Document, then if the Document is less than one half
|
378
|
+
of the entire aggregate, the Document's Cover Texts may be placed
|
379
|
+
on covers that bracket the Document within the aggregate, or the
|
380
|
+
electronic equivalent of covers if the Document is in electronic
|
381
|
+
form. Otherwise they must appear on printed covers that bracket
|
382
|
+
the whole aggregate.
|
383
|
+
|
384
|
+
8. TRANSLATION
|
385
|
+
|
386
|
+
Translation is considered a kind of modification, so you may
|
387
|
+
distribute translations of the Document under the terms of section
|
388
|
+
4. Replacing Invariant Sections with translations requires special
|
389
|
+
permission from their copyright holders, but you may include
|
390
|
+
translations of some or all Invariant Sections in addition to the
|
391
|
+
original versions of these Invariant Sections. You may include a
|
392
|
+
translation of this License, and all the license notices in the
|
393
|
+
Document, and any Warranty Disclaimers, provided that you also
|
394
|
+
include the original English version of this License and the
|
395
|
+
original versions of those notices and disclaimers. In case of a
|
396
|
+
disagreement between the translation and the original version of
|
397
|
+
this License or a notice or disclaimer, the original version will
|
398
|
+
prevail.
|
399
|
+
|
400
|
+
If a section in the Document is Entitled "Acknowledgements",
|
401
|
+
"Dedications", or "History", the requirement (section 4) to
|
402
|
+
Preserve its Title (section 1) will typically require changing the
|
403
|
+
actual title.
|
404
|
+
|
405
|
+
9. TERMINATION
|
406
|
+
|
407
|
+
You may not copy, modify, sublicense, or distribute the Document
|
408
|
+
except as expressly provided under this License. Any attempt
|
409
|
+
otherwise to copy, modify, sublicense, or distribute it is void,
|
410
|
+
and will automatically terminate your rights under this License.
|
411
|
+
|
412
|
+
However, if you cease all violation of this License, then your
|
413
|
+
license from a particular copyright holder is reinstated (a)
|
414
|
+
provisionally, unless and until the copyright holder explicitly and
|
415
|
+
finally terminates your license, and (b) permanently, if the
|
416
|
+
copyright holder fails to notify you of the violation by some
|
417
|
+
reasonable means prior to 60 days after the cessation.
|
418
|
+
|
419
|
+
Moreover, your license from a particular copyright holder is
|
420
|
+
reinstated permanently if the copyright holder notifies you of the
|
421
|
+
violation by some reasonable means, this is the first time you have
|
422
|
+
received notice of violation of this License (for any work) from
|
423
|
+
that copyright holder, and you cure the violation prior to 30 days
|
424
|
+
after your receipt of the notice.
|
425
|
+
|
426
|
+
Termination of your rights under this section does not terminate
|
427
|
+
the licenses of parties who have received copies or rights from you
|
428
|
+
under this License. If your rights have been terminated and not
|
429
|
+
permanently reinstated, receipt of a copy of some or all of the
|
430
|
+
same material does not give you any rights to use it.
|
431
|
+
|
432
|
+
10. FUTURE REVISIONS OF THIS LICENSE
|
433
|
+
|
434
|
+
The Free Software Foundation may publish new, revised versions of
|
435
|
+
the GNU Free Documentation License from time to time. Such new
|
436
|
+
versions will be similar in spirit to the present version, but may
|
437
|
+
differ in detail to address new problems or concerns. See
|
438
|
+
<http://www.gnu.org/copyleft/>.
|
439
|
+
|
440
|
+
Each version of the License is given a distinguishing version
|
441
|
+
number. If the Document specifies that a particular numbered
|
442
|
+
version of this License "or any later version" applies to it, you
|
443
|
+
have the option of following the terms and conditions either of
|
444
|
+
that specified version or of any later version that has been
|
445
|
+
published (not as a draft) by the Free Software Foundation. If the
|
446
|
+
Document does not specify a version number of this License, you may
|
447
|
+
choose any version ever published (not as a draft) by the Free
|
448
|
+
Software Foundation. If the Document specifies that a proxy can
|
449
|
+
decide which future versions of this License can be used, that
|
450
|
+
proxy's public statement of acceptance of a version permanently
|
451
|
+
authorizes you to choose that version for the Document.
|
452
|
+
|
453
|
+
11. RELICENSING
|
454
|
+
|
455
|
+
"Massive Multiauthor Collaboration Site" (or "MMC Site") means any
|
456
|
+
World Wide Web server that publishes copyrightable works and also
|
457
|
+
provides prominent facilities for anybody to edit those works. A
|
458
|
+
public wiki that anybody can edit is an example of such a server.
|
459
|
+
A "Massive Multiauthor Collaboration" (or "MMC") contained in the
|
460
|
+
site means any set of copyrightable works thus published on the MMC
|
461
|
+
site.
|
462
|
+
|
463
|
+
"CC-BY-SA" means the Creative Commons Attribution-Share Alike 3.0
|
464
|
+
license published by Creative Commons Corporation, a not-for-profit
|
465
|
+
corporation with a principal place of business in San Francisco,
|
466
|
+
California, as well as future copyleft versions of that license
|
467
|
+
published by that same organization.
|
468
|
+
|
469
|
+
"Incorporate" means to publish or republish a Document, in whole or
|
470
|
+
in part, as part of another Document.
|
471
|
+
|
472
|
+
An MMC is "eligible for relicensing" if it is licensed under this
|
473
|
+
License, and if all works that were first published under this
|
474
|
+
License somewhere other than this MMC, and subsequently
|
475
|
+
incorporated in whole or in part into the MMC, (1) had no cover
|
476
|
+
texts or invariant sections, and (2) were thus incorporated prior
|
477
|
+
to November 1, 2008.
|
478
|
+
|
479
|
+
The operator of an MMC Site may republish an MMC contained in the
|
480
|
+
site under CC-BY-SA on the same site at any time before August 1,
|
481
|
+
2009, provided the MMC is eligible for relicensing.
|
482
|
+
|
483
|
+
ADDENDUM: How to use this License for your documents
|
484
|
+
====================================================
|
485
|
+
|
486
|
+
To use this License in a document you have written, include a copy of
|
487
|
+
the License in the document and put the following copyright and license
|
488
|
+
notices just after the title page:
|
489
|
+
|
490
|
+
Copyright (C) YEAR YOUR NAME.
|
491
|
+
Permission is granted to copy, distribute and/or modify this document
|
492
|
+
under the terms of the GNU Free Documentation License, Version 1.3
|
493
|
+
or any later version published by the Free Software Foundation;
|
494
|
+
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
|
495
|
+
Texts. A copy of the license is included in the section entitled ``GNU
|
496
|
+
Free Documentation License''.
|
497
|
+
|
498
|
+
If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,
|
499
|
+
replace the "with...Texts." line with this:
|
500
|
+
|
501
|
+
with the Invariant Sections being LIST THEIR TITLES, with
|
502
|
+
the Front-Cover Texts being LIST, and with the Back-Cover Texts
|
503
|
+
being LIST.
|
504
|
+
|
505
|
+
If you have Invariant Sections without Cover Texts, or some other
|
506
|
+
combination of the three, merge those two alternatives to suit the
|
507
|
+
situation.
|
508
|
+
|
509
|
+
If your document contains nontrivial examples of program code, we
|
510
|
+
recommend releasing these examples in parallel under your choice of free
|
511
|
+
software license, such as the GNU General Public License, to permit
|
512
|
+
their use in free software.
|
513
|
+
|
514
|
+
|
515
|
+
File: gnutls.info, Node: Bibliography, Next: Function and Data Index, Prev: Copying Information, Up: Top
|
516
|
+
|
517
|
+
Bibliography
|
518
|
+
************
|
519
|
+
|
520
|
+
[CBCATT]
|
521
|
+
Bodo Moeller, "Security of CBC Ciphersuites in SSL/TLS: Problems
|
522
|
+
and Countermeasures", 2002, available from
|
523
|
+
<http://www.openssl.org/~bodo/tls-cbc.txt>.
|
524
|
+
|
525
|
+
[GPGH]
|
526
|
+
Mike Ashley, "The GNU Privacy Handbook", 2002, available from
|
527
|
+
<http://www.gnupg.org/gph/en/manual.pdf>.
|
528
|
+
|
529
|
+
[GUTPKI]
|
530
|
+
Peter Gutmann, "Everything you never wanted to know about PKI but
|
531
|
+
were forced to find out", Available from
|
532
|
+
<http://www.cs.auckland.ac.nz/~pgut001/>.
|
533
|
+
|
534
|
+
[KEYPIN]
|
535
|
+
Chris Evans and Chris Palmer, "Public Key Pinning Extension for
|
536
|
+
HTTP", Available from
|
537
|
+
<http://tools.ietf.org/html/draft-ietf-websec-key-pinning-01>.
|
538
|
+
|
539
|
+
[NISTSP80057]
|
540
|
+
NIST Special Publication 800-57, "Recommendation for Key Management
|
541
|
+
- Part 1: General (Revised)", March 2007, available from
|
542
|
+
<http://csrc.nist.gov/publications/nistpubs/800-57/sp800-57-Part1-revised2_Mar08-2007.pdf>.
|
543
|
+
|
544
|
+
[RFC2246]
|
545
|
+
Tim Dierks and Christopher Allen, "The TLS Protocol Version 1.0",
|
546
|
+
January 1999, Available from <http://www.ietf.org/rfc/rfc2246.txt>.
|
547
|
+
|
548
|
+
[RFC4418]
|
549
|
+
Ted Krovetz, "UMAC: Message Authentication Code using Universal
|
550
|
+
Hashing", March 2006, Available from
|
551
|
+
<http://www.ietf.org/rfc/rfc4418.txt>.
|
552
|
+
|
553
|
+
[RFC4680]
|
554
|
+
S. Santesson, "TLS Handshake Message for Supplemental Data",
|
555
|
+
September 2006, Available from
|
556
|
+
<http://www.ietf.org/rfc/rfc4680.txt>.
|
557
|
+
|
558
|
+
[RFC4514]
|
559
|
+
Kurt D. Zeilenga, "Lightweight Directory Access Protocol (LDAP):
|
560
|
+
String Representation of Distinguished Names", June 2006, Available
|
561
|
+
from <http://www.ietf.org/rfc/rfc4513.txt>.
|
562
|
+
|
563
|
+
[RFC4346]
|
564
|
+
Tim Dierks and Eric Rescorla, "The TLS Protocol Version 1.1", Match
|
565
|
+
2006, Available from <http://www.ietf.org/rfc/rfc4346.txt>.
|
566
|
+
|
567
|
+
[RFC4347]
|
568
|
+
Eric Rescorla and Nagendra Modadugu, "Datagram Transport Layer
|
569
|
+
Security", April 2006, Available from
|
570
|
+
<http://www.ietf.org/rfc/rfc4347.txt>.
|
571
|
+
|
572
|
+
[RFC5246]
|
573
|
+
Tim Dierks and Eric Rescorla, "The TLS Protocol Version 1.2",
|
574
|
+
August 2008, Available from <http://www.ietf.org/rfc/rfc5246.txt>.
|
575
|
+
|
576
|
+
[RFC2440]
|
577
|
+
Jon Callas, Lutz Donnerhacke, Hal Finney and Rodney Thayer,
|
578
|
+
"OpenPGP Message Format", November 1998, Available from
|
579
|
+
<http://www.ietf.org/rfc/rfc2440.txt>.
|
580
|
+
|
581
|
+
[RFC4880]
|
582
|
+
Jon Callas, Lutz Donnerhacke, Hal Finney, David Shaw and Rodney
|
583
|
+
Thayer, "OpenPGP Message Format", November 2007, Available from
|
584
|
+
<http://www.ietf.org/rfc/rfc4880.txt>.
|
585
|
+
|
586
|
+
[RFC4211]
|
587
|
+
J. Schaad, "Internet X.509 Public Key Infrastructure Certificate
|
588
|
+
Request Message Format (CRMF)", September 2005, Available from
|
589
|
+
<http://www.ietf.org/rfc/rfc4211.txt>.
|
590
|
+
|
591
|
+
[RFC2817]
|
592
|
+
Rohit Khare and Scott Lawrence, "Upgrading to TLS Within HTTP/1.1",
|
593
|
+
May 2000, Available from <http://www.ietf.org/rfc/rfc2817.txt>
|
594
|
+
|
595
|
+
[RFC2818]
|
596
|
+
Eric Rescorla, "HTTP Over TLS", May 2000, Available from
|
597
|
+
<http://www.ietf/rfc/rfc2818.txt>.
|
598
|
+
|
599
|
+
[RFC2945]
|
600
|
+
Tom Wu, "The SRP Authentication and Key Exchange System", September
|
601
|
+
2000, Available from <http://www.ietf.org/rfc/rfc2945.txt>.
|
602
|
+
|
603
|
+
[RFC2986]
|
604
|
+
Magnus Nystrom and Burt Kaliski, "PKCS 10 v1.7: Certification
|
605
|
+
Request Syntax Specification", November 2000, Available from
|
606
|
+
<http://www.ietf.org/rfc/rfc2986.txt>.
|
607
|
+
|
608
|
+
[PKIX]
|
609
|
+
D. Cooper, S. Santesson, S. Farrel, S. Boeyen, R. Housley, W. Polk,
|
610
|
+
"Internet X.509 Public Key Infrastructure Certificate and
|
611
|
+
Certificate Revocation List (CRL) Profile", May 2008, available
|
612
|
+
from <http://www.ietf.org/rfc/rfc5280.txt>.
|
613
|
+
|
614
|
+
[RFC3749]
|
615
|
+
Scott Hollenbeck, "Transport Layer Security Protocol Compression
|
616
|
+
Methods", May 2004, available from
|
617
|
+
<http://www.ietf.org/rfc/rfc3749.txt>.
|
618
|
+
|
619
|
+
[RFC3820]
|
620
|
+
Steven Tuecke, Von Welch, Doug Engert, Laura Pearlman, and Mary
|
621
|
+
Thompson, "Internet X.509 Public Key Infrastructure (PKI) Proxy
|
622
|
+
Certificate Profile", June 2004, available from
|
623
|
+
<http://www.ietf.org/rfc/rfc3820>.
|
624
|
+
|
625
|
+
[RFC6520]
|
626
|
+
R. Seggelmann, M. Tuexen, and M. Williams, "Transport Layer
|
627
|
+
Security (TLS) and Datagram Transport Layer Security (DTLS)
|
628
|
+
Heartbeat Extension", February 2012, available from
|
629
|
+
<http://www.ietf.org/rfc/rfc6520>.
|
630
|
+
|
631
|
+
[RFC5746]
|
632
|
+
E. Rescorla, M. Ray, S. Dispensa, and N. Oskov, "Transport Layer
|
633
|
+
Security (TLS) Renegotiation Indication Extension", February 2010,
|
634
|
+
available from <http://www.ietf.org/rfc/rfc5746>.
|
635
|
+
|
636
|
+
[RFC5280]
|
637
|
+
D. Cooper, S. Santesson, S. Farrell, S. Boeyen, R. Housley, and W.
|
638
|
+
Polk, "Internet X.509 Public Key Infrastructure Certificate and
|
639
|
+
Certificate Revocation List (CRL) Profile", May 2008, available
|
640
|
+
from <http://www.ietf.org/rfc/rfc5280>.
|
641
|
+
|
642
|
+
[TLSTKT]
|
643
|
+
Joseph Salowey, Hao Zhou, Pasi Eronen, Hannes Tschofenig,
|
644
|
+
"Transport Layer Security (TLS) Session Resumption without
|
645
|
+
Server-Side State", January 2008, available from
|
646
|
+
<http://www.ietf.org/rfc/rfc5077>.
|
647
|
+
|
648
|
+
[PKCS12]
|
649
|
+
RSA Laboratories, "PKCS 12 v1.0: Personal Information Exchange
|
650
|
+
Syntax", June 1999, Available from <http://www.rsa.com>.
|
651
|
+
|
652
|
+
[PKCS11]
|
653
|
+
RSA Laboratories, "PKCS #11 Base Functionality v2.30: Cryptoki –
|
654
|
+
Draft 4", July 2009, Available from <http://www.rsa.com>.
|
655
|
+
|
656
|
+
[RESCORLA]
|
657
|
+
Eric Rescorla, "SSL and TLS: Designing and Building Secure
|
658
|
+
Systems", 2001
|
659
|
+
|
660
|
+
[SELKEY]
|
661
|
+
Arjen Lenstra and Eric Verheul, "Selecting Cryptographic Key
|
662
|
+
Sizes", 2003, available from
|
663
|
+
<http://www.win.tue.nl/~klenstra/key.pdf>.
|
664
|
+
|
665
|
+
[SSL3]
|
666
|
+
Alan Freier, Philip Karlton and Paul Kocher, "The Secure Sockets
|
667
|
+
Layer (SSL) Protocol Version 3.0", August 2011, Available from
|
668
|
+
<http://www.ietf.org/rfc/rfc6101.txt>.
|
669
|
+
|
670
|
+
[STEVENS]
|
671
|
+
Richard Stevens, "UNIX Network Programming, Volume 1", Prentice
|
672
|
+
Hall PTR, January 1998
|
673
|
+
|
674
|
+
[TLSEXT]
|
675
|
+
Simon Blake-Wilson, Magnus Nystrom, David Hopwood, Jan Mikkelsen
|
676
|
+
and Tim Wright, "Transport Layer Security (TLS) Extensions", June
|
677
|
+
2003, Available from <http://www.ietf.org/rfc/rfc3546.txt>.
|
678
|
+
|
679
|
+
[TLSPGP]
|
680
|
+
Nikos Mavrogiannopoulos, "Using OpenPGP keys for TLS
|
681
|
+
authentication", January 2011. Available from
|
682
|
+
<http://www.ietf.org/rfc/rfc6091.txt>.
|
683
|
+
|
684
|
+
[TLSSRP]
|
685
|
+
David Taylor, Trevor Perrin, Tom Wu and Nikos Mavrogiannopoulos,
|
686
|
+
"Using SRP for TLS Authentication", November 2007. Available from
|
687
|
+
<http://www.ietf.org/rfc/rfc5054.txt>.
|
688
|
+
|
689
|
+
[TLSPSK]
|
690
|
+
Pasi Eronen and Hannes Tschofenig, "Pre-shared key Ciphersuites for
|
691
|
+
TLS", December 2005, Available from
|
692
|
+
<http://www.ietf.org/rfc/rfc4279.txt>.
|
693
|
+
|
694
|
+
[TOMSRP]
|
695
|
+
Tom Wu, "The Stanford SRP Authentication Project", Available at
|
696
|
+
<http://srp.stanford.edu/>.
|
697
|
+
|
698
|
+
[WEGER]
|
699
|
+
Arjen Lenstra and Xiaoyun Wang and Benne de Weger, "Colliding X.509
|
700
|
+
Certificates", Cryptology ePrint Archive, Report 2005/067,
|
701
|
+
Available at <http://eprint.iacr.org/>.
|
702
|
+
|
703
|
+
[ECRYPT]
|
704
|
+
European Network of Excellence in Cryptology II, "ECRYPT II Yearly
|
705
|
+
Report on Algorithms and Keysizes (2009-2010)", Available at
|
706
|
+
<http://www.ecrypt.eu.org/documents/D.SPA.13.pdf>.
|
707
|
+
|
708
|
+
[RFC5056]
|
709
|
+
N. Williams, "On the Use of Channel Bindings to Secure Channels",
|
710
|
+
November 2007, available from <http://www.ietf.org/rfc/rfc5056>.
|
711
|
+
|
712
|
+
[RFC5929]
|
713
|
+
J. Altman, N. Williams, L. Zhu, "Channel Bindings for TLS", July
|
714
|
+
2010, available from <http://www.ietf.org/rfc/rfc5929>.
|
715
|
+
|
716
|
+
[PKCS11URI]
|
717
|
+
J. Pechanec, D. Moffat, "The PKCS#11 URI Scheme", January 2013,
|
718
|
+
Work in progress, available from
|
719
|
+
<http://tools.ietf.org/html/draft-pechanec-pkcs11uri-08>.
|
720
|
+
|
721
|
+
[TPMURI]
|
722
|
+
C. Latze, N. Mavrogiannopoulos, "The TPMKEY URI Scheme", January
|
723
|
+
2013, Work in progress, available from
|
724
|
+
<http://tools.ietf.org/html/draft-mavrogiannopoulos-tpmuri-01>.
|
725
|
+
|
726
|
+
[ANDERSON]
|
727
|
+
R. J. Anderson, "Security Engineering: A Guide to Building
|
728
|
+
Dependable Distributed Systems", John Wiley \& Sons, Inc., 2001.
|
729
|
+
|
730
|
+
[RFC4821]
|
731
|
+
M. Mathis, J. Heffner, "Packetization Layer Path MTU Discovery",
|
732
|
+
March 2007, available from <http://www.ietf.org/rfc/rfc4821.txt>.
|
733
|
+
|
734
|
+
[RFC2560]
|
735
|
+
M. Myers et al, "X.509 Internet Public Key Infrastructure Online
|
736
|
+
Certificate Status Protocol - OCSP", June 1999, Available from
|
737
|
+
<http://www.ietf.org/rfc/rfc2560.txt>.
|
738
|
+
|
739
|
+
[RIVESTCRL]
|
740
|
+
R. L. Rivest, "Can We Eliminate Certificate Revocation Lists?",
|
741
|
+
Proceedings of Financial Cryptography '98; Springer Lecture Notes
|
742
|
+
in Computer Science No. 1465 (Rafael Hirschfeld, ed.), February
|
743
|
+
1998), pages 178-183, available from
|
744
|
+
<http://people.csail.mit.edu/rivest/Rivest-CanWeEliminateCertificateRevocationLists.pdf>.
|
745
|
+
|
746
|
+
|
747
|
+
File: gnutls.info, Node: Function and Data Index, Next: Concept Index, Prev: Bibliography, Up: Top
|
748
|
+
|
749
|
+
Function and Data Index
|
750
|
+
***********************
|
751
|
+
|
752
|
+
[index]
|
753
|
+
* Menu:
|
754
|
+
|
755
|
+
* dane_cert_type_name: DANE API. (line 13)
|
756
|
+
* dane_cert_usage_name: DANE API. (line 24)
|
757
|
+
* dane_match_type_name: DANE API. (line 36)
|
758
|
+
* dane_query_data: DANE API. (line 47)
|
759
|
+
* dane_query_deinit: DANE API. (line 70)
|
760
|
+
* dane_query_entries: DANE API. (line 78)
|
761
|
+
* dane_query_status: DANE API. (line 88)
|
762
|
+
* dane_query_tlsa: DANE API. (line 99)
|
763
|
+
* dane_raw_tlsa: DANE API. (line 120)
|
764
|
+
* dane_state_deinit: DANE API. (line 149)
|
765
|
+
* dane_state_init: DANE API. (line 157)
|
766
|
+
* dane_state_set_dlv_file: DANE API. (line 170)
|
767
|
+
* dane_strerror: DANE API. (line 182)
|
768
|
+
* dane_verification_status_print: DANE API. (line 196)
|
769
|
+
* dane_verify_crt: Certificate verification.
|
770
|
+
(line 165)
|
771
|
+
* dane_verify_crt <1>: DANE API. (line 215)
|
772
|
+
* dane_verify_crt_raw: DANE API. (line 266)
|
773
|
+
* dane_verify_session_crt: DANE API. (line 312)
|
774
|
+
* gnutls_alert_get: Handling alerts. (line 18)
|
775
|
+
* gnutls_alert_get <1>: Core TLS API. (line 11)
|
776
|
+
* gnutls_alert_get_name: Handling alerts. (line 31)
|
777
|
+
* gnutls_alert_get_name <1>: Core TLS API. (line 27)
|
778
|
+
* gnutls_alert_get_strname: Core TLS API. (line 40)
|
779
|
+
* gnutls_alert_send: Handling alerts. (line 45)
|
780
|
+
* gnutls_alert_send <1>: Core TLS API. (line 54)
|
781
|
+
* gnutls_alert_send_appropriate: Core TLS API. (line 78)
|
782
|
+
* gnutls_alpn_get_selected_protocol: Core TLS API. (line 101)
|
783
|
+
* gnutls_alpn_set_protocols: Core TLS API. (line 119)
|
784
|
+
* gnutls_anon_allocate_client_credentials: Core TLS API. (line 145)
|
785
|
+
* gnutls_anon_allocate_server_credentials: Core TLS API. (line 157)
|
786
|
+
* gnutls_anon_free_client_credentials: Core TLS API. (line 169)
|
787
|
+
* gnutls_anon_free_server_credentials: Core TLS API. (line 179)
|
788
|
+
* gnutls_anon_set_params_function: Core TLS API. (line 189)
|
789
|
+
* gnutls_anon_set_server_dh_params: Core TLS API. (line 203)
|
790
|
+
* gnutls_anon_set_server_params_function: Core TLS API. (line 217)
|
791
|
+
* gnutls_auth_client_get_type: Core TLS API. (line 231)
|
792
|
+
* gnutls_auth_get_type: Core TLS API. (line 245)
|
793
|
+
* gnutls_auth_server_get_type: Core TLS API. (line 263)
|
794
|
+
* gnutls_bye: Data transfer and termination.
|
795
|
+
(line 153)
|
796
|
+
* gnutls_bye <1>: Core TLS API. (line 277)
|
797
|
+
* gnutls_certificate_activation_time_peers: Core TLS API. (line 313)
|
798
|
+
* gnutls_certificate_allocate_credentials: Core TLS API. (line 328)
|
799
|
+
* gnutls_certificate_client_get_request_status: Core TLS API.
|
800
|
+
(line 341)
|
801
|
+
* gnutls_certificate_client_set_retrieve_function: Compatibility API.
|
802
|
+
(line 13)
|
803
|
+
* gnutls_certificate_expiration_time_peers: Core TLS API. (line 354)
|
804
|
+
* gnutls_certificate_free_cas: Core TLS API. (line 385)
|
805
|
+
* gnutls_certificate_free_ca_names: Core TLS API. (line 368)
|
806
|
+
* gnutls_certificate_free_credentials: Core TLS API. (line 397)
|
807
|
+
* gnutls_certificate_free_crls: Core TLS API. (line 411)
|
808
|
+
* gnutls_certificate_free_keys: Core TLS API. (line 421)
|
809
|
+
* gnutls_certificate_get_crt_raw: Core TLS API. (line 433)
|
810
|
+
* gnutls_certificate_get_issuer: Core TLS API. (line 459)
|
811
|
+
* gnutls_certificate_get_ours: Core TLS API. (line 481)
|
812
|
+
* gnutls_certificate_get_peers: Core TLS API. (line 496)
|
813
|
+
* gnutls_certificate_get_peers_subkey_id: Core TLS API. (line 518)
|
814
|
+
* gnutls_certificate_send_x509_rdn_sequence: Certificate credentials.
|
815
|
+
(line 174)
|
816
|
+
* gnutls_certificate_send_x509_rdn_sequence <1>: Core TLS API.
|
817
|
+
(line 535)
|
818
|
+
* gnutls_certificate_server_set_request: Certificate credentials.
|
819
|
+
(line 162)
|
820
|
+
* gnutls_certificate_server_set_request <1>: Core TLS API. (line 553)
|
821
|
+
* gnutls_certificate_server_set_retrieve_function: Compatibility API.
|
822
|
+
(line 54)
|
823
|
+
* gnutls_certificate_set_dh_params: Core TLS API. (line 568)
|
824
|
+
* gnutls_certificate_set_key: Certificate credentials.
|
825
|
+
(line 67)
|
826
|
+
* gnutls_certificate_set_key <1>: Abstract key API. (line 12)
|
827
|
+
* gnutls_certificate_set_ocsp_status_request_file: Core TLS API.
|
828
|
+
(line 585)
|
829
|
+
* gnutls_certificate_set_ocsp_status_request_function: Core TLS API.
|
830
|
+
(line 609)
|
831
|
+
* gnutls_certificate_set_openpgp_key: OpenPGP API. (line 12)
|
832
|
+
* gnutls_certificate_set_openpgp_keyring_file: OpenPGP certificates.
|
833
|
+
(line 159)
|
834
|
+
* gnutls_certificate_set_openpgp_keyring_file <1>: OpenPGP API.
|
835
|
+
(line 140)
|
836
|
+
* gnutls_certificate_set_openpgp_keyring_mem: OpenPGP API. (line 160)
|
837
|
+
* gnutls_certificate_set_openpgp_key_file: OpenPGP API. (line 37)
|
838
|
+
* gnutls_certificate_set_openpgp_key_file2: OpenPGP API. (line 58)
|
839
|
+
* gnutls_certificate_set_openpgp_key_mem: OpenPGP API. (line 88)
|
840
|
+
* gnutls_certificate_set_openpgp_key_mem2: OpenPGP API. (line 110)
|
841
|
+
* gnutls_certificate_set_params_function: Parameter generation.
|
842
|
+
(line 39)
|
843
|
+
* gnutls_certificate_set_params_function <1>: Core TLS API. (line 643)
|
844
|
+
* gnutls_certificate_set_pin_function: Certificate credentials.
|
845
|
+
(line 43)
|
846
|
+
* gnutls_certificate_set_pin_function <1>: Core TLS API. (line 658)
|
847
|
+
* gnutls_certificate_set_retrieve_function: Core TLS API. (line 679)
|
848
|
+
* gnutls_certificate_set_retrieve_function2: Abstract key API.
|
849
|
+
(line 49)
|
850
|
+
* gnutls_certificate_set_rsa_export_params: Compatibility API.
|
851
|
+
(line 82)
|
852
|
+
* gnutls_certificate_set_trust_list: X509 certificate API.
|
853
|
+
(line 12)
|
854
|
+
* gnutls_certificate_set_verify_flags: Core TLS API. (line 724)
|
855
|
+
* gnutls_certificate_set_verify_function: Certificate credentials.
|
856
|
+
(line 246)
|
857
|
+
* gnutls_certificate_set_verify_function <1>: Core TLS API. (line 737)
|
858
|
+
* gnutls_certificate_set_verify_limits: Core TLS API. (line 766)
|
859
|
+
* gnutls_certificate_set_x509_crl: Core TLS API. (line 785)
|
860
|
+
* gnutls_certificate_set_x509_crl_file: Core TLS API. (line 809)
|
861
|
+
* gnutls_certificate_set_x509_crl_mem: Core TLS API. (line 831)
|
862
|
+
* gnutls_certificate_set_x509_key: Core TLS API. (line 853)
|
863
|
+
* gnutls_certificate_set_x509_key_file: Core TLS API. (line 883)
|
864
|
+
* gnutls_certificate_set_x509_key_file2: Core TLS API. (line 922)
|
865
|
+
* gnutls_certificate_set_x509_key_mem: Core TLS API. (line 966)
|
866
|
+
* gnutls_certificate_set_x509_key_mem2: Core TLS API. (line 1000)
|
867
|
+
* gnutls_certificate_set_x509_simple_pkcs12_file: Core TLS API.
|
868
|
+
(line 1039)
|
869
|
+
* gnutls_certificate_set_x509_simple_pkcs12_mem: Core TLS API.
|
870
|
+
(line 1080)
|
871
|
+
* gnutls_certificate_set_x509_system_trust: Using a PKCS11 token with TLS.
|
872
|
+
(line 14)
|
873
|
+
* gnutls_certificate_set_x509_system_trust <1>: Core TLS API.
|
874
|
+
(line 1123)
|
875
|
+
* gnutls_certificate_set_x509_trust: Core TLS API. (line 1141)
|
876
|
+
* gnutls_certificate_set_x509_trust_file: Core TLS API. (line 1168)
|
877
|
+
* gnutls_certificate_set_x509_trust_mem: Core TLS API. (line 1199)
|
878
|
+
* gnutls_certificate_type_get: Core TLS API. (line 1224)
|
879
|
+
* gnutls_certificate_type_get_id: Core TLS API. (line 1237)
|
880
|
+
* gnutls_certificate_type_get_name: Core TLS API. (line 1249)
|
881
|
+
* gnutls_certificate_type_list: Core TLS API. (line 1261)
|
882
|
+
* gnutls_certificate_type_set_priority: Compatibility API. (line 96)
|
883
|
+
* gnutls_certificate_verification_status_print: Core TLS API.
|
884
|
+
(line 1272)
|
885
|
+
* gnutls_certificate_verify_flags: Verifying a certificate in the context of TLS session.
|
886
|
+
(line 6)
|
887
|
+
* gnutls_certificate_verify_flags <1>: Certificate verification.
|
888
|
+
(line 6)
|
889
|
+
* gnutls_certificate_verify_peers2: Core TLS API. (line 1297)
|
890
|
+
* gnutls_certificate_verify_peers3: Certificate credentials.
|
891
|
+
(line 214)
|
892
|
+
* gnutls_certificate_verify_peers3 <1>: Core TLS API. (line 1328)
|
893
|
+
* gnutls_check_version: Core TLS API. (line 1363)
|
894
|
+
* gnutls_cipher_add_auth: Cryptographic API. (line 12)
|
895
|
+
* gnutls_cipher_decrypt: Cryptographic API. (line 31)
|
896
|
+
* gnutls_cipher_decrypt2: Cryptographic API. (line 53)
|
897
|
+
* gnutls_cipher_deinit: Cryptographic API. (line 80)
|
898
|
+
* gnutls_cipher_encrypt: Cryptographic API. (line 91)
|
899
|
+
* gnutls_cipher_encrypt2: Cryptographic API. (line 109)
|
900
|
+
* gnutls_cipher_get: Core TLS API. (line 1380)
|
901
|
+
* gnutls_cipher_get_block_size: Cryptographic API. (line 132)
|
902
|
+
* gnutls_cipher_get_id: Core TLS API. (line 1392)
|
903
|
+
* gnutls_cipher_get_iv_size: Cryptographic API. (line 143)
|
904
|
+
* gnutls_cipher_get_key_size: Core TLS API. (line 1404)
|
905
|
+
* gnutls_cipher_get_name: Core TLS API. (line 1416)
|
906
|
+
* gnutls_cipher_get_tag_size: Cryptographic API. (line 156)
|
907
|
+
* gnutls_cipher_init: Cryptographic API. (line 167)
|
908
|
+
* gnutls_cipher_list: Core TLS API. (line 1428)
|
909
|
+
* gnutls_cipher_set_iv: Cryptographic API. (line 190)
|
910
|
+
* gnutls_cipher_set_priority: Compatibility API. (line 114)
|
911
|
+
* gnutls_cipher_suite_get_name: Core TLS API. (line 1444)
|
912
|
+
* gnutls_cipher_suite_info: Core TLS API. (line 1462)
|
913
|
+
* gnutls_cipher_tag: Cryptographic API. (line 206)
|
914
|
+
* gnutls_compression_get: Core TLS API. (line 1492)
|
915
|
+
* gnutls_compression_get_id: Core TLS API. (line 1504)
|
916
|
+
* gnutls_compression_get_name: Core TLS API. (line 1516)
|
917
|
+
* gnutls_compression_list: Core TLS API. (line 1528)
|
918
|
+
* gnutls_compression_set_priority: Compatibility API. (line 132)
|
919
|
+
* gnutls_credentials_clear: Core TLS API. (line 1539)
|
920
|
+
* gnutls_credentials_set: Session initialization.
|
921
|
+
(line 50)
|
922
|
+
* gnutls_credentials_set <1>: Core TLS API. (line 1547)
|
923
|
+
* gnutls_db_check_entry: Core TLS API. (line 1582)
|
924
|
+
* gnutls_db_check_entry_time: Core TLS API. (line 1596)
|
925
|
+
* gnutls_db_get_default_cache_expiration: Core TLS API. (line 1607)
|
926
|
+
* gnutls_db_get_ptr: Core TLS API. (line 1617)
|
927
|
+
* gnutls_db_remove_session: Core TLS API. (line 1628)
|
928
|
+
* gnutls_db_set_cache_expiration: Core TLS API. (line 1642)
|
929
|
+
* gnutls_db_set_ptr: Core TLS API. (line 1654)
|
930
|
+
* gnutls_db_set_remove_function: Core TLS API. (line 1666)
|
931
|
+
* gnutls_db_set_retrieve_function: Core TLS API. (line 1681)
|
932
|
+
* gnutls_db_set_store_function: Core TLS API. (line 1701)
|
933
|
+
* gnutls_deinit: Data transfer and termination.
|
934
|
+
(line 186)
|
935
|
+
* gnutls_deinit <1>: Core TLS API. (line 1716)
|
936
|
+
* gnutls_dh_get_group: Core TLS API. (line 1726)
|
937
|
+
* gnutls_dh_get_peers_public_bits: Core TLS API. (line 1746)
|
938
|
+
* gnutls_dh_get_prime_bits: Core TLS API. (line 1760)
|
939
|
+
* gnutls_dh_get_pubkey: Core TLS API. (line 1776)
|
940
|
+
* gnutls_dh_get_secret_bits: Core TLS API. (line 1793)
|
941
|
+
* gnutls_dh_params_cpy: Core TLS API. (line 1806)
|
942
|
+
* gnutls_dh_params_deinit: Core TLS API. (line 1821)
|
943
|
+
* gnutls_dh_params_export2_pkcs3: Core TLS API. (line 1830)
|
944
|
+
* gnutls_dh_params_export_pkcs3: Core TLS API. (line 1854)
|
945
|
+
* gnutls_dh_params_export_raw: Core TLS API. (line 1881)
|
946
|
+
* gnutls_dh_params_generate2: Core TLS API. (line 1903)
|
947
|
+
* gnutls_dh_params_import_pkcs3: Core TLS API. (line 1926)
|
948
|
+
* gnutls_dh_params_import_raw: Core TLS API. (line 1948)
|
949
|
+
* gnutls_dh_params_init: Core TLS API. (line 1967)
|
950
|
+
* gnutls_dh_set_prime_bits: Core TLS API. (line 1978)
|
951
|
+
* gnutls_digest_get_id: Core TLS API. (line 2006)
|
952
|
+
* gnutls_digest_get_name: Core TLS API. (line 2019)
|
953
|
+
* gnutls_digest_list: Core TLS API. (line 2031)
|
954
|
+
* gnutls_dtls_cookie_send: Datagram TLS API. (line 11)
|
955
|
+
* gnutls_dtls_cookie_verify: Datagram TLS API. (line 45)
|
956
|
+
* gnutls_dtls_get_data_mtu: Datagram TLS API. (line 74)
|
957
|
+
* gnutls_dtls_get_mtu: Datagram TLS API. (line 89)
|
958
|
+
* gnutls_dtls_get_timeout: Setting up the transport layer.
|
959
|
+
(line 160)
|
960
|
+
* gnutls_dtls_get_timeout <1>: Datagram TLS API. (line 104)
|
961
|
+
* gnutls_dtls_prestate_set: Datagram TLS API. (line 121)
|
962
|
+
* gnutls_dtls_set_data_mtu: Datagram TLS API. (line 139)
|
963
|
+
* gnutls_dtls_set_mtu: Datagram TLS API. (line 165)
|
964
|
+
* gnutls_dtls_set_timeouts: Datagram TLS API. (line 182)
|
965
|
+
* gnutls_ecc_curve_get: Core TLS API. (line 2045)
|
966
|
+
* gnutls_ecc_curve_get_name: Core TLS API. (line 2059)
|
967
|
+
* gnutls_ecc_curve_get_size: Core TLS API. (line 2073)
|
968
|
+
* gnutls_ecc_curve_list: Core TLS API. (line 2085)
|
969
|
+
* gnutls_error_is_fatal: Data transfer and termination.
|
970
|
+
(line 78)
|
971
|
+
* gnutls_error_is_fatal <1>: Core TLS API. (line 2097)
|
972
|
+
* gnutls_error_to_alert: Handling alerts. (line 66)
|
973
|
+
* gnutls_error_to_alert <1>: Core TLS API. (line 2118)
|
974
|
+
* gnutls_est_record_overhead_size: Core TLS API. (line 2137)
|
975
|
+
* gnutls_fingerprint: Core TLS API. (line 2164)
|
976
|
+
* gnutls_global_deinit: Core TLS API. (line 2191)
|
977
|
+
* gnutls_global_init: Core TLS API. (line 2202)
|
978
|
+
* gnutls_global_set_audit_log_function: Debugging and auditing.
|
979
|
+
(line 27)
|
980
|
+
* gnutls_global_set_audit_log_function <1>: Core TLS API. (line 2230)
|
981
|
+
* gnutls_global_set_log_function: Core TLS API. (line 2249)
|
982
|
+
* gnutls_global_set_log_level: Core TLS API. (line 2264)
|
983
|
+
* gnutls_global_set_mem_functions: Core TLS API. (line 2277)
|
984
|
+
* gnutls_global_set_mutex: Thread safety. (line 41)
|
985
|
+
* gnutls_global_set_mutex <1>: Core TLS API. (line 2309)
|
986
|
+
* gnutls_global_set_time_function: Core TLS API. (line 2334)
|
987
|
+
* gnutls_handshake: TLS handshake. (line 10)
|
988
|
+
* gnutls_handshake <1>: Core TLS API. (line 2348)
|
989
|
+
* gnutls_handshake_description_get_name: Core TLS API. (line 2379)
|
990
|
+
* gnutls_handshake_get_last_in: Core TLS API. (line 2391)
|
991
|
+
* gnutls_handshake_get_last_out: Core TLS API. (line 2408)
|
992
|
+
* gnutls_handshake_set_hook_function: Core TLS API. (line 2425)
|
993
|
+
* gnutls_handshake_set_max_packet_length: Core TLS API. (line 2461)
|
994
|
+
* gnutls_handshake_set_post_client_hello_function: Core TLS API.
|
995
|
+
(line 2479)
|
996
|
+
* gnutls_handshake_set_private_extensions: Core TLS API. (line 2505)
|
997
|
+
* gnutls_handshake_set_random: Core TLS API. (line 2524)
|
998
|
+
* gnutls_handshake_set_timeout: TLS handshake. (line 38)
|
999
|
+
* gnutls_handshake_set_timeout <1>: Core TLS API. (line 2546)
|
1000
|
+
* gnutls_hash: Cryptographic API. (line 224)
|
1001
|
+
* gnutls_hash_deinit: Cryptographic API. (line 242)
|
1002
|
+
* gnutls_hash_fast: Cryptographic API. (line 256)
|
1003
|
+
* gnutls_hash_get_len: Cryptographic API. (line 276)
|
1004
|
+
* gnutls_hash_init: Cryptographic API. (line 290)
|
1005
|
+
* gnutls_hash_output: Cryptographic API. (line 308)
|
1006
|
+
* gnutls_heartbeat_allowed: Core TLS API. (line 2562)
|
1007
|
+
* gnutls_heartbeat_enable: Core TLS API. (line 2579)
|
1008
|
+
* gnutls_heartbeat_get_timeout: Core TLS API. (line 2599)
|
1009
|
+
* gnutls_heartbeat_ping: Core TLS API. (line 2615)
|
1010
|
+
* gnutls_heartbeat_pong: Core TLS API. (line 2643)
|
1011
|
+
* gnutls_heartbeat_set_timeouts: Core TLS API. (line 2659)
|
1012
|
+
* gnutls_hex2bin: Core TLS API. (line 2684)
|
1013
|
+
* gnutls_hex_decode: Core TLS API. (line 2705)
|
1014
|
+
* gnutls_hex_encode: Core TLS API. (line 2724)
|
1015
|
+
* gnutls_hmac: Cryptographic API. (line 322)
|
1016
|
+
* gnutls_hmac_deinit: Cryptographic API. (line 340)
|
1017
|
+
* gnutls_hmac_fast: Cryptographic API. (line 354)
|
1018
|
+
* gnutls_hmac_get_len: Cryptographic API. (line 379)
|
1019
|
+
* gnutls_hmac_init: Cryptographic API. (line 392)
|
1020
|
+
* gnutls_hmac_output: Cryptographic API. (line 418)
|
1021
|
+
* gnutls_hmac_set_nonce: Cryptographic API. (line 432)
|
1022
|
+
* gnutls_init: Session initialization.
|
1023
|
+
(line 14)
|
1024
|
+
* gnutls_init <1>: Core TLS API. (line 2743)
|
1025
|
+
* gnutls_key_generate: Core TLS API. (line 2774)
|
1026
|
+
* gnutls_kx_get: Core TLS API. (line 2791)
|
1027
|
+
* gnutls_kx_get_id: Core TLS API. (line 2803)
|
1028
|
+
* gnutls_kx_get_name: Core TLS API. (line 2815)
|
1029
|
+
* gnutls_kx_list: Core TLS API. (line 2827)
|
1030
|
+
* gnutls_kx_set_priority: Compatibility API. (line 155)
|
1031
|
+
* gnutls_load_file: Core TLS API. (line 2839)
|
1032
|
+
* gnutls_mac_get: Core TLS API. (line 2857)
|
1033
|
+
* gnutls_mac_get_id: Core TLS API. (line 2869)
|
1034
|
+
* gnutls_mac_get_key_size: Core TLS API. (line 2882)
|
1035
|
+
* gnutls_mac_get_name: Core TLS API. (line 2894)
|
1036
|
+
* gnutls_mac_get_nonce_size: Cryptographic API. (line 447)
|
1037
|
+
* gnutls_mac_list: Core TLS API. (line 2906)
|
1038
|
+
* gnutls_mac_set_priority: Compatibility API. (line 173)
|
1039
|
+
* gnutls_ocsp_req_add_cert: OCSP API. (line 12)
|
1040
|
+
* gnutls_ocsp_req_add_cert_id: OCSP API. (line 36)
|
1041
|
+
* gnutls_ocsp_req_deinit: OCSP API. (line 69)
|
1042
|
+
* gnutls_ocsp_req_export: OCSP API. (line 77)
|
1043
|
+
* gnutls_ocsp_req_get_cert_id: OCSP API. (line 91)
|
1044
|
+
* gnutls_ocsp_req_get_extension: OCSP API. (line 131)
|
1045
|
+
* gnutls_ocsp_req_get_nonce: OCSP API. (line 165)
|
1046
|
+
* gnutls_ocsp_req_get_version: OCSP API. (line 184)
|
1047
|
+
* gnutls_ocsp_req_import: OCSP API. (line 196)
|
1048
|
+
* gnutls_ocsp_req_init: OCSP API. (line 212)
|
1049
|
+
* gnutls_ocsp_req_print: OCSP API. (line 223)
|
1050
|
+
* gnutls_ocsp_req_randomize_nonce: OCSP API. (line 246)
|
1051
|
+
* gnutls_ocsp_req_set_extension: OCSP API. (line 259)
|
1052
|
+
* gnutls_ocsp_req_set_nonce: OCSP API. (line 280)
|
1053
|
+
* gnutls_ocsp_resp_check_crt: OCSP API. (line 298)
|
1054
|
+
* gnutls_ocsp_resp_deinit: OCSP API. (line 318)
|
1055
|
+
* gnutls_ocsp_resp_export: OCSP API. (line 326)
|
1056
|
+
* gnutls_ocsp_resp_get_certs: OCSP API. (line 340)
|
1057
|
+
* gnutls_ocsp_resp_get_extension: OCSP API. (line 367)
|
1058
|
+
* gnutls_ocsp_resp_get_nonce: OCSP API. (line 401)
|
1059
|
+
* gnutls_ocsp_resp_get_produced: OCSP API. (line 421)
|
1060
|
+
* gnutls_ocsp_resp_get_responder: OCSP API. (line 433)
|
1061
|
+
* gnutls_ocsp_resp_get_response: OCSP API. (line 453)
|
1062
|
+
* gnutls_ocsp_resp_get_signature: OCSP API. (line 480)
|
1063
|
+
* gnutls_ocsp_resp_get_signature_algorithm: OCSP API. (line 494)
|
1064
|
+
* gnutls_ocsp_resp_get_single: OCSP certificate status checking.
|
1065
|
+
(line 155)
|
1066
|
+
* gnutls_ocsp_resp_get_single <1>: OCSP API. (line 508)
|
1067
|
+
* gnutls_ocsp_resp_get_status: OCSP API. (line 559)
|
1068
|
+
* gnutls_ocsp_resp_get_version: OCSP API. (line 571)
|
1069
|
+
* gnutls_ocsp_resp_import: OCSP API. (line 583)
|
1070
|
+
* gnutls_ocsp_resp_init: OCSP API. (line 599)
|
1071
|
+
* gnutls_ocsp_resp_print: OCSP API. (line 610)
|
1072
|
+
* gnutls_ocsp_resp_verify: OCSP API. (line 633)
|
1073
|
+
* gnutls_ocsp_resp_verify_direct: OCSP API. (line 671)
|
1074
|
+
* gnutls_ocsp_status_request_enable_client: Core TLS API. (line 2918)
|
1075
|
+
* gnutls_ocsp_status_request_get: Core TLS API. (line 2943)
|
1076
|
+
* gnutls_ocsp_status_request_is_checked: Core TLS API. (line 2962)
|
1077
|
+
* gnutls_openpgp_crt_check_hostname: OpenPGP API. (line 182)
|
1078
|
+
* gnutls_openpgp_crt_deinit: OpenPGP API. (line 197)
|
1079
|
+
* gnutls_openpgp_crt_export: OpenPGP API. (line 205)
|
1080
|
+
* gnutls_openpgp_crt_export2: OpenPGP API. (line 226)
|
1081
|
+
* gnutls_openpgp_crt_get_auth_subkey: OpenPGP API. (line 244)
|
1082
|
+
* gnutls_openpgp_crt_get_creation_time: OpenPGP API. (line 263)
|
1083
|
+
* gnutls_openpgp_crt_get_expiration_time: OpenPGP API. (line 274)
|
1084
|
+
* gnutls_openpgp_crt_get_fingerprint: OpenPGP API. (line 286)
|
1085
|
+
* gnutls_openpgp_crt_get_key_id: OpenPGP API. (line 303)
|
1086
|
+
* gnutls_openpgp_crt_get_key_usage: OpenPGP API. (line 318)
|
1087
|
+
* gnutls_openpgp_crt_get_name: OpenPGP API. (line 333)
|
1088
|
+
* gnutls_openpgp_crt_get_pk_algorithm: OpenPGP API. (line 354)
|
1089
|
+
* gnutls_openpgp_crt_get_pk_dsa_raw: OpenPGP API. (line 374)
|
1090
|
+
* gnutls_openpgp_crt_get_pk_rsa_raw: OpenPGP API. (line 399)
|
1091
|
+
* gnutls_openpgp_crt_get_preferred_key_id: OpenPGP API. (line 420)
|
1092
|
+
* gnutls_openpgp_crt_get_revoked_status: OpenPGP API. (line 434)
|
1093
|
+
* gnutls_openpgp_crt_get_subkey_count: OpenPGP API. (line 448)
|
1094
|
+
* gnutls_openpgp_crt_get_subkey_creation_time: OpenPGP API. (line 463)
|
1095
|
+
* gnutls_openpgp_crt_get_subkey_expiration_time: OpenPGP API.
|
1096
|
+
(line 478)
|
1097
|
+
* gnutls_openpgp_crt_get_subkey_fingerprint: OpenPGP API. (line 494)
|
1098
|
+
* gnutls_openpgp_crt_get_subkey_id: OpenPGP API. (line 516)
|
1099
|
+
* gnutls_openpgp_crt_get_subkey_idx: OpenPGP API. (line 531)
|
1100
|
+
* gnutls_openpgp_crt_get_subkey_pk_algorithm: OpenPGP API. (line 546)
|
1101
|
+
* gnutls_openpgp_crt_get_subkey_pk_dsa_raw: OpenPGP API. (line 572)
|
1102
|
+
* gnutls_openpgp_crt_get_subkey_pk_rsa_raw: OpenPGP API. (line 599)
|
1103
|
+
* gnutls_openpgp_crt_get_subkey_revoked_status: OpenPGP API. (line 622)
|
1104
|
+
* gnutls_openpgp_crt_get_subkey_usage: OpenPGP API. (line 639)
|
1105
|
+
* gnutls_openpgp_crt_get_version: OpenPGP API. (line 661)
|
1106
|
+
* gnutls_openpgp_crt_import: OpenPGP API. (line 673)
|
1107
|
+
* gnutls_openpgp_crt_init: OpenPGP API. (line 690)
|
1108
|
+
* gnutls_openpgp_crt_print: OpenPGP API. (line 700)
|
1109
|
+
* gnutls_openpgp_crt_set_preferred_key_id: OpenPGP API. (line 721)
|
1110
|
+
* gnutls_openpgp_crt_verify_ring: OpenPGP certificates.
|
1111
|
+
(line 113)
|
1112
|
+
* gnutls_openpgp_crt_verify_ring <1>: OpenPGP API. (line 739)
|
1113
|
+
* gnutls_openpgp_crt_verify_self: OpenPGP certificates.
|
1114
|
+
(line 137)
|
1115
|
+
* gnutls_openpgp_crt_verify_self <1>: OpenPGP API. (line 766)
|
1116
|
+
* gnutls_openpgp_keyring_check_id: OpenPGP API. (line 783)
|
1117
|
+
* gnutls_openpgp_keyring_deinit: OpenPGP API. (line 800)
|
1118
|
+
* gnutls_openpgp_keyring_get_crt: OpenPGP API. (line 809)
|
1119
|
+
* gnutls_openpgp_keyring_get_crt_count: OpenPGP API. (line 828)
|
1120
|
+
* gnutls_openpgp_keyring_import: OpenPGP API. (line 841)
|
1121
|
+
* gnutls_openpgp_keyring_init: OpenPGP API. (line 859)
|
1122
|
+
* gnutls_openpgp_privkey_deinit: OpenPGP API. (line 870)
|
1123
|
+
* gnutls_openpgp_privkey_export: OpenPGP API. (line 879)
|
1124
|
+
* gnutls_openpgp_privkey_export2: OpenPGP API. (line 908)
|
1125
|
+
* gnutls_openpgp_privkey_export_dsa_raw: OpenPGP API. (line 933)
|
1126
|
+
* gnutls_openpgp_privkey_export_rsa_raw: OpenPGP API. (line 961)
|
1127
|
+
* gnutls_openpgp_privkey_export_subkey_dsa_raw: OpenPGP API. (line 991)
|
1128
|
+
* gnutls_openpgp_privkey_export_subkey_rsa_raw: OpenPGP API. (line 1021)
|
1129
|
+
* gnutls_openpgp_privkey_get_fingerprint: OpenPGP API. (line 1053)
|
1130
|
+
* gnutls_openpgp_privkey_get_key_id: OpenPGP API. (line 1072)
|
1131
|
+
* gnutls_openpgp_privkey_get_pk_algorithm: OpenPGP API. (line 1087)
|
1132
|
+
* gnutls_openpgp_privkey_get_preferred_key_id: OpenPGP API. (line 1110)
|
1133
|
+
* gnutls_openpgp_privkey_get_revoked_status: OpenPGP API. (line 1124)
|
1134
|
+
* gnutls_openpgp_privkey_get_subkey_count: OpenPGP API. (line 1138)
|
1135
|
+
* gnutls_openpgp_privkey_get_subkey_creation_time: OpenPGP API.
|
1136
|
+
(line 1153)
|
1137
|
+
* gnutls_openpgp_privkey_get_subkey_expiration_time: OpenPGP API.
|
1138
|
+
(line 1168)
|
1139
|
+
* gnutls_openpgp_privkey_get_subkey_fingerprint: OpenPGP API.
|
1140
|
+
(line 1184)
|
1141
|
+
* gnutls_openpgp_privkey_get_subkey_id: OpenPGP API. (line 1206)
|
1142
|
+
* gnutls_openpgp_privkey_get_subkey_idx: OpenPGP API. (line 1224)
|
1143
|
+
* gnutls_openpgp_privkey_get_subkey_pk_algorithm: OpenPGP API.
|
1144
|
+
(line 1240)
|
1145
|
+
* gnutls_openpgp_privkey_get_subkey_revoked_status: OpenPGP API.
|
1146
|
+
(line 1266)
|
1147
|
+
* gnutls_openpgp_privkey_import: OpenPGP API. (line 1282)
|
1148
|
+
* gnutls_openpgp_privkey_init: OpenPGP API. (line 1305)
|
1149
|
+
* gnutls_openpgp_privkey_sec_param: OpenPGP API. (line 1316)
|
1150
|
+
* gnutls_openpgp_privkey_set_preferred_key_id: OpenPGP API. (line 1331)
|
1151
|
+
* gnutls_openpgp_privkey_sign_hash: Compatibility API. (line 191)
|
1152
|
+
* gnutls_openpgp_send_cert: Core TLS API. (line 2980)
|
1153
|
+
* gnutls_openpgp_set_recv_key_function: OpenPGP API. (line 1350)
|
1154
|
+
* gnutls_pcert_deinit: Abstract key API. (line 98)
|
1155
|
+
* gnutls_pcert_import_openpgp: Abstract key API. (line 108)
|
1156
|
+
* gnutls_pcert_import_openpgp_raw: Abstract key API. (line 128)
|
1157
|
+
* gnutls_pcert_import_x509: Abstract key API. (line 153)
|
1158
|
+
* gnutls_pcert_import_x509_raw: Abstract key API. (line 173)
|
1159
|
+
* gnutls_pcert_list_import_x509_raw: Abstract key API. (line 196)
|
1160
|
+
* gnutls_pem_base64_decode: Core TLS API. (line 2995)
|
1161
|
+
* gnutls_pem_base64_decode_alloc: Core TLS API. (line 3019)
|
1162
|
+
* gnutls_pem_base64_encode: Core TLS API. (line 3041)
|
1163
|
+
* gnutls_pem_base64_encode_alloc: Core TLS API. (line 3064)
|
1164
|
+
* gnutls_perror: Core TLS API. (line 3085)
|
1165
|
+
* gnutls_pkcs11_add_provider: PKCS 11 API. (line 12)
|
1166
|
+
* gnutls_pkcs11_copy_secret_key: PKCS 11 API. (line 30)
|
1167
|
+
* gnutls_pkcs11_copy_x509_crt: Writing objects. (line 36)
|
1168
|
+
* gnutls_pkcs11_copy_x509_crt <1>: PKCS 11 API. (line 55)
|
1169
|
+
* gnutls_pkcs11_copy_x509_privkey: Writing objects. (line 13)
|
1170
|
+
* gnutls_pkcs11_copy_x509_privkey <1>: PKCS 11 API. (line 77)
|
1171
|
+
* gnutls_pkcs11_deinit: PKCS 11 API. (line 103)
|
1172
|
+
* gnutls_pkcs11_delete_url: Writing objects. (line 55)
|
1173
|
+
* gnutls_pkcs11_delete_url <1>: PKCS 11 API. (line 112)
|
1174
|
+
* gnutls_pkcs11_get_pin_function: PKCS 11 API. (line 129)
|
1175
|
+
* gnutls_pkcs11_get_raw_issuer: PKCS 11 API. (line 143)
|
1176
|
+
* gnutls_pkcs11_init: PKCS11 Initialization.
|
1177
|
+
(line 30)
|
1178
|
+
* gnutls_pkcs11_init <1>: PKCS 11 API. (line 169)
|
1179
|
+
* gnutls_pkcs11_obj_deinit: PKCS 11 API. (line 195)
|
1180
|
+
* gnutls_pkcs11_obj_export: PKCS 11 API. (line 205)
|
1181
|
+
* gnutls_pkcs11_obj_export2: PKCS 11 API. (line 230)
|
1182
|
+
* gnutls_pkcs11_obj_export3: PKCS 11 API. (line 250)
|
1183
|
+
* gnutls_pkcs11_obj_export_url: PKCS 11 API. (line 272)
|
1184
|
+
* gnutls_pkcs11_obj_get_info: Reading objects. (line 27)
|
1185
|
+
* gnutls_pkcs11_obj_get_info <1>: PKCS 11 API. (line 290)
|
1186
|
+
* gnutls_pkcs11_obj_get_type: PKCS 11 API. (line 315)
|
1187
|
+
* gnutls_pkcs11_obj_import_url: PKCS 11 API. (line 329)
|
1188
|
+
* gnutls_pkcs11_obj_init: PKCS 11 API. (line 351)
|
1189
|
+
* gnutls_pkcs11_obj_list_import_url: PKCS 11 API. (line 364)
|
1190
|
+
* gnutls_pkcs11_obj_list_import_url2: PKCS 11 API. (line 390)
|
1191
|
+
* gnutls_pkcs11_obj_set_pin_function: PKCS 11 API. (line 417)
|
1192
|
+
* gnutls_pkcs11_privkey_deinit: PKCS 11 API. (line 435)
|
1193
|
+
* gnutls_pkcs11_privkey_export_url: PKCS 11 API. (line 444)
|
1194
|
+
* gnutls_pkcs11_privkey_generate: PKCS 11 API. (line 461)
|
1195
|
+
* gnutls_pkcs11_privkey_generate2: PKCS 11 API. (line 486)
|
1196
|
+
* gnutls_pkcs11_privkey_get_info: PKCS 11 API. (line 522)
|
1197
|
+
* gnutls_pkcs11_privkey_get_pk_algorithm: PKCS 11 API. (line 545)
|
1198
|
+
* gnutls_pkcs11_privkey_import_url: PKCS 11 API. (line 561)
|
1199
|
+
* gnutls_pkcs11_privkey_init: PKCS 11 API. (line 581)
|
1200
|
+
* gnutls_pkcs11_privkey_set_pin_function: PKCS 11 API. (line 593)
|
1201
|
+
* gnutls_pkcs11_privkey_status: PKCS 11 API. (line 611)
|
1202
|
+
* gnutls_pkcs11_reinit: PKCS11 Initialization.
|
1203
|
+
(line 57)
|
1204
|
+
* gnutls_pkcs11_reinit <1>: PKCS 11 API. (line 625)
|
1205
|
+
* gnutls_pkcs11_set_pin_function: PKCS 11 API. (line 639)
|
1206
|
+
* gnutls_pkcs11_set_token_function: PKCS 11 API. (line 654)
|
1207
|
+
* gnutls_pkcs11_token_get_flags: PKCS 11 API. (line 668)
|
1208
|
+
* gnutls_pkcs11_token_get_info: PKCS 11 API. (line 688)
|
1209
|
+
* gnutls_pkcs11_token_get_mechanism: PKCS 11 API. (line 711)
|
1210
|
+
* gnutls_pkcs11_token_get_random: PKCS 11 API. (line 731)
|
1211
|
+
* gnutls_pkcs11_token_get_url: PKCS 11 API. (line 749)
|
1212
|
+
* gnutls_pkcs11_token_init: PKCS 11 API. (line 769)
|
1213
|
+
* gnutls_pkcs11_token_set_pin: PKCS 11 API. (line 788)
|
1214
|
+
* gnutls_pkcs11_type_get_name: PKCS 11 API. (line 808)
|
1215
|
+
* gnutls_pkcs12_bag_decrypt: PKCS 12 API. (line 12)
|
1216
|
+
* gnutls_pkcs12_bag_deinit: PKCS 12 API. (line 27)
|
1217
|
+
* gnutls_pkcs12_bag_encrypt: PKCS 12 API. (line 35)
|
1218
|
+
* gnutls_pkcs12_bag_get_count: PKCS 12 API. (line 52)
|
1219
|
+
* gnutls_pkcs12_bag_get_data: PKCS 12 API. (line 64)
|
1220
|
+
* gnutls_pkcs12_bag_get_friendly_name: PKCS 12 API. (line 82)
|
1221
|
+
* gnutls_pkcs12_bag_get_key_id: PKCS 12 API. (line 101)
|
1222
|
+
* gnutls_pkcs12_bag_get_type: PKCS 12 API. (line 120)
|
1223
|
+
* gnutls_pkcs12_bag_init: PKCS 12 API. (line 133)
|
1224
|
+
* gnutls_pkcs12_bag_set_crl: PKCS 12 API. (line 146)
|
1225
|
+
* gnutls_pkcs12_bag_set_crt: PKCS 12 API. (line 161)
|
1226
|
+
* gnutls_pkcs12_bag_set_data: PKCS 12 API. (line 176)
|
1227
|
+
* gnutls_pkcs12_bag_set_friendly_name: PKCS 12 API. (line 193)
|
1228
|
+
* gnutls_pkcs12_bag_set_key_id: PKCS 12 API. (line 213)
|
1229
|
+
* gnutls_pkcs12_deinit: PKCS 12 API. (line 233)
|
1230
|
+
* gnutls_pkcs12_export: PKCS 12 API. (line 241)
|
1231
|
+
* gnutls_pkcs12_export2: PKCS 12 API. (line 269)
|
1232
|
+
* gnutls_pkcs12_generate_mac: PKCS 12 API. (line 293)
|
1233
|
+
* gnutls_pkcs12_get_bag: PKCS 12 API. (line 307)
|
1234
|
+
* gnutls_pkcs12_import: PKCS 12 API. (line 327)
|
1235
|
+
* gnutls_pkcs12_init: PKCS 12 API. (line 350)
|
1236
|
+
* gnutls_pkcs12_set_bag: PKCS 12 API. (line 363)
|
1237
|
+
* gnutls_pkcs12_simple_parse: Managing encrypted keys.
|
1238
|
+
(line 143)
|
1239
|
+
* gnutls_pkcs12_simple_parse <1>: PKCS 12 API. (line 377)
|
1240
|
+
* gnutls_pkcs12_verify_mac: PKCS 12 API. (line 444)
|
1241
|
+
* gnutls_pkcs7_deinit: X509 certificate API.
|
1242
|
+
(line 36)
|
1243
|
+
* gnutls_pkcs7_delete_crl: X509 certificate API.
|
1244
|
+
(line 44)
|
1245
|
+
* gnutls_pkcs7_delete_crt: X509 certificate API.
|
1246
|
+
(line 59)
|
1247
|
+
* gnutls_pkcs7_export: X509 certificate API.
|
1248
|
+
(line 74)
|
1249
|
+
* gnutls_pkcs7_export2: X509 certificate API.
|
1250
|
+
(line 101)
|
1251
|
+
* gnutls_pkcs7_get_crl_count: X509 certificate API.
|
1252
|
+
(line 124)
|
1253
|
+
* gnutls_pkcs7_get_crl_raw: X509 certificate API.
|
1254
|
+
(line 136)
|
1255
|
+
* gnutls_pkcs7_get_crt_count: X509 certificate API.
|
1256
|
+
(line 157)
|
1257
|
+
* gnutls_pkcs7_get_crt_raw: X509 certificate API.
|
1258
|
+
(line 169)
|
1259
|
+
* gnutls_pkcs7_import: X509 certificate API.
|
1260
|
+
(line 194)
|
1261
|
+
* gnutls_pkcs7_init: X509 certificate API.
|
1262
|
+
(line 214)
|
1263
|
+
* gnutls_pkcs7_set_crl: X509 certificate API.
|
1264
|
+
(line 227)
|
1265
|
+
* gnutls_pkcs7_set_crl_raw: X509 certificate API.
|
1266
|
+
(line 242)
|
1267
|
+
* gnutls_pkcs7_set_crt: X509 certificate API.
|
1268
|
+
(line 256)
|
1269
|
+
* gnutls_pkcs7_set_crt_raw: X509 certificate API.
|
1270
|
+
(line 272)
|
1271
|
+
* gnutls_pk_algorithm_get_name: Core TLS API. (line 3094)
|
1272
|
+
* gnutls_pk_bits_to_sec_param: Selecting cryptographic key sizes.
|
1273
|
+
(line 80)
|
1274
|
+
* gnutls_pk_bits_to_sec_param <1>: Core TLS API. (line 3106)
|
1275
|
+
* gnutls_pk_get_id: Core TLS API. (line 3123)
|
1276
|
+
* gnutls_pk_get_name: Core TLS API. (line 3138)
|
1277
|
+
* gnutls_pk_list: Core TLS API. (line 3152)
|
1278
|
+
* gnutls_pk_to_sign: Core TLS API. (line 3166)
|
1279
|
+
* gnutls_prf: Core TLS API. (line 3181)
|
1280
|
+
* gnutls_prf_raw: Core TLS API. (line 3224)
|
1281
|
+
* gnutls_priority_certificate_type_list: Core TLS API. (line 3263)
|
1282
|
+
* gnutls_priority_cipher_list: Core TLS API. (line 3279)
|
1283
|
+
* gnutls_priority_compression_list: Core TLS API. (line 3294)
|
1284
|
+
* gnutls_priority_deinit: Core TLS API. (line 3310)
|
1285
|
+
* gnutls_priority_ecc_curve_list: Core TLS API. (line 3319)
|
1286
|
+
* gnutls_priority_get_cipher_suite_index: Core TLS API. (line 3334)
|
1287
|
+
* gnutls_priority_init: Core TLS API. (line 3357)
|
1288
|
+
* gnutls_priority_kx_list: Core TLS API. (line 3437)
|
1289
|
+
* gnutls_priority_mac_list: Core TLS API. (line 3453)
|
1290
|
+
* gnutls_priority_protocol_list: Core TLS API. (line 3468)
|
1291
|
+
* gnutls_priority_set: Core TLS API. (line 3484)
|
1292
|
+
* gnutls_priority_set_direct: Core TLS API. (line 3498)
|
1293
|
+
* gnutls_priority_sign_list: Core TLS API. (line 3522)
|
1294
|
+
* gnutls_privkey_decrypt_data: Operations. (line 130)
|
1295
|
+
* gnutls_privkey_decrypt_data <1>: Abstract key API. (line 227)
|
1296
|
+
* gnutls_privkey_deinit: Abstract key API. (line 250)
|
1297
|
+
* gnutls_privkey_get_pk_algorithm: Abstract key API. (line 260)
|
1298
|
+
* gnutls_privkey_get_type: Abstract key API. (line 279)
|
1299
|
+
* gnutls_privkey_import_ext: Abstract key API. (line 294)
|
1300
|
+
* gnutls_privkey_import_ext2: Abstract private keys.
|
1301
|
+
(line 48)
|
1302
|
+
* gnutls_privkey_import_ext2 <1>: Abstract key API. (line 324)
|
1303
|
+
* gnutls_privkey_import_openpgp: Abstract key API. (line 361)
|
1304
|
+
* gnutls_privkey_import_openpgp_raw: Abstract key API. (line 388)
|
1305
|
+
* gnutls_privkey_import_pkcs11: Abstract key API. (line 413)
|
1306
|
+
* gnutls_privkey_import_pkcs11_url: Abstract key API. (line 439)
|
1307
|
+
* gnutls_privkey_import_tpm_raw: Abstract key API. (line 456)
|
1308
|
+
* gnutls_privkey_import_tpm_url: Using keys. (line 16)
|
1309
|
+
* gnutls_privkey_import_tpm_url <1>: Abstract key API. (line 486)
|
1310
|
+
* gnutls_privkey_import_url: Abstract private keys.
|
1311
|
+
(line 23)
|
1312
|
+
* gnutls_privkey_import_url <1>: Abstract key API. (line 517)
|
1313
|
+
* gnutls_privkey_import_x509: Abstract key API. (line 537)
|
1314
|
+
* gnutls_privkey_import_x509_raw: Managing encrypted keys.
|
1315
|
+
(line 27)
|
1316
|
+
* gnutls_privkey_import_x509_raw <1>: Abstract key API. (line 563)
|
1317
|
+
* gnutls_privkey_init: Abstract key API. (line 590)
|
1318
|
+
* gnutls_privkey_set_pin_function: Abstract key API. (line 603)
|
1319
|
+
* gnutls_privkey_sign_data: Operations. (line 71)
|
1320
|
+
* gnutls_privkey_sign_data <1>: Abstract key API. (line 623)
|
1321
|
+
* gnutls_privkey_sign_hash: Operations. (line 99)
|
1322
|
+
* gnutls_privkey_sign_hash <1>: Abstract key API. (line 654)
|
1323
|
+
* gnutls_privkey_sign_raw_data: Compatibility API. (line 212)
|
1324
|
+
* gnutls_privkey_status: Abstract key API. (line 688)
|
1325
|
+
* gnutls_protocol_get_id: Core TLS API. (line 3538)
|
1326
|
+
* gnutls_protocol_get_name: Core TLS API. (line 3550)
|
1327
|
+
* gnutls_protocol_get_version: Core TLS API. (line 3562)
|
1328
|
+
* gnutls_protocol_list: Core TLS API. (line 3573)
|
1329
|
+
* gnutls_protocol_set_priority: Compatibility API. (line 243)
|
1330
|
+
* gnutls_psk_allocate_client_credentials: Core TLS API. (line 3585)
|
1331
|
+
* gnutls_psk_allocate_server_credentials: Core TLS API. (line 3598)
|
1332
|
+
* gnutls_psk_client_get_hint: Core TLS API. (line 3611)
|
1333
|
+
* gnutls_psk_free_client_credentials: Core TLS API. (line 3627)
|
1334
|
+
* gnutls_psk_free_server_credentials: Core TLS API. (line 3637)
|
1335
|
+
* gnutls_psk_server_get_username: Core TLS API. (line 3647)
|
1336
|
+
* gnutls_psk_set_client_credentials: Core TLS API. (line 3659)
|
1337
|
+
* gnutls_psk_set_client_credentials_function: PSK credentials.
|
1338
|
+
(line 22)
|
1339
|
+
* gnutls_psk_set_client_credentials_function <1>: Core TLS API.
|
1340
|
+
(line 3684)
|
1341
|
+
* gnutls_psk_set_params_function: Core TLS API. (line 3708)
|
1342
|
+
* gnutls_psk_set_server_credentials_file: PSK credentials. (line 58)
|
1343
|
+
* gnutls_psk_set_server_credentials_file <1>: Core TLS API. (line 3722)
|
1344
|
+
* gnutls_psk_set_server_credentials_function: Core TLS API. (line 3739)
|
1345
|
+
* gnutls_psk_set_server_credentials_hint: Core TLS API. (line 3764)
|
1346
|
+
* gnutls_psk_set_server_dh_params: Core TLS API. (line 3783)
|
1347
|
+
* gnutls_psk_set_server_params_function: Core TLS API. (line 3797)
|
1348
|
+
* gnutls_pubkey_deinit: Abstract key API. (line 704)
|
1349
|
+
* gnutls_pubkey_encrypt_data: Operations. (line 53)
|
1350
|
+
* gnutls_pubkey_encrypt_data <1>: Abstract key API. (line 714)
|
1351
|
+
* gnutls_pubkey_export: Abstract key API. (line 735)
|
1352
|
+
* gnutls_pubkey_export2: Abstract public keys.
|
1353
|
+
(line 20)
|
1354
|
+
* gnutls_pubkey_export2 <1>: Abstract key API. (line 766)
|
1355
|
+
* gnutls_pubkey_get_key_id: Abstract key API. (line 791)
|
1356
|
+
* gnutls_pubkey_get_key_usage: Abstract key API. (line 820)
|
1357
|
+
* gnutls_pubkey_get_openpgp_key_id: Abstract key API. (line 837)
|
1358
|
+
* gnutls_pubkey_get_pk_algorithm: Abstract key API. (line 870)
|
1359
|
+
* gnutls_pubkey_get_pk_dsa_raw: Abstract key API. (line 889)
|
1360
|
+
* gnutls_pubkey_get_pk_ecc_raw: Abstract key API. (line 914)
|
1361
|
+
* gnutls_pubkey_get_pk_ecc_x962: Abstract key API. (line 937)
|
1362
|
+
* gnutls_pubkey_get_pk_rsa_raw: Abstract key API. (line 957)
|
1363
|
+
* gnutls_pubkey_get_preferred_hash_algorithm: Abstract key API.
|
1364
|
+
(line 977)
|
1365
|
+
* gnutls_pubkey_get_verify_algorithm: Abstract key API. (line 1005)
|
1366
|
+
* gnutls_pubkey_import: Abstract key API. (line 1026)
|
1367
|
+
* gnutls_pubkey_import_dsa_raw: Abstract key API. (line 1047)
|
1368
|
+
* gnutls_pubkey_import_ecc_raw: Abstract key API. (line 1072)
|
1369
|
+
* gnutls_pubkey_import_ecc_x962: Abstract key API. (line 1094)
|
1370
|
+
* gnutls_pubkey_import_openpgp: Abstract key API. (line 1114)
|
1371
|
+
* gnutls_pubkey_import_openpgp_raw: Abstract key API. (line 1135)
|
1372
|
+
* gnutls_pubkey_import_pkcs11: Abstract key API. (line 1160)
|
1373
|
+
* gnutls_pubkey_import_pkcs11_url: Abstract key API. (line 1179)
|
1374
|
+
* gnutls_pubkey_import_privkey: Abstract key API. (line 1198)
|
1375
|
+
* gnutls_pubkey_import_rsa_raw: Abstract key API. (line 1219)
|
1376
|
+
* gnutls_pubkey_import_tpm_raw: Abstract key API. (line 1239)
|
1377
|
+
* gnutls_pubkey_import_tpm_url: Using keys. (line 44)
|
1378
|
+
* gnutls_pubkey_import_tpm_url <1>: Abstract key API. (line 1266)
|
1379
|
+
* gnutls_pubkey_import_url: Abstract key API. (line 1294)
|
1380
|
+
* gnutls_pubkey_import_x509: Abstract key API. (line 1313)
|
1381
|
+
* gnutls_pubkey_import_x509_crq: Abstract key API. (line 1332)
|
1382
|
+
* gnutls_pubkey_import_x509_raw: Abstract key API. (line 1351)
|
1383
|
+
* gnutls_pubkey_init: Abstract key API. (line 1373)
|
1384
|
+
* gnutls_pubkey_print: Abstract key API. (line 1386)
|
1385
|
+
* gnutls_pubkey_set_key_usage: Abstract key API. (line 1411)
|
1386
|
+
* gnutls_pubkey_set_pin_function: Abstract key API. (line 1429)
|
1387
|
+
* gnutls_pubkey_verify_data: Abstract key API. (line 1449)
|
1388
|
+
* gnutls_pubkey_verify_data2: Operations. (line 9)
|
1389
|
+
* gnutls_pubkey_verify_data2 <1>: Abstract key API. (line 1475)
|
1390
|
+
* gnutls_pubkey_verify_hash: Abstract key API. (line 1500)
|
1391
|
+
* gnutls_pubkey_verify_hash2: Operations. (line 31)
|
1392
|
+
* gnutls_pubkey_verify_hash2 <1>: Abstract key API. (line 1526)
|
1393
|
+
* gnutls_random_art: Core TLS API. (line 3811)
|
1394
|
+
* gnutls_range_split: Core TLS API. (line 3835)
|
1395
|
+
* gnutls_record_can_use_length_hiding: Core TLS API. (line 3861)
|
1396
|
+
* gnutls_record_check_corked: Core TLS API. (line 3879)
|
1397
|
+
* gnutls_record_check_pending: Data transfer and termination.
|
1398
|
+
(line 136)
|
1399
|
+
* gnutls_record_check_pending <1>: Core TLS API. (line 3893)
|
1400
|
+
* gnutls_record_cork: Buffered data transfer.
|
1401
|
+
(line 12)
|
1402
|
+
* gnutls_record_cork <1>: Core TLS API. (line 3906)
|
1403
|
+
* gnutls_record_disable_padding: Core TLS API. (line 3920)
|
1404
|
+
* gnutls_record_get_direction: Asynchronous operation.
|
1405
|
+
(line 40)
|
1406
|
+
* gnutls_record_get_direction <1>: Core TLS API. (line 3935)
|
1407
|
+
* gnutls_record_get_discarded: Datagram TLS API. (line 212)
|
1408
|
+
* gnutls_record_get_max_size: Core TLS API. (line 3955)
|
1409
|
+
* gnutls_record_overhead_size: Core TLS API. (line 3967)
|
1410
|
+
* gnutls_record_recv: Data transfer and termination.
|
1411
|
+
(line 49)
|
1412
|
+
* gnutls_record_recv <1>: Core TLS API. (line 3979)
|
1413
|
+
* gnutls_record_recv_seq: Data transfer and termination.
|
1414
|
+
(line 105)
|
1415
|
+
* gnutls_record_recv_seq <1>: Core TLS API. (line 4011)
|
1416
|
+
* gnutls_record_send: Data transfer and termination.
|
1417
|
+
(line 12)
|
1418
|
+
* gnutls_record_send <1>: Core TLS API. (line 4038)
|
1419
|
+
* gnutls_record_send_range: Core TLS API. (line 4078)
|
1420
|
+
* gnutls_record_set_max_empty_records: Core TLS API. (line 4108)
|
1421
|
+
* gnutls_record_set_max_size: Core TLS API. (line 4128)
|
1422
|
+
* gnutls_record_set_timeout: Core TLS API. (line 4152)
|
1423
|
+
* gnutls_record_uncork: Buffered data transfer.
|
1424
|
+
(line 23)
|
1425
|
+
* gnutls_record_uncork <1>: Core TLS API. (line 4171)
|
1426
|
+
* gnutls_rehandshake: Core TLS API. (line 4196)
|
1427
|
+
* gnutls_rnd: Random number generation.
|
1428
|
+
(line 21)
|
1429
|
+
* gnutls_rnd <1>: Cryptographic API. (line 460)
|
1430
|
+
* gnutls_rnd_refresh: Cryptographic API. (line 478)
|
1431
|
+
* gnutls_rsa_export_get_modulus_bits: Compatibility API. (line 258)
|
1432
|
+
* gnutls_rsa_export_get_pubkey: Compatibility API. (line 270)
|
1433
|
+
* gnutls_rsa_params_cpy: Compatibility API. (line 288)
|
1434
|
+
* gnutls_rsa_params_deinit: Compatibility API. (line 303)
|
1435
|
+
* gnutls_rsa_params_export_pkcs1: Compatibility API. (line 312)
|
1436
|
+
* gnutls_rsa_params_export_raw: Compatibility API. (line 339)
|
1437
|
+
* gnutls_rsa_params_generate2: Compatibility API. (line 369)
|
1438
|
+
* gnutls_rsa_params_import_pkcs1: Compatibility API. (line 390)
|
1439
|
+
* gnutls_rsa_params_import_raw: Compatibility API. (line 412)
|
1440
|
+
* gnutls_rsa_params_init: Compatibility API. (line 440)
|
1441
|
+
* gnutls_safe_renegotiation_status: Core TLS API. (line 4227)
|
1442
|
+
* gnutls_sec_param_get_name: Core TLS API. (line 4242)
|
1443
|
+
* gnutls_sec_param_to_pk_bits: Selecting cryptographic key sizes.
|
1444
|
+
(line 64)
|
1445
|
+
* gnutls_sec_param_to_pk_bits <1>: Core TLS API. (line 4256)
|
1446
|
+
* gnutls_server_name_get: Core TLS API. (line 4275)
|
1447
|
+
* gnutls_server_name_set: Core TLS API. (line 4312)
|
1448
|
+
* gnutls_session_channel_binding: Core TLS API. (line 4339)
|
1449
|
+
* gnutls_session_enable_compatibility_mode: Core TLS API. (line 4360)
|
1450
|
+
* gnutls_session_force_valid: Core TLS API. (line 4378)
|
1451
|
+
* gnutls_session_get_data: Core TLS API. (line 4389)
|
1452
|
+
* gnutls_session_get_data2: Core TLS API. (line 4410)
|
1453
|
+
* gnutls_session_get_desc: Core TLS API. (line 4429)
|
1454
|
+
* gnutls_session_get_id: Core TLS API. (line 4443)
|
1455
|
+
* gnutls_session_get_id2: Core TLS API. (line 4467)
|
1456
|
+
* gnutls_session_get_ptr: Core TLS API. (line 4484)
|
1457
|
+
* gnutls_session_get_random: Core TLS API. (line 4496)
|
1458
|
+
* gnutls_session_is_resumed: Session resumption. (line 27)
|
1459
|
+
* gnutls_session_is_resumed <1>: Core TLS API. (line 4516)
|
1460
|
+
* gnutls_session_resumption_requested: Session resumption. (line 88)
|
1461
|
+
* gnutls_session_resumption_requested <1>: Core TLS API. (line 4527)
|
1462
|
+
* gnutls_session_set_data: Core TLS API. (line 4540)
|
1463
|
+
* gnutls_session_set_id: Core TLS API. (line 4563)
|
1464
|
+
* gnutls_session_set_premaster: Core TLS API. (line 4582)
|
1465
|
+
* gnutls_session_set_ptr: Core TLS API. (line 4617)
|
1466
|
+
* gnutls_session_ticket_enable_client: Core TLS API. (line 4630)
|
1467
|
+
* gnutls_session_ticket_enable_server: Session resumption. (line 60)
|
1468
|
+
* gnutls_session_ticket_enable_server <1>: Core TLS API. (line 4645)
|
1469
|
+
* gnutls_session_ticket_key_generate: Session resumption. (line 75)
|
1470
|
+
* gnutls_session_ticket_key_generate <1>: Core TLS API. (line 4663)
|
1471
|
+
* gnutls_set_default_export_priority: Compatibility API. (line 453)
|
1472
|
+
* gnutls_set_default_priority: Core TLS API. (line 4679)
|
1473
|
+
* gnutls_sign_algorithm_get: Core TLS API. (line 4699)
|
1474
|
+
* gnutls_sign_algorithm_get_client: Core TLS API. (line 4712)
|
1475
|
+
* gnutls_sign_algorithm_get_requested: Core TLS API. (line 4726)
|
1476
|
+
* gnutls_sign_callback_get: Compatibility API. (line 476)
|
1477
|
+
* gnutls_sign_callback_set: Compatibility API. (line 492)
|
1478
|
+
* gnutls_sign_get_hash_algorithm: Core TLS API. (line 4753)
|
1479
|
+
* gnutls_sign_get_id: Core TLS API. (line 4768)
|
1480
|
+
* gnutls_sign_get_name: Core TLS API. (line 4780)
|
1481
|
+
* gnutls_sign_get_pk_algorithm: Core TLS API. (line 4792)
|
1482
|
+
* gnutls_sign_is_secure: Core TLS API. (line 4807)
|
1483
|
+
* gnutls_sign_list: Core TLS API. (line 4817)
|
1484
|
+
* gnutls_srp_allocate_client_credentials: Core TLS API. (line 4827)
|
1485
|
+
* gnutls_srp_allocate_server_credentials: Core TLS API. (line 4840)
|
1486
|
+
* gnutls_srp_base64_decode: Core TLS API. (line 4853)
|
1487
|
+
* gnutls_srp_base64_decode_alloc: Core TLS API. (line 4875)
|
1488
|
+
* gnutls_srp_base64_encode: Core TLS API. (line 4895)
|
1489
|
+
* gnutls_srp_base64_encode_alloc: Core TLS API. (line 4917)
|
1490
|
+
* gnutls_srp_free_client_credentials: Core TLS API. (line 4938)
|
1491
|
+
* gnutls_srp_free_server_credentials: Core TLS API. (line 4948)
|
1492
|
+
* gnutls_srp_server_get_username: Core TLS API. (line 4958)
|
1493
|
+
* gnutls_srp_set_client_credentials: Core TLS API. (line 4971)
|
1494
|
+
* gnutls_srp_set_client_credentials_function: SRP credentials.
|
1495
|
+
(line 19)
|
1496
|
+
* gnutls_srp_set_client_credentials_function <1>: Core TLS API.
|
1497
|
+
(line 4992)
|
1498
|
+
* gnutls_srp_set_prime_bits: Core TLS API. (line 5022)
|
1499
|
+
* gnutls_srp_set_server_credentials_file: SRP credentials. (line 53)
|
1500
|
+
* gnutls_srp_set_server_credentials_file <1>: Core TLS API. (line 5043)
|
1501
|
+
* gnutls_srp_set_server_credentials_function: SRP credentials.
|
1502
|
+
(line 70)
|
1503
|
+
* gnutls_srp_set_server_credentials_function <1>: Core TLS API.
|
1504
|
+
(line 5063)
|
1505
|
+
* gnutls_srp_verifier: Authentication using SRP.
|
1506
|
+
(line 43)
|
1507
|
+
* gnutls_srp_verifier <1>: Core TLS API. (line 5097)
|
1508
|
+
* gnutls_srtp_get_keys: SRTP. (line 31)
|
1509
|
+
* gnutls_srtp_get_keys <1>: Core TLS API. (line 5126)
|
1510
|
+
* gnutls_srtp_get_mki: Core TLS API. (line 5164)
|
1511
|
+
* gnutls_srtp_get_profile_id: Core TLS API. (line 5182)
|
1512
|
+
* gnutls_srtp_get_profile_name: Core TLS API. (line 5198)
|
1513
|
+
* gnutls_srtp_get_selected_profile: Core TLS API. (line 5213)
|
1514
|
+
* gnutls_srtp_set_mki: Core TLS API. (line 5229)
|
1515
|
+
* gnutls_srtp_set_profile: Core TLS API. (line 5246)
|
1516
|
+
* gnutls_srtp_set_profile_direct: Core TLS API. (line 5263)
|
1517
|
+
* gnutls_store_commitment: Certificate verification.
|
1518
|
+
(line 99)
|
1519
|
+
* gnutls_store_commitment <1>: Core TLS API. (line 5284)
|
1520
|
+
* gnutls_store_pubkey: Certificate verification.
|
1521
|
+
(line 61)
|
1522
|
+
* gnutls_store_pubkey <1>: Core TLS API. (line 5324)
|
1523
|
+
* gnutls_strerror: Core TLS API. (line 5361)
|
1524
|
+
* gnutls_strerror_name: Core TLS API. (line 5375)
|
1525
|
+
* gnutls_supplemental_get_name: Core TLS API. (line 5390)
|
1526
|
+
* gnutls_tdb_deinit: Core TLS API. (line 5403)
|
1527
|
+
* gnutls_tdb_init: Core TLS API. (line 5412)
|
1528
|
+
* gnutls_tdb_set_store_commitment_func: Core TLS API. (line 5423)
|
1529
|
+
* gnutls_tdb_set_store_func: Core TLS API. (line 5440)
|
1530
|
+
* gnutls_tdb_set_verify_func: Core TLS API. (line 5455)
|
1531
|
+
* gnutls_tpm_get_registered: TPM API. (line 12)
|
1532
|
+
* gnutls_tpm_key_list_deinit: TPM API. (line 27)
|
1533
|
+
* gnutls_tpm_key_list_get_url: TPM API. (line 38)
|
1534
|
+
* gnutls_tpm_privkey_delete: Key generation. (line 52)
|
1535
|
+
* gnutls_tpm_privkey_delete <1>: Using keys. (line 82)
|
1536
|
+
* gnutls_tpm_privkey_delete <2>: TPM API. (line 60)
|
1537
|
+
* gnutls_tpm_privkey_generate: Key generation. (line 9)
|
1538
|
+
* gnutls_tpm_privkey_generate <1>: TPM API. (line 76)
|
1539
|
+
* gnutls_transport_get_int: Core TLS API. (line 5470)
|
1540
|
+
* gnutls_transport_get_int2: Core TLS API. (line 5484)
|
1541
|
+
* gnutls_transport_get_ptr: Core TLS API. (line 5501)
|
1542
|
+
* gnutls_transport_get_ptr2: Core TLS API. (line 5514)
|
1543
|
+
* gnutls_transport_set_errno: Setting up the transport layer.
|
1544
|
+
(line 101)
|
1545
|
+
* gnutls_transport_set_errno <1>: Core TLS API. (line 5530)
|
1546
|
+
* gnutls_transport_set_errno_function: Core TLS API. (line 5550)
|
1547
|
+
* gnutls_transport_set_int: Core TLS API. (line 5568)
|
1548
|
+
* gnutls_transport_set_int2: Core TLS API. (line 5582)
|
1549
|
+
* gnutls_transport_set_ptr: Core TLS API. (line 5600)
|
1550
|
+
* gnutls_transport_set_ptr2: Core TLS API. (line 5613)
|
1551
|
+
* gnutls_transport_set_pull_function: Setting up the transport layer.
|
1552
|
+
(line 56)
|
1553
|
+
* gnutls_transport_set_pull_function <1>: Core TLS API. (line 5630)
|
1554
|
+
* gnutls_transport_set_pull_timeout_function: Setting up the transport layer.
|
1555
|
+
(line 71)
|
1556
|
+
* gnutls_transport_set_pull_timeout_function <1>: Setting up the transport layer.
|
1557
|
+
(line 138)
|
1558
|
+
* gnutls_transport_set_pull_timeout_function <2>: Core TLS API.
|
1559
|
+
(line 5648)
|
1560
|
+
* gnutls_transport_set_push_function: Setting up the transport layer.
|
1561
|
+
(line 23)
|
1562
|
+
* gnutls_transport_set_push_function <1>: Core TLS API. (line 5673)
|
1563
|
+
* gnutls_transport_set_vec_push_function: Setting up the transport layer.
|
1564
|
+
(line 40)
|
1565
|
+
* gnutls_transport_set_vec_push_function <1>: Core TLS API. (line 5693)
|
1566
|
+
* gnutls_url_is_supported: Abstract public keys.
|
1567
|
+
(line 54)
|
1568
|
+
* gnutls_url_is_supported <1>: Core TLS API. (line 5712)
|
1569
|
+
* gnutls_verify_stored_pubkey: Certificate verification.
|
1570
|
+
(line 18)
|
1571
|
+
* gnutls_verify_stored_pubkey <1>: Core TLS API. (line 5726)
|
1572
|
+
* gnutls_x509_crl_check_issuer: X509 certificate API.
|
1573
|
+
(line 287)
|
1574
|
+
* gnutls_x509_crl_deinit: X509 certificate API.
|
1575
|
+
(line 302)
|
1576
|
+
* gnutls_x509_crl_export: X509 certificate API.
|
1577
|
+
(line 310)
|
1578
|
+
* gnutls_x509_crl_export2: X509 certificate API.
|
1579
|
+
(line 337)
|
1580
|
+
* gnutls_x509_crl_get_authority_key_gn_serial: X509 certificate API.
|
1581
|
+
(line 361)
|
1582
|
+
* gnutls_x509_crl_get_authority_key_id: X509 certificate API.
|
1583
|
+
(line 398)
|
1584
|
+
* gnutls_x509_crl_get_crt_count: X509 certificate API.
|
1585
|
+
(line 426)
|
1586
|
+
* gnutls_x509_crl_get_crt_serial: PKIX certificate revocation lists.
|
1587
|
+
(line 55)
|
1588
|
+
* gnutls_x509_crl_get_crt_serial <1>: X509 certificate API.
|
1589
|
+
(line 438)
|
1590
|
+
* gnutls_x509_crl_get_dn_oid: X509 certificate API.
|
1591
|
+
(line 461)
|
1592
|
+
* gnutls_x509_crl_get_extension_data: X509 certificate API.
|
1593
|
+
(line 484)
|
1594
|
+
* gnutls_x509_crl_get_extension_info: X509 certificate API.
|
1595
|
+
(line 514)
|
1596
|
+
* gnutls_x509_crl_get_extension_oid: X509 certificate API.
|
1597
|
+
(line 548)
|
1598
|
+
* gnutls_x509_crl_get_issuer_dn: X509 certificate API.
|
1599
|
+
(line 573)
|
1600
|
+
* gnutls_x509_crl_get_issuer_dn2: X509 certificate API.
|
1601
|
+
(line 595)
|
1602
|
+
* gnutls_x509_crl_get_issuer_dn_by_oid: X509 certificate API.
|
1603
|
+
(line 615)
|
1604
|
+
* gnutls_x509_crl_get_next_update: X509 certificate API.
|
1605
|
+
(line 651)
|
1606
|
+
* gnutls_x509_crl_get_number: X509 certificate API.
|
1607
|
+
(line 665)
|
1608
|
+
* gnutls_x509_crl_get_raw_issuer_dn: X509 certificate API.
|
1609
|
+
(line 687)
|
1610
|
+
* gnutls_x509_crl_get_signature: X509 certificate API.
|
1611
|
+
(line 703)
|
1612
|
+
* gnutls_x509_crl_get_signature_algorithm: X509 certificate API.
|
1613
|
+
(line 721)
|
1614
|
+
* gnutls_x509_crl_get_this_update: X509 certificate API.
|
1615
|
+
(line 734)
|
1616
|
+
* gnutls_x509_crl_get_version: X509 certificate API.
|
1617
|
+
(line 745)
|
1618
|
+
* gnutls_x509_crl_import: X509 certificate API.
|
1619
|
+
(line 755)
|
1620
|
+
* gnutls_x509_crl_init: X509 certificate API.
|
1621
|
+
(line 775)
|
1622
|
+
* gnutls_x509_crl_list_import: X509 certificate API.
|
1623
|
+
(line 790)
|
1624
|
+
* gnutls_x509_crl_list_import2: X509 certificate API.
|
1625
|
+
(line 821)
|
1626
|
+
* gnutls_x509_crl_print: X509 certificate API.
|
1627
|
+
(line 851)
|
1628
|
+
* gnutls_x509_crl_privkey_sign: PKIX certificate revocation lists.
|
1629
|
+
(line 121)
|
1630
|
+
* gnutls_x509_crl_privkey_sign <1>: Abstract key API. (line 1551)
|
1631
|
+
* gnutls_x509_crl_set_authority_key_id: X509 certificate API.
|
1632
|
+
(line 871)
|
1633
|
+
* gnutls_x509_crl_set_crt: X509 certificate API.
|
1634
|
+
(line 892)
|
1635
|
+
* gnutls_x509_crl_set_crt_serial: X509 certificate API.
|
1636
|
+
(line 910)
|
1637
|
+
* gnutls_x509_crl_set_next_update: X509 certificate API.
|
1638
|
+
(line 930)
|
1639
|
+
* gnutls_x509_crl_set_number: X509 certificate API.
|
1640
|
+
(line 944)
|
1641
|
+
* gnutls_x509_crl_set_this_update: X509 certificate API.
|
1642
|
+
(line 964)
|
1643
|
+
* gnutls_x509_crl_set_version: X509 certificate API.
|
1644
|
+
(line 978)
|
1645
|
+
* gnutls_x509_crl_sign: Compatibility API. (line 517)
|
1646
|
+
* gnutls_x509_crl_sign2: PKIX certificate revocation lists.
|
1647
|
+
(line 98)
|
1648
|
+
* gnutls_x509_crl_sign2 <1>: X509 certificate API.
|
1649
|
+
(line 994)
|
1650
|
+
* gnutls_x509_crl_verify: X509 certificate API.
|
1651
|
+
(line 1020)
|
1652
|
+
* gnutls_x509_crq_deinit: X509 certificate API.
|
1653
|
+
(line 1050)
|
1654
|
+
* gnutls_x509_crq_export: X509 certificate API.
|
1655
|
+
(line 1059)
|
1656
|
+
* gnutls_x509_crq_export2: X509 certificate API.
|
1657
|
+
(line 1087)
|
1658
|
+
* gnutls_x509_crq_get_attribute_by_oid: X509 certificate API.
|
1659
|
+
(line 1111)
|
1660
|
+
* gnutls_x509_crq_get_attribute_data: X509 certificate API.
|
1661
|
+
(line 1140)
|
1662
|
+
* gnutls_x509_crq_get_attribute_info: X509 certificate API.
|
1663
|
+
(line 1169)
|
1664
|
+
* gnutls_x509_crq_get_basic_constraints: X509 certificate API.
|
1665
|
+
(line 1200)
|
1666
|
+
* gnutls_x509_crq_get_challenge_password: X509 certificate API.
|
1667
|
+
(line 1230)
|
1668
|
+
* gnutls_x509_crq_get_dn: X509 certificate API.
|
1669
|
+
(line 1248)
|
1670
|
+
* gnutls_x509_crq_get_dn2: X509 certificate API.
|
1671
|
+
(line 1269)
|
1672
|
+
* gnutls_x509_crq_get_dn_by_oid: X509 certificate API.
|
1673
|
+
(line 1289)
|
1674
|
+
* gnutls_x509_crq_get_dn_oid: X509 certificate API.
|
1675
|
+
(line 1323)
|
1676
|
+
* gnutls_x509_crq_get_extension_by_oid: X509 certificate API.
|
1677
|
+
(line 1343)
|
1678
|
+
* gnutls_x509_crq_get_extension_data: X509 certificate API.
|
1679
|
+
(line 1373)
|
1680
|
+
* gnutls_x509_crq_get_extension_info: X509 certificate API.
|
1681
|
+
(line 1403)
|
1682
|
+
* gnutls_x509_crq_get_key_id: X509 certificate API.
|
1683
|
+
(line 1437)
|
1684
|
+
* gnutls_x509_crq_get_key_purpose_oid: X509 certificate API.
|
1685
|
+
(line 1466)
|
1686
|
+
* gnutls_x509_crq_get_key_rsa_raw: X509 certificate API.
|
1687
|
+
(line 1494)
|
1688
|
+
* gnutls_x509_crq_get_key_usage: X509 certificate API.
|
1689
|
+
(line 1514)
|
1690
|
+
* gnutls_x509_crq_get_pk_algorithm: X509 certificate API.
|
1691
|
+
(line 1540)
|
1692
|
+
* gnutls_x509_crq_get_private_key_usage_period: X509 certificate API.
|
1693
|
+
(line 1560)
|
1694
|
+
* gnutls_x509_crq_get_subject_alt_name: X509 certificate API.
|
1695
|
+
(line 1581)
|
1696
|
+
* gnutls_x509_crq_get_subject_alt_othername_oid: X509 certificate API.
|
1697
|
+
(line 1618)
|
1698
|
+
* gnutls_x509_crq_get_version: X509 certificate API.
|
1699
|
+
(line 1654)
|
1700
|
+
* gnutls_x509_crq_import: X509 certificate API.
|
1701
|
+
(line 1666)
|
1702
|
+
* gnutls_x509_crq_init: X509 certificate API.
|
1703
|
+
(line 1687)
|
1704
|
+
* gnutls_x509_crq_print: X509 certificate API.
|
1705
|
+
(line 1699)
|
1706
|
+
* gnutls_x509_crq_privkey_sign: Abstract key API. (line 1579)
|
1707
|
+
* gnutls_x509_crq_set_attribute_by_oid: X509 certificate API.
|
1708
|
+
(line 1721)
|
1709
|
+
* gnutls_x509_crq_set_basic_constraints: X509 certificate API.
|
1710
|
+
(line 1746)
|
1711
|
+
* gnutls_x509_crq_set_challenge_password: X509 certificate API.
|
1712
|
+
(line 1768)
|
1713
|
+
* gnutls_x509_crq_set_dn: X509 certificate API.
|
1714
|
+
(line 1783)
|
1715
|
+
* gnutls_x509_crq_set_dn_by_oid: X509 certificate API.
|
1716
|
+
(line 1800)
|
1717
|
+
* gnutls_x509_crq_set_key: PKCS 10 certificate requests.
|
1718
|
+
(line 30)
|
1719
|
+
* gnutls_x509_crq_set_key <1>: X509 certificate API.
|
1720
|
+
(line 1829)
|
1721
|
+
* gnutls_x509_crq_set_key_purpose_oid: X509 certificate API.
|
1722
|
+
(line 1844)
|
1723
|
+
* gnutls_x509_crq_set_key_rsa_raw: X509 certificate API.
|
1724
|
+
(line 1866)
|
1725
|
+
* gnutls_x509_crq_set_key_usage: X509 certificate API.
|
1726
|
+
(line 1885)
|
1727
|
+
* gnutls_x509_crq_set_private_key_usage_period: X509 certificate API.
|
1728
|
+
(line 1901)
|
1729
|
+
* gnutls_x509_crq_set_pubkey: Operations. (line 154)
|
1730
|
+
* gnutls_x509_crq_set_pubkey <1>: Abstract key API. (line 1608)
|
1731
|
+
* gnutls_x509_crq_set_subject_alt_name: X509 certificate API.
|
1732
|
+
(line 1918)
|
1733
|
+
* gnutls_x509_crq_set_version: X509 certificate API.
|
1734
|
+
(line 1943)
|
1735
|
+
* gnutls_x509_crq_sign: Compatibility API. (line 536)
|
1736
|
+
* gnutls_x509_crq_sign2: PKCS 10 certificate requests.
|
1737
|
+
(line 42)
|
1738
|
+
* gnutls_x509_crq_sign2 <1>: X509 certificate API.
|
1739
|
+
(line 1958)
|
1740
|
+
* gnutls_x509_crq_verify: X509 certificate API.
|
1741
|
+
(line 1985)
|
1742
|
+
* gnutls_x509_crt_check_hostname: X509 certificate API.
|
1743
|
+
(line 2004)
|
1744
|
+
* gnutls_x509_crt_check_issuer: X509 certificate API.
|
1745
|
+
(line 2033)
|
1746
|
+
* gnutls_x509_crt_check_revocation: X509 certificate API.
|
1747
|
+
(line 2049)
|
1748
|
+
* gnutls_x509_crt_cpy_crl_dist_points: X509 certificate API.
|
1749
|
+
(line 2066)
|
1750
|
+
* gnutls_x509_crt_deinit: X509 certificate API.
|
1751
|
+
(line 2082)
|
1752
|
+
* gnutls_x509_crt_export: X509 certificate API.
|
1753
|
+
(line 2090)
|
1754
|
+
* gnutls_x509_crt_export2: X509 certificate API.
|
1755
|
+
(line 2117)
|
1756
|
+
* gnutls_x509_crt_get_activation_time: X509 certificate API.
|
1757
|
+
(line 2139)
|
1758
|
+
* gnutls_x509_crt_get_authority_info_access: X509 certificate API.
|
1759
|
+
(line 2151)
|
1760
|
+
* gnutls_x509_crt_get_authority_key_gn_serial: X509 certificate API.
|
1761
|
+
(line 2228)
|
1762
|
+
* gnutls_x509_crt_get_authority_key_id: X509 certificate API.
|
1763
|
+
(line 2267)
|
1764
|
+
* gnutls_x509_crt_get_basic_constraints: X509 certificate API.
|
1765
|
+
(line 2294)
|
1766
|
+
* gnutls_x509_crt_get_ca_status: X509 certificate API.
|
1767
|
+
(line 2322)
|
1768
|
+
* gnutls_x509_crt_get_crl_dist_points: X509 certificate API.
|
1769
|
+
(line 2343)
|
1770
|
+
* gnutls_x509_crt_get_dn: X509 certificate API.
|
1771
|
+
(line 2376)
|
1772
|
+
* gnutls_x509_crt_get_dn2: X.509 distinguished names.
|
1773
|
+
(line 14)
|
1774
|
+
* gnutls_x509_crt_get_dn2 <1>: X509 certificate API.
|
1775
|
+
(line 2398)
|
1776
|
+
* gnutls_x509_crt_get_dn_by_oid: X509 certificate API.
|
1777
|
+
(line 2418)
|
1778
|
+
* gnutls_x509_crt_get_dn_oid: X509 certificate API.
|
1779
|
+
(line 2457)
|
1780
|
+
* gnutls_x509_crt_get_expiration_time: X509 certificate API.
|
1781
|
+
(line 2483)
|
1782
|
+
* gnutls_x509_crt_get_extension_by_oid: X509 certificate API.
|
1783
|
+
(line 2498)
|
1784
|
+
* gnutls_x509_crt_get_extension_data: X509 certificate API.
|
1785
|
+
(line 2526)
|
1786
|
+
* gnutls_x509_crt_get_extension_info: X509 certificate API.
|
1787
|
+
(line 2554)
|
1788
|
+
* gnutls_x509_crt_get_extension_oid: X509 certificate API.
|
1789
|
+
(line 2587)
|
1790
|
+
* gnutls_x509_crt_get_fingerprint: X509 certificate API.
|
1791
|
+
(line 2613)
|
1792
|
+
* gnutls_x509_crt_get_issuer: X509 certificate API.
|
1793
|
+
(line 2636)
|
1794
|
+
* gnutls_x509_crt_get_issuer_alt_name: X509 certificate API.
|
1795
|
+
(line 2654)
|
1796
|
+
* gnutls_x509_crt_get_issuer_alt_name2: X509 certificate API.
|
1797
|
+
(line 2697)
|
1798
|
+
* gnutls_x509_crt_get_issuer_alt_othername_oid: X509 certificate API.
|
1799
|
+
(line 2735)
|
1800
|
+
* gnutls_x509_crt_get_issuer_dn: X509 certificate API.
|
1801
|
+
(line 2775)
|
1802
|
+
* gnutls_x509_crt_get_issuer_dn2: X509 certificate API.
|
1803
|
+
(line 2797)
|
1804
|
+
* gnutls_x509_crt_get_issuer_dn_by_oid: X509 certificate API.
|
1805
|
+
(line 2817)
|
1806
|
+
* gnutls_x509_crt_get_issuer_dn_oid: X509 certificate API.
|
1807
|
+
(line 2856)
|
1808
|
+
* gnutls_x509_crt_get_issuer_unique_id: X509 certificate API.
|
1809
|
+
(line 2882)
|
1810
|
+
* gnutls_x509_crt_get_key_id: X.509 public and private keys.
|
1811
|
+
(line 13)
|
1812
|
+
* gnutls_x509_crt_get_key_id <1>: X509 certificate API.
|
1813
|
+
(line 2906)
|
1814
|
+
* gnutls_x509_crt_get_key_purpose_oid: X509 certificate API.
|
1815
|
+
(line 2933)
|
1816
|
+
* gnutls_x509_crt_get_key_usage: X509 certificate API.
|
1817
|
+
(line 2963)
|
1818
|
+
* gnutls_x509_crt_get_pk_algorithm: X509 certificate API.
|
1819
|
+
(line 2987)
|
1820
|
+
* gnutls_x509_crt_get_pk_dsa_raw: X509 certificate API.
|
1821
|
+
(line 3007)
|
1822
|
+
* gnutls_x509_crt_get_pk_rsa_raw: X509 certificate API.
|
1823
|
+
(line 3030)
|
1824
|
+
* gnutls_x509_crt_get_policy: X509 certificate API.
|
1825
|
+
(line 3048)
|
1826
|
+
* gnutls_x509_crt_get_preferred_hash_algorithm: Compatibility API.
|
1827
|
+
(line 553)
|
1828
|
+
* gnutls_x509_crt_get_private_key_usage_period: X509 certificate API.
|
1829
|
+
(line 3075)
|
1830
|
+
* gnutls_x509_crt_get_proxy: X509 certificate API.
|
1831
|
+
(line 3097)
|
1832
|
+
* gnutls_x509_crt_get_raw_dn: X509 certificate API.
|
1833
|
+
(line 3124)
|
1834
|
+
* gnutls_x509_crt_get_raw_issuer_dn: X509 certificate API.
|
1835
|
+
(line 3141)
|
1836
|
+
* gnutls_x509_crt_get_serial: X509 certificate API.
|
1837
|
+
(line 3157)
|
1838
|
+
* gnutls_x509_crt_get_signature: X509 certificate API.
|
1839
|
+
(line 3177)
|
1840
|
+
* gnutls_x509_crt_get_signature_algorithm: X509 certificate API.
|
1841
|
+
(line 3195)
|
1842
|
+
* gnutls_x509_crt_get_subject: X509 certificate API.
|
1843
|
+
(line 3209)
|
1844
|
+
* gnutls_x509_crt_get_subject_alt_name: X509 certificate API.
|
1845
|
+
(line 3227)
|
1846
|
+
* gnutls_x509_crt_get_subject_alt_name2: X509 certificate API.
|
1847
|
+
(line 3267)
|
1848
|
+
* gnutls_x509_crt_get_subject_alt_othername_oid: X509 certificate API.
|
1849
|
+
(line 3303)
|
1850
|
+
* gnutls_x509_crt_get_subject_key_id: X509 certificate API.
|
1851
|
+
(line 3341)
|
1852
|
+
* gnutls_x509_crt_get_subject_unique_id: X509 certificate API.
|
1853
|
+
(line 3363)
|
1854
|
+
* gnutls_x509_crt_get_verify_algorithm: Compatibility API. (line 580)
|
1855
|
+
* gnutls_x509_crt_get_version: X509 certificate API.
|
1856
|
+
(line 3385)
|
1857
|
+
* gnutls_x509_crt_import: X509 certificate API.
|
1858
|
+
(line 3396)
|
1859
|
+
* gnutls_x509_crt_import_pkcs11: PKCS 11 API. (line 824)
|
1860
|
+
* gnutls_x509_crt_import_pkcs11_url: PKCS 11 API. (line 841)
|
1861
|
+
* gnutls_x509_crt_init: X509 certificate API.
|
1862
|
+
(line 3417)
|
1863
|
+
* gnutls_x509_crt_list_import: X509 certificate API.
|
1864
|
+
(line 3428)
|
1865
|
+
* gnutls_x509_crt_list_import2: X509 certificate API.
|
1866
|
+
(line 3464)
|
1867
|
+
* gnutls_x509_crt_list_import_pkcs11: PKCS 11 API. (line 861)
|
1868
|
+
* gnutls_x509_crt_list_verify: X509 certificate API.
|
1869
|
+
(line 3497)
|
1870
|
+
* gnutls_x509_crt_print: X509 certificate API.
|
1871
|
+
(line 3539)
|
1872
|
+
* gnutls_x509_crt_privkey_sign: Abstract key API. (line 1625)
|
1873
|
+
* gnutls_x509_crt_set_activation_time: X509 certificate API.
|
1874
|
+
(line 3564)
|
1875
|
+
* gnutls_x509_crt_set_authority_info_access: X509 certificate API.
|
1876
|
+
(line 3579)
|
1877
|
+
* gnutls_x509_crt_set_authority_key_id: X509 certificate API.
|
1878
|
+
(line 3605)
|
1879
|
+
* gnutls_x509_crt_set_basic_constraints: X509 certificate API.
|
1880
|
+
(line 3623)
|
1881
|
+
* gnutls_x509_crt_set_ca_status: X509 certificate API.
|
1882
|
+
(line 3643)
|
1883
|
+
* gnutls_x509_crt_set_crl_dist_points: X509 certificate API.
|
1884
|
+
(line 3660)
|
1885
|
+
* gnutls_x509_crt_set_crl_dist_points2: X509 certificate API.
|
1886
|
+
(line 3680)
|
1887
|
+
* gnutls_x509_crt_set_crq: X509 certificate API.
|
1888
|
+
(line 3705)
|
1889
|
+
* gnutls_x509_crt_set_crq_extensions: X509 certificate API.
|
1890
|
+
(line 3721)
|
1891
|
+
* gnutls_x509_crt_set_dn: X509 certificate API.
|
1892
|
+
(line 3738)
|
1893
|
+
* gnutls_x509_crt_set_dn_by_oid: X509 certificate API.
|
1894
|
+
(line 3755)
|
1895
|
+
* gnutls_x509_crt_set_expiration_time: X509 certificate API.
|
1896
|
+
(line 3784)
|
1897
|
+
* gnutls_x509_crt_set_extension_by_oid: X509 certificate API.
|
1898
|
+
(line 3801)
|
1899
|
+
* gnutls_x509_crt_set_issuer_dn: X509 certificate API.
|
1900
|
+
(line 3825)
|
1901
|
+
* gnutls_x509_crt_set_issuer_dn_by_oid: X509 certificate API.
|
1902
|
+
(line 3842)
|
1903
|
+
* gnutls_x509_crt_set_key: X509 certificate API.
|
1904
|
+
(line 3875)
|
1905
|
+
* gnutls_x509_crt_set_key_purpose_oid: X509 certificate API.
|
1906
|
+
(line 3890)
|
1907
|
+
* gnutls_x509_crt_set_key_usage: X509 certificate API.
|
1908
|
+
(line 3910)
|
1909
|
+
* gnutls_x509_crt_set_pin_function: X509 certificate API.
|
1910
|
+
(line 3924)
|
1911
|
+
* gnutls_x509_crt_set_policy: X509 certificate API.
|
1912
|
+
(line 3945)
|
1913
|
+
* gnutls_x509_crt_set_private_key_usage_period: X509 certificate API.
|
1914
|
+
(line 3968)
|
1915
|
+
* gnutls_x509_crt_set_proxy: X509 certificate API.
|
1916
|
+
(line 3985)
|
1917
|
+
* gnutls_x509_crt_set_proxy_dn: X509 certificate API.
|
1918
|
+
(line 4008)
|
1919
|
+
* gnutls_x509_crt_set_pubkey: Operations. (line 168)
|
1920
|
+
* gnutls_x509_crt_set_pubkey <1>: Abstract key API. (line 1650)
|
1921
|
+
* gnutls_x509_crt_set_serial: X509 certificate API.
|
1922
|
+
(line 4034)
|
1923
|
+
* gnutls_x509_crt_set_subject_alternative_name: X509 certificate API.
|
1924
|
+
(line 4081)
|
1925
|
+
* gnutls_x509_crt_set_subject_alt_name: X509 certificate API.
|
1926
|
+
(line 4056)
|
1927
|
+
* gnutls_x509_crt_set_subject_key_id: X509 certificate API.
|
1928
|
+
(line 4103)
|
1929
|
+
* gnutls_x509_crt_set_version: X509 certificate API.
|
1930
|
+
(line 4120)
|
1931
|
+
* gnutls_x509_crt_sign: X509 certificate API.
|
1932
|
+
(line 4142)
|
1933
|
+
* gnutls_x509_crt_sign2: X509 certificate API.
|
1934
|
+
(line 4159)
|
1935
|
+
* gnutls_x509_crt_verify: X509 certificate API.
|
1936
|
+
(line 4184)
|
1937
|
+
* gnutls_x509_crt_verify_data: Compatibility API. (line 603)
|
1938
|
+
* gnutls_x509_crt_verify_hash: Compatibility API. (line 627)
|
1939
|
+
* gnutls_x509_dn_deinit: X509 certificate API.
|
1940
|
+
(line 4208)
|
1941
|
+
* gnutls_x509_dn_export: X509 certificate API.
|
1942
|
+
(line 4219)
|
1943
|
+
* gnutls_x509_dn_export2: X509 certificate API.
|
1944
|
+
(line 4246)
|
1945
|
+
* gnutls_x509_dn_get_rdn_ava: X.509 distinguished names.
|
1946
|
+
(line 50)
|
1947
|
+
* gnutls_x509_dn_get_rdn_ava <1>: X509 certificate API.
|
1948
|
+
(line 4269)
|
1949
|
+
* gnutls_x509_dn_import: X509 certificate API.
|
1950
|
+
(line 4300)
|
1951
|
+
* gnutls_x509_dn_init: X509 certificate API.
|
1952
|
+
(line 4319)
|
1953
|
+
* gnutls_x509_dn_oid_known: X509 certificate API.
|
1954
|
+
(line 4335)
|
1955
|
+
* gnutls_x509_dn_oid_name: X509 certificate API.
|
1956
|
+
(line 4351)
|
1957
|
+
* gnutls_x509_policy_release: X509 certificate API.
|
1958
|
+
(line 4368)
|
1959
|
+
* gnutls_x509_privkey_cpy: X509 certificate API.
|
1960
|
+
(line 4381)
|
1961
|
+
* gnutls_x509_privkey_deinit: X509 certificate API.
|
1962
|
+
(line 4396)
|
1963
|
+
* gnutls_x509_privkey_export: X509 certificate API.
|
1964
|
+
(line 4405)
|
1965
|
+
* gnutls_x509_privkey_export2: X509 certificate API.
|
1966
|
+
(line 4434)
|
1967
|
+
* gnutls_x509_privkey_export2_pkcs8: X509 certificate API.
|
1968
|
+
(line 4459)
|
1969
|
+
* gnutls_x509_privkey_export_dsa_raw: X509 certificate API.
|
1970
|
+
(line 4495)
|
1971
|
+
* gnutls_x509_privkey_export_ecc_raw: X509 certificate API.
|
1972
|
+
(line 4521)
|
1973
|
+
* gnutls_x509_privkey_export_pkcs8: X509 certificate API.
|
1974
|
+
(line 4546)
|
1975
|
+
* gnutls_x509_privkey_export_rsa_raw: X509 certificate API.
|
1976
|
+
(line 4585)
|
1977
|
+
* gnutls_x509_privkey_export_rsa_raw2: X509 certificate API.
|
1978
|
+
(line 4613)
|
1979
|
+
* gnutls_x509_privkey_fix: X509 certificate API.
|
1980
|
+
(line 4648)
|
1981
|
+
* gnutls_x509_privkey_generate: X509 certificate API.
|
1982
|
+
(line 4660)
|
1983
|
+
* gnutls_x509_privkey_get_key_id: X509 certificate API.
|
1984
|
+
(line 4687)
|
1985
|
+
* gnutls_x509_privkey_get_pk_algorithm: X509 certificate API.
|
1986
|
+
(line 4714)
|
1987
|
+
* gnutls_x509_privkey_get_pk_algorithm2: X509 certificate API.
|
1988
|
+
(line 4727)
|
1989
|
+
* gnutls_x509_privkey_import: X509 certificate API.
|
1990
|
+
(line 4742)
|
1991
|
+
* gnutls_x509_privkey_import2: Managing encrypted keys.
|
1992
|
+
(line 51)
|
1993
|
+
* gnutls_x509_privkey_import2 <1>: X509 certificate API.
|
1994
|
+
(line 4764)
|
1995
|
+
* gnutls_x509_privkey_import_dsa_raw: X509 certificate API.
|
1996
|
+
(line 4793)
|
1997
|
+
* gnutls_x509_privkey_import_ecc_raw: X509 certificate API.
|
1998
|
+
(line 4819)
|
1999
|
+
* gnutls_x509_privkey_import_openssl: Managing encrypted keys.
|
2000
|
+
(line 232)
|
2001
|
+
* gnutls_x509_privkey_import_openssl <1>: X509 certificate API.
|
2002
|
+
(line 4845)
|
2003
|
+
* gnutls_x509_privkey_import_pkcs8: X509 certificate API.
|
2004
|
+
(line 4869)
|
2005
|
+
* gnutls_x509_privkey_import_rsa_raw: X509 certificate API.
|
2006
|
+
(line 4906)
|
2007
|
+
* gnutls_x509_privkey_import_rsa_raw2: X509 certificate API.
|
2008
|
+
(line 4935)
|
2009
|
+
* gnutls_x509_privkey_init: X509 certificate API.
|
2010
|
+
(line 4969)
|
2011
|
+
* gnutls_x509_privkey_sec_param: X509 certificate API.
|
2012
|
+
(line 4980)
|
2013
|
+
* gnutls_x509_privkey_sign_data: Compatibility API. (line 651)
|
2014
|
+
* gnutls_x509_privkey_sign_hash: Compatibility API. (line 688)
|
2015
|
+
* gnutls_x509_privkey_verify_params: X509 certificate API.
|
2016
|
+
(line 4995)
|
2017
|
+
* gnutls_x509_rdn_get: X509 certificate API.
|
2018
|
+
(line 5007)
|
2019
|
+
* gnutls_x509_rdn_get_by_oid: X509 certificate API.
|
2020
|
+
(line 5027)
|
2021
|
+
* gnutls_x509_rdn_get_oid: X509 certificate API.
|
2022
|
+
(line 5055)
|
2023
|
+
* gnutls_x509_trust_list_add_cas: Verifying X.509 certificate paths.
|
2024
|
+
(line 9)
|
2025
|
+
* gnutls_x509_trust_list_add_cas <1>: X509 certificate API.
|
2026
|
+
(line 5078)
|
2027
|
+
* gnutls_x509_trust_list_add_crls: Verifying X.509 certificate paths.
|
2028
|
+
(line 58)
|
2029
|
+
* gnutls_x509_trust_list_add_crls <1>: X509 certificate API.
|
2030
|
+
(line 5100)
|
2031
|
+
* gnutls_x509_trust_list_add_named_crt: Verifying X.509 certificate paths.
|
2032
|
+
(line 28)
|
2033
|
+
* gnutls_x509_trust_list_add_named_crt <1>: X509 certificate API.
|
2034
|
+
(line 5131)
|
2035
|
+
* gnutls_x509_trust_list_add_system_trust: Verifying X.509 certificate paths.
|
2036
|
+
(line 194)
|
2037
|
+
* gnutls_x509_trust_list_add_system_trust <1>: X509 certificate API.
|
2038
|
+
(line 5164)
|
2039
|
+
* gnutls_x509_trust_list_add_trust_file: Verifying X.509 certificate paths.
|
2040
|
+
(line 145)
|
2041
|
+
* gnutls_x509_trust_list_add_trust_file <1>: X509 certificate API.
|
2042
|
+
(line 5186)
|
2043
|
+
* gnutls_x509_trust_list_add_trust_mem: Verifying X.509 certificate paths.
|
2044
|
+
(line 170)
|
2045
|
+
* gnutls_x509_trust_list_add_trust_mem <1>: X509 certificate API.
|
2046
|
+
(line 5214)
|
2047
|
+
* gnutls_x509_trust_list_deinit: X509 certificate API.
|
2048
|
+
(line 5241)
|
2049
|
+
* gnutls_x509_trust_list_get_issuer: X509 certificate API.
|
2050
|
+
(line 5255)
|
2051
|
+
* gnutls_x509_trust_list_init: X509 certificate API.
|
2052
|
+
(line 5278)
|
2053
|
+
* gnutls_x509_trust_list_remove_cas: X509 certificate API.
|
2054
|
+
(line 5295)
|
2055
|
+
* gnutls_x509_trust_list_remove_trust_file: X509 certificate API.
|
2056
|
+
(line 5320)
|
2057
|
+
* gnutls_x509_trust_list_remove_trust_mem: X509 certificate API.
|
2058
|
+
(line 5342)
|
2059
|
+
* gnutls_x509_trust_list_verify_crt: Verifying X.509 certificate paths.
|
2060
|
+
(line 86)
|
2061
|
+
* gnutls_x509_trust_list_verify_crt <1>: X509 certificate API.
|
2062
|
+
(line 5363)
|
2063
|
+
* gnutls_x509_trust_list_verify_named_crt: Verifying X.509 certificate paths.
|
2064
|
+
(line 113)
|
2065
|
+
* gnutls_x509_trust_list_verify_named_crt <1>: X509 certificate API.
|
2066
|
+
(line 5393)
|
2067
|
+
* xssl_client_init: High level TLS API. (line 11)
|
2068
|
+
* xssl_cred_deinit: High level TLS API. (line 44)
|
2069
|
+
* xssl_cred_init: High level TLS API. (line 56)
|
2070
|
+
* xssl_deinit: High level TLS API. (line 80)
|
2071
|
+
* xssl_flush: High level TLS API. (line 92)
|
2072
|
+
* xssl_getdelim: High level TLS API. (line 118)
|
2073
|
+
* xssl_get_session: High level TLS API. (line 108)
|
2074
|
+
* xssl_printf: High level TLS API. (line 143)
|
2075
|
+
* xssl_read: High level TLS API. (line 163)
|
2076
|
+
* xssl_server_init: High level TLS API. (line 182)
|
2077
|
+
* xssl_sinit: High level TLS API. (line 208)
|
2078
|
+
* xssl_write: High level TLS API. (line 228)
|
2079
|
+
|
2080
|
+
|
2081
|
+
File: gnutls.info, Node: Concept Index, Prev: Function and Data Index, Up: Top
|
2082
|
+
|
2083
|
+
Concept Index
|
2084
|
+
*************
|
2085
|
+
|
2086
|
+
[index]
|
2087
|
+
* Menu:
|
2088
|
+
|
2089
|
+
* abstract types: Abstract key types. (line 6)
|
2090
|
+
* alert protocol: The TLS Alert Protocol.
|
2091
|
+
(line 6)
|
2092
|
+
* ALPN: Application Layer Protocol Negotiation (ALPN).
|
2093
|
+
(line 6)
|
2094
|
+
* anonymous authentication: Anonymous authentication.
|
2095
|
+
(line 6)
|
2096
|
+
* API reference: API reference. (line 6)
|
2097
|
+
* Application Layer Protocol Negotiation: Application Layer Protocol Negotiation (ALPN).
|
2098
|
+
(line 6)
|
2099
|
+
* authentication methods: Authentication methods.
|
2100
|
+
(line 6)
|
2101
|
+
* bad_record_mac: On Record Padding. (line 6)
|
2102
|
+
* callback functions: Callback functions. (line 6)
|
2103
|
+
* certificate authentication: Certificate authentication.
|
2104
|
+
(line 6)
|
2105
|
+
* certificate authentication <1>: More on certificate authentication.
|
2106
|
+
(line 6)
|
2107
|
+
* certificate requests: PKCS 10 certificate requests.
|
2108
|
+
(line 6)
|
2109
|
+
* certificate revocation lists: PKIX certificate revocation lists.
|
2110
|
+
(line 6)
|
2111
|
+
* certificate status: OCSP certificate status checking.
|
2112
|
+
(line 6)
|
2113
|
+
* Certificate status request: OCSP status request. (line 6)
|
2114
|
+
* Certificate verification: Advanced certificate verification.
|
2115
|
+
(line 6)
|
2116
|
+
* certification: Certification. (line 6)
|
2117
|
+
* certtool: certtool Invocation. (line 6)
|
2118
|
+
* certtool help: certtool Invocation. (line 17)
|
2119
|
+
* channel bindings: Channel Bindings. (line 6)
|
2120
|
+
* ciphersuites: Supported ciphersuites.
|
2121
|
+
(line 6)
|
2122
|
+
* client certificate authentication: Client Authentication.
|
2123
|
+
(line 6)
|
2124
|
+
* compression algorithms: Compression algorithms used in the record layer.
|
2125
|
+
(line 6)
|
2126
|
+
* contributing: Contributing. (line 6)
|
2127
|
+
* CRL: PKIX certificate revocation lists.
|
2128
|
+
(line 6)
|
2129
|
+
* DANE: Verifying a certificate using DANE.
|
2130
|
+
(line 6)
|
2131
|
+
* DANE <1>: Certificate verification.
|
2132
|
+
(line 6)
|
2133
|
+
* danetool: danetool Invocation. (line 6)
|
2134
|
+
* danetool help: danetool Invocation. (line 15)
|
2135
|
+
* deriving keys: Deriving keys for other applications/protocols.
|
2136
|
+
(line 6)
|
2137
|
+
* digital signatures: Digital signatures. (line 6)
|
2138
|
+
* DNSSEC: Verifying a certificate using DANE.
|
2139
|
+
(line 6)
|
2140
|
+
* DNSSEC <1>: Certificate verification.
|
2141
|
+
(line 6)
|
2142
|
+
* download: Downloading and installing.
|
2143
|
+
(line 6)
|
2144
|
+
* Encrypted keys: Managing encrypted keys.
|
2145
|
+
(line 6)
|
2146
|
+
* error codes: Error codes. (line 6)
|
2147
|
+
* example programs: GnuTLS application examples.
|
2148
|
+
(line 6)
|
2149
|
+
* examples: GnuTLS application examples.
|
2150
|
+
(line 6)
|
2151
|
+
* exporting keying material: Deriving keys for other applications/protocols.
|
2152
|
+
(line 6)
|
2153
|
+
* FDL, GNU Free Documentation License: Copying Information. (line 6)
|
2154
|
+
* generating parameters: Parameter generation.
|
2155
|
+
(line 6)
|
2156
|
+
* gnutls-cli: gnutls-cli Invocation.
|
2157
|
+
(line 6)
|
2158
|
+
* gnutls-cli help: gnutls-cli Invocation.
|
2159
|
+
(line 17)
|
2160
|
+
* gnutls-cli-debug: gnutls-cli-debug Invocation.
|
2161
|
+
(line 6)
|
2162
|
+
* gnutls-cli-debug help: gnutls-cli-debug Invocation.
|
2163
|
+
(line 21)
|
2164
|
+
* gnutls-serv: gnutls-serv Invocation.
|
2165
|
+
(line 6)
|
2166
|
+
* gnutls-serv help: gnutls-serv Invocation.
|
2167
|
+
(line 16)
|
2168
|
+
* hacking: Contributing. (line 6)
|
2169
|
+
* handshake protocol: The TLS Handshake Protocol.
|
2170
|
+
(line 6)
|
2171
|
+
* hardware security modules: Smart cards and HSMs.
|
2172
|
+
(line 6)
|
2173
|
+
* hardware tokens: Smart cards and HSMs.
|
2174
|
+
(line 6)
|
2175
|
+
* hash functions: Hash and HMAC functions.
|
2176
|
+
(line 6)
|
2177
|
+
* heartbeat: HeartBeat. (line 6)
|
2178
|
+
* HMAC functions: Hash and HMAC functions.
|
2179
|
+
(line 6)
|
2180
|
+
* installation: Downloading and installing.
|
2181
|
+
(line 6)
|
2182
|
+
* internal architecture: Internal architecture of GnuTLS.
|
2183
|
+
(line 6)
|
2184
|
+
* key extraction: Deriving keys for other applications/protocols.
|
2185
|
+
(line 6)
|
2186
|
+
* Key pinning: Verifying a certificate using trust on first use authentication.
|
2187
|
+
(line 6)
|
2188
|
+
* Key pinning <1>: Certificate verification.
|
2189
|
+
(line 6)
|
2190
|
+
* key sizes: Selecting cryptographic key sizes.
|
2191
|
+
(line 6)
|
2192
|
+
* keying material exporters: Deriving keys for other applications/protocols.
|
2193
|
+
(line 6)
|
2194
|
+
* maximum fragment length: Maximum fragment length negotiation.
|
2195
|
+
(line 6)
|
2196
|
+
* OCSP: OCSP certificate status checking.
|
2197
|
+
(line 6)
|
2198
|
+
* OCSP Functions: OCSP API. (line 6)
|
2199
|
+
* OCSP status request: OCSP status request. (line 6)
|
2200
|
+
* ocsptool: ocsptool Invocation. (line 6)
|
2201
|
+
* ocsptool help: ocsptool Invocation. (line 16)
|
2202
|
+
* Online Certificate Status Protocol: OCSP certificate status checking.
|
2203
|
+
(line 6)
|
2204
|
+
* OpenPGP API: OpenPGP API. (line 6)
|
2205
|
+
* OpenPGP certificates: OpenPGP certificates.
|
2206
|
+
(line 6)
|
2207
|
+
* OpenPGP server: Echo server with OpenPGP authentication.
|
2208
|
+
(line 6)
|
2209
|
+
* OpenSSL: Compatibility with the OpenSSL library.
|
2210
|
+
(line 6)
|
2211
|
+
* OpenSSL encrypted keys: Managing encrypted keys.
|
2212
|
+
(line 226)
|
2213
|
+
* p11tool: p11tool Invocation. (line 6)
|
2214
|
+
* p11tool help: p11tool Invocation. (line 24)
|
2215
|
+
* parameter generation: Parameter generation.
|
2216
|
+
(line 6)
|
2217
|
+
* PCT: On SSL 2 and older protocols.
|
2218
|
+
(line 37)
|
2219
|
+
* PKCS #10: PKCS 10 certificate requests.
|
2220
|
+
(line 6)
|
2221
|
+
* PKCS #11 tokens: Smart cards and HSMs.
|
2222
|
+
(line 6)
|
2223
|
+
* PKCS #12: Managing encrypted keys.
|
2224
|
+
(line 120)
|
2225
|
+
* PKCS #8: Managing encrypted keys.
|
2226
|
+
(line 85)
|
2227
|
+
* Priority strings: Priority Strings. (line 6)
|
2228
|
+
* PSK authentication: Authentication using PSK.
|
2229
|
+
(line 6)
|
2230
|
+
* psktool: psktool Invocation. (line 6)
|
2231
|
+
* psktool help: psktool Invocation. (line 16)
|
2232
|
+
* public key algorithms: Public key algorithms.
|
2233
|
+
(line 6)
|
2234
|
+
* random numbers: Random number generation.
|
2235
|
+
(line 6)
|
2236
|
+
* record padding: On Record Padding. (line 6)
|
2237
|
+
* record protocol: The TLS record protocol.
|
2238
|
+
(line 6)
|
2239
|
+
* renegotiation: Safe renegotiation. (line 6)
|
2240
|
+
* reporting bugs: Bug Reports. (line 6)
|
2241
|
+
* resuming sessions: Resuming Sessions. (line 6)
|
2242
|
+
* resuming sessions <1>: Session resumption. (line 6)
|
2243
|
+
* safe renegotiation: Safe renegotiation. (line 6)
|
2244
|
+
* Secure RTP: SRTP. (line 6)
|
2245
|
+
* server name indication: Server name indication.
|
2246
|
+
(line 6)
|
2247
|
+
* session resumption: Resuming Sessions. (line 6)
|
2248
|
+
* session resumption <1>: Session resumption. (line 6)
|
2249
|
+
* session tickets: Session tickets. (line 6)
|
2250
|
+
* Smart card example: Client using a smart card with TLS.
|
2251
|
+
(line 6)
|
2252
|
+
* smart cards: Smart cards and HSMs.
|
2253
|
+
(line 6)
|
2254
|
+
* SRP authentication: Authentication using SRP.
|
2255
|
+
(line 6)
|
2256
|
+
* srptool: srptool Invocation. (line 6)
|
2257
|
+
* srptool help: srptool Invocation. (line 23)
|
2258
|
+
* SRTP: SRTP. (line 6)
|
2259
|
+
* SSH-style authentication: Verifying a certificate using trust on first use authentication.
|
2260
|
+
(line 6)
|
2261
|
+
* SSH-style authentication <1>: Certificate verification.
|
2262
|
+
(line 6)
|
2263
|
+
* SSL 2: On SSL 2 and older protocols.
|
2264
|
+
(line 6)
|
2265
|
+
* symmetric algorithms: Symmetric algorithms.
|
2266
|
+
(line 6)
|
2267
|
+
* symmetric cryptography: Symmetric algorithms.
|
2268
|
+
(line 6)
|
2269
|
+
* symmetric encryption algorithms: Encryption algorithms used in the record layer.
|
2270
|
+
(line 6)
|
2271
|
+
* thread safety: Thread safety. (line 6)
|
2272
|
+
* tickets: Session tickets. (line 6)
|
2273
|
+
* TLS extensions: TLS Extensions. (line 6)
|
2274
|
+
* TLS extensions <1>: Maximum fragment length negotiation.
|
2275
|
+
(line 6)
|
2276
|
+
* TLS extensions <2>: Server name indication.
|
2277
|
+
(line 6)
|
2278
|
+
* TLS extensions <3>: Session tickets. (line 6)
|
2279
|
+
* TLS extensions <4>: HeartBeat. (line 6)
|
2280
|
+
* TLS layers: TLS layers. (line 6)
|
2281
|
+
* TPM: Trusted Platform Module.
|
2282
|
+
(line 6)
|
2283
|
+
* tpmtool: tpmtool Invocation. (line 6)
|
2284
|
+
* tpmtool help: tpmtool Invocation. (line 15)
|
2285
|
+
* transport layer: The transport layer. (line 6)
|
2286
|
+
* transport protocol: The transport layer. (line 6)
|
2287
|
+
* Trust on first use: Verifying a certificate using trust on first use authentication.
|
2288
|
+
(line 6)
|
2289
|
+
* Trust on first use <1>: Certificate verification.
|
2290
|
+
(line 6)
|
2291
|
+
* trusted platform module: Trusted Platform Module.
|
2292
|
+
(line 6)
|
2293
|
+
* upgrading: Upgrading from previous versions.
|
2294
|
+
(line 6)
|
2295
|
+
* verifying certificate paths: Verifying X.509 certificate paths.
|
2296
|
+
(line 6)
|
2297
|
+
* verifying certificate paths <1>: Verifying a certificate in the context of TLS session.
|
2298
|
+
(line 6)
|
2299
|
+
* verifying certificate paths <2>: Verifying a certificate using trust on first use authentication.
|
2300
|
+
(line 6)
|
2301
|
+
* verifying certificate paths <3>: Verifying a certificate using DANE.
|
2302
|
+
(line 6)
|
2303
|
+
* X.509 certificates: X.509 certificates. (line 6)
|
2304
|
+
* X.509 distinguished name: X.509 distinguished names.
|
2305
|
+
(line 6)
|
2306
|
+
* X.509 Functions: X509 certificate API.
|
2307
|
+
(line 6)
|
2308
|
+
|