Skip Menu |
 

From: ghudson@mit.edu
Subject: SVN Commit

Introduce gss_export_cred and gss_import_cred

Add gss_export_cred and gss_import_cred mechglue functions to
serialize and unserialize GSSAPI credential handles. Mechanism
implementations and tests will follow.

https://github.com/krb5/krb5/commit/abc6b8ce993c4c8393228ab5a01f26e7c5b251b2
Author: Greg Hudson <ghudson@mit.edu>
Commit: abc6b8ce993c4c8393228ab5a01f26e7c5b251b2
Branch: master
doc/rst_source/krb_appldev/gssapi.rst | 48 +++++++++
src/lib/gssapi/generic/gssapi_ext.h | 12 +++
src/lib/gssapi/libgssapi_krb5.exports | 2 +
src/lib/gssapi/mechglue/Makefile.in | 6 +
src/lib/gssapi/mechglue/g_export_cred.c | 116 ++++++++++++++++++++++
src/lib/gssapi/mechglue/g_imp_cred.c | 164 +++++++++++++++++++++++++++++++
src/lib/gssapi/mechglue/mglueP.h | 14 +++
src/lib/gssapi32.def | 2 +
8 files changed, 364 insertions(+), 0 deletions(-)
From: ghudson@mit.edu
Subject: SVN Commit

Add krb5 support for GSS cred export and import

Using the new internal JSON support to implement serialization and
unserialization of krb5 GSS credentials.

https://github.com/krb5/krb5/commit/42c237dbfdb4316eb2ebf20c4041c48219afd6f5
Author: Greg Hudson <ghudson@mit.edu>
Commit: 42c237dbfdb4316eb2ebf20c4041c48219afd6f5
Branch: master
src/lib/gssapi/krb5/Makefile.in | 6 +
src/lib/gssapi/krb5/export_cred.c | 444 ++++++++++++++++++++++++
src/lib/gssapi/krb5/gssapiP_krb5.h | 12 +
src/lib/gssapi/krb5/gssapi_krb5.c | 2 +
src/lib/gssapi/krb5/import_cred.c | 653 ++++++++++++++++++++++++++++++++++++
5 files changed, 1117 insertions(+), 0 deletions(-)
From: ghudson@mit.edu
Subject: SVN Commit

Add SPNEGO support for GSS cred export and import

https://github.com/krb5/krb5/commit/9c1a6246f1f6f4904e66f9f9eefbdc59e5c8b69f
Author: Greg Hudson <ghudson@mit.edu>
Commit: 9c1a6246f1f6f4904e66f9f9eefbdc59e5c8b69f
Branch: master
src/lib/gssapi/spnego/gssapiP_spnego.h | 14 +++++++++++
src/lib/gssapi/spnego/spnego_mech.c | 38 +++++++++++++++++++++++++++++++-
2 files changed, 51 insertions(+), 1 deletions(-)
From: ghudson@mit.edu
Subject: SVN Commit

Add tests for GSS cred export and import

https://github.com/krb5/krb5/commit/285374977d233bbdfcdfaaf8642dbc554e3058fe
Author: Greg Hudson <ghudson@mit.edu>
Commit: 285374977d233bbdfcdfaaf8642dbc554e3058fe
Branch: master
.gitignore | 1 +
src/tests/gssapi/Makefile.in | 12 ++-
src/tests/gssapi/t_export_cred.c | 214 +++++++++++++++++++++++++++++++++++++
src/tests/gssapi/t_export_cred.py | 50 +++++++++
4 files changed, 273 insertions(+), 4 deletions(-)