Decrypt the krb ticket and send authentication data out.

This commit is contained in:
Julien Wallior 2017-03-15 12:11:10 -04:00
parent 1f777b57b8
commit 98a430c1eb
9 changed files with 137 additions and 4 deletions

View file

@ -4222,6 +4222,7 @@ export {
module KRB;
export {
const keytab = "/etc/krb5.keytab" &redef;
## KDC Options. See :rfc:`4120`
type KRB::KDC_Options: record {
## The ticket to be issued should have its forwardable flag set.
@ -4344,6 +4345,8 @@ export {
cipher : count;
## Cipher text of the ticket
ciphertext : string &optional;
## Authentication info
authenticationinfo: string &optional;
};
type KRB::Ticket_Vector: vector of KRB::Ticket;