From aea08f9a9d872e9213e018e728a8b1442aeba007 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joan=20L=C3=B3pez=20de=20la=20Franca=20Beltran?= Date: Wed, 29 May 2024 16:35:43 +0200 Subject: [PATCH] Fix aliased imports (v7) --- credentials/credentials.go | 1 + crypto/rfc3962/encryption.go | 1 + crypto/rfc8009/encryption.go | 1 + spnego/http.go | 1 + 4 files changed, 4 insertions(+) diff --git a/credentials/credentials.go b/credentials/credentials.go index e9c55953..2d87f84f 100644 --- a/credentials/credentials.go +++ b/credentials/credentials.go @@ -7,6 +7,7 @@ import ( "github.com/grafana/gokrb5/iana/nametype" "github.com/grafana/gokrb5/keytab" "github.com/grafana/gokrb5/types" + uuid "github.com/hashicorp/go-uuid" ) const ( diff --git a/crypto/rfc3962/encryption.go b/crypto/rfc3962/encryption.go index 70302188..c747757f 100644 --- a/crypto/rfc3962/encryption.go +++ b/crypto/rfc3962/encryption.go @@ -8,6 +8,7 @@ import ( "github.com/grafana/gokrb5/crypto/common" "github.com/grafana/gokrb5/crypto/etype" + aescts "gopkg.in/jcmturner/aescts.v1" ) // EncryptData encrypts the data provided using methods specific to the etype provided as defined in RFC 3962. diff --git a/crypto/rfc8009/encryption.go b/crypto/rfc8009/encryption.go index ed0d556d..f6222cc1 100644 --- a/crypto/rfc8009/encryption.go +++ b/crypto/rfc8009/encryption.go @@ -11,6 +11,7 @@ import ( "github.com/grafana/gokrb5/crypto/etype" "github.com/grafana/gokrb5/iana/etypeID" "github.com/grafana/gokrb5/v8/crypto/common" + aescts "gopkg.in/jcmturner/aescts.v1" ) // EncryptData encrypts the data provided using methods specific to the etype provided as defined in RFC 8009. diff --git a/spnego/http.go b/spnego/http.go index 0eb720e3..afcfe5db 100644 --- a/spnego/http.go +++ b/spnego/http.go @@ -20,6 +20,7 @@ import ( "github.com/grafana/gokrb5/krberror" "github.com/grafana/gokrb5/service" "github.com/grafana/gokrb5/types" + goidentity "gopkg.in/jcmturner/goidentity.v3" ) // Client side functionality //