session.go 258 B

123456789101112131415
  1. package client
  2. import (
  3. "github.com/jcmturner/gokrb5/types"
  4. "time"
  5. )
  6. type session struct {
  7. AuthTime time.Time
  8. EndTime time.Time
  9. RenewTill time.Time
  10. //TODO Need to check if this is the TGT
  11. TGT types.Ticket
  12. SessionKey types.EncryptionKey
  13. }