Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 250 for Authenticators (0.2 sec)

  1. security/pkg/server/ca/authenticate/cert_authenticator.go

    )
    
    const (
    	ClientCertAuthenticatorType = "ClientCertAuthenticator"
    )
    
    // ClientCertAuthenticator extracts identities from client certificate.
    type ClientCertAuthenticator struct{}
    
    var _ security.Authenticator = &ClientCertAuthenticator{}
    
    func (cca *ClientCertAuthenticator) AuthenticatorType() string {
    	return ClientCertAuthenticatorType
    }
    
    // Authenticate extracts identities from presented client certificates. This
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 19 02:12:12 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. cmd/kube-scheduler/app/server.go

    	"net/http"
    	"os"
    	goruntime "runtime"
    
    	"github.com/spf13/cobra"
    
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	genericapifilters "k8s.io/apiserver/pkg/endpoints/filters"
    	apirequest "k8s.io/apiserver/pkg/endpoints/request"
    	"k8s.io/apiserver/pkg/server"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. pkg/serviceaccount/jwt_test.go

    	"fmt"
    	"reflect"
    	"strings"
    	"testing"
    
    	jose "gopkg.in/square/go-jose.v2"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/kubernetes/fake"
    	typedv1core "k8s.io/client-go/kubernetes/typed/core/v1"
    	v1listers "k8s.io/client-go/listers/core/v1"
    	"k8s.io/client-go/tools/cache"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    		if !testCase.Insecure {
    			req.TLS = &tls.ConnectionState{PeerCertificates: testCase.Certs}
    		}
    
    		authCall := false
    		auth := authenticator.RequestFunc(func(req *http.Request) (*authenticator.Response, bool, error) {
    			authCall = true
    			return &authenticator.Response{User: &user.DefaultInfo{Name: "innerauth"}}, true, nil
    		})
    
    		a := NewVerifier(testCase.Opts, auth, testCase.AllowedCNs)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. security/pkg/server/ca/authenticate/xfcc_authenticator.go

    	"istio.io/istio/pkg/security"
    )
    
    const (
    	XfccAuthenticatorType = "XfccAuthenticator"
    )
    
    // XfccAuthenticator extracts identities from Xfcc header.
    type XfccAuthenticator struct{}
    
    var _ security.Authenticator = &XfccAuthenticator{}
    
    func (xff XfccAuthenticator) AuthenticatorType() string {
    	return XfccAuthenticatorType
    }
    
    // Authenticate extracts identities from Xfcc Header.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. tests/fuzz/security_fuzzer.go

    	kcb := util.NewKeyCertBundleFromPem(nil, nil, certChainBytes, rootCertBytes)
    
    	mockCa := &mockca.FakeCA{
    		SignedCert:    signedCert,
    		KeyCertBundle: kcb,
    	}
    	server, err := ca.New(mockCa, 1, []security.Authenticator{auth}, nil)
    	if err != nil {
    		return 0
    	}
    	csrString, err := f.GetString()
    	if err != nil {
    		return 0
    	}
    	request := &pb.IstioCertificateRequest{Csr: csrString}
    	ctx := context.Background()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. docs/changelogs/upgrading_to_okhttp_4.md

       serverSocketFactory
     * **MultipartBody.Part**: body, headers
     * **MultipartBody.**: boundary, parts, size, type
     * **OkHttpClient**: authenticator, cache, callTimeoutMillis, certificatePinner,
       connectTimeoutMillis, connectionPool, connectionSpecs, cookieJar, dispatcher, dns,
       eventListenerFactory, followRedirects, followSslRedirects, hostnameVerifier, interceptors,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  8. pkg/registry/core/serviceaccount/storage/token.go

    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	"k8s.io/apiserver/pkg/audit"
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/apiserver/pkg/authentication/serviceaccount"
    	genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
    	"k8s.io/apiserver/pkg/registry/rest"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/connection/RealRoutePlanner.kt

       * This avoids sending potentially sensitive data like HTTP cookies to the proxy unencrypted.
       *
       * In order to support preemptive authentication we pass a fake "Auth Failed" response to the
       * authenticator. This gives the authenticator the option to customize the CONNECT request. It can
       * decline to do so by returning null, in which case OkHttp will use it as-is.
       */
      @Throws(IOException::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/NtlmAuthenticator.groovy

        static final String NTLM_AUTH_METHOD = 'NTLM'
    
        // There is absolutely no doubt that no one should ever on a map like that
        // and that a proper implementation of an NTLM authenticator shouldn't do this
        // but those are test fixtures and I couldn't find a better way to do this
        // without deeper understanding of the Jetty APIs. Feel free to provide an
        // alternate solution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top