Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 929 for authn (0.04 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    		}
    	}
    
    	authn := &jwtAuthenticator{
    		jwtAuthenticator: opts.JWTAuthenticator,
    		resolver:         resolver,
    		celMapper:        celMapper,
    		requiredClaims:   requiredClaims,
    	}
    	authn.healthCheck.Store(&errorHolder{
    		err: fmt.Errorf("oidc: authenticator for issuer %q is not initialized", authn.jwtAuthenticator.Issuer.URL),
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  2. internal/config/identity/plugin/config.go

    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/env"
    	xnet "github.com/minio/pkg/v3/net"
    )
    
    func authNLogIf(ctx context.Context, err error) {
    	logger.LogIf(ctx, "authN", err)
    }
    
    // Authentication Plugin config and env variables
    const (
    	URL        = "url"
    	AuthToken  = "auth_token"
    	RolePolicy = "role_policy"
    	RoleID     = "role_id"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/plugin/authn/util_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package authn
    
    import (
    	"reflect"
    	"testing"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    )
    
    func TestTrustDomainsForValidation(t *testing.T) {
    	tests := []struct {
    		name       string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 16:11:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. tools/docker-builder/builder/crane.go

    // limitations under the License.
    
    package builder
    
    import (
    	"bytes"
    	"compress/gzip"
    	"context"
    	"fmt"
    	"io"
    	"strings"
    	"sync"
    	"time"
    
    	"github.com/google/go-containerregistry/pkg/authn"
    	"github.com/google/go-containerregistry/pkg/name"
    	"github.com/google/go-containerregistry/pkg/registry"
    	v1 "github.com/google/go-containerregistry/pkg/v1"
    	"github.com/google/go-containerregistry/pkg/v1/empty"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_waypoint.go

    		authzCustomBuilder = authz.NewBuilderForService(authz.Custom, lb.push, lb.node, true, svc)
    	}
    
    	// TODO: consider dedicated listener class for waypoint filters
    	cls := istionetworking.ListenerClassSidecarInbound
    	wasm := lb.push.WasmPluginsByListenerInfo(lb.node, model.WasmPluginListenerInfo{
    		Class:   cls,
    		Service: svc,
    	}, model.WasmPluginTypeHTTP)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/extension/wasmplugin_test.go

    	}{
    		{
    			name:        "empty",
    			wasmPlugins: []*model.WasmPluginWrapper{},
    			names:       []string{someAuthNFilter.Name},
    			expectedECs: []*core.TypedExtensionConfig{},
    		},
    		{
    			name: "authn",
    			wasmPlugins: []*model.WasmPluginWrapper{
    				someAuthNFilter,
    				someAuthZFilter,
    			},
    			names: []string{someAuthNFilter.Namespace + "." + someAuthNFilter.Name},
    			expectedECs: []*core.TypedExtensionConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. pkg/wasm/imagefetcher_test.go

    	dockerjson := fmt.Sprintf(`{"auths": {"test.io": {"auth": %q}}}`, encode("foo", "bar"))
    	keyChain := wasmKeyChain{data: []byte(dockerjson)}
    	testRegistry, _ := name.NewRegistry("test.io", name.WeakValidation)
    	keyChain.Resolve(testRegistry)
    	auth, err := keyChain.Resolve(testRegistry)
    	if err != nil {
    		t.Fatalf("Resolve() = %v", err)
    	}
    	got, err := auth.Authorization()
    	if err != nil {
    		t.Fatal(err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 05 04:15:17 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. tests/integration/security/external_ca/main_test.go

    )
    
    func TestMain(m *testing.M) {
    	// Integration test for testing interoperability with external CA's that are integrated with K8s CSR API
    	// Refer to https://kubernetes.io/docs/reference/access-authn-authz/certificate-signing-requests/
    	// nolint: staticcheck
    	var certs []csrctrl.SignerRootCert
    	framework.NewSuite(m).
    		Label(label.CustomSetup).
    		RequireMinVersion(19).
    		Setup(func(ctx resource.Context) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 22 14:18:21 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. CODEOWNERS

    /pilot/pkg/config/                                               @istio/wg-networking-maintainers
    /pilot/pkg/networking/plugin/authn/                              @istio/wg-security-maintainers
    /pilot/pkg/networking/plugin/authz/                              @istio/wg-security-maintainers
    /pilot/pkg/serviceregistry/                                      @istio/wg-networking-maintainers-pilot
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 19:22:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/extension/wasmplugin.go

    		Ads: &core.AggregatedConfigSource{},
    	},
    	ResourceApiVersion: core.ApiVersion_V3,
    	// we block proxy init until WasmPlugins are loaded because they might be
    	// critical for security (e.g. authn/authz)
    	InitialFetchTimeout: &durationpb.Duration{Seconds: 0},
    }
    
    // PopAppendHTTP takes a list of filters and a set of WASM plugins, keyed by phase. It will remove all
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top