Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 100 for PUB (0.03 sec)

  1. cmd/kubeadm/app/phases/certs/doc.go

    		 - etcd/ca.crt
    		 - etcd/ca.key
    		 - etcd/server.crt
    		 - etcd/server.key
    		 - etcd/peer.crt
    		 - etcd/peer.key
    		 - etcd/healthcheck-client.crt
    		 - etcd/healthcheck-client.key
    		 - sa.pub
    		 - sa.key
    		 - front-proxy-ca.crt
    		 - front-proxy-ca.key
    		 - front-proxy-client.crt
    		 - front-proxy-client.key
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 02 09:38:56 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  2. cmd/sftp-server_test.go

    				suite.TearDownSuite(c)
    			},
    		)
    	}
    }
    
    func (s *TestSuiteIAM) SFTPFailedPublicKeyAuthenticationInvalidKey(c *check) {
    	keyBytes, err := os.ReadFile("./testdata/invalid_test_key.pub")
    	if err != nil {
    		c.Fatalf("could not read test key file: %s", err)
    	}
    
    	testKey, _, _, _, err := ssh.ParseAuthorizedKey(keyBytes)
    	if err != nil {
    		c.Fatalf("could not parse test key file: %s", err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. src/crypto/internal/hpke/hpke.go

    	0x0001: func() *hkdfKDF { return &hkdfKDF{crypto.SHA256} },
    }
    
    func SetupSender(kemID, kdfID, aeadID uint16, pub crypto.PublicKey, info []byte) ([]byte, *Sender, error) {
    	suiteID := SuiteID(kemID, kdfID, aeadID)
    
    	kem, err := newDHKem(kemID)
    	if err != nil {
    		return nil, nil, err
    	}
    	pubRecipient, ok := pub.(*ecdh.PublicKey)
    	if !ok {
    		return nil, nil, errors.New("incorrect public key type")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. src/crypto/tls/boring_test.go

    		pkey = parent.key
    	} else {
    		pcert = tmpl
    		pkey = key
    	}
    
    	var pub interface{}
    	switch k := key.(type) {
    	case *rsa.PrivateKey:
    		pub = &k.PublicKey
    	case *ecdsa.PrivateKey:
    		pub = &k.PublicKey
    	default:
    		t.Fatalf("invalid key %T", key)
    	}
    
    	der, err := x509.CreateCertificate(rand.Reader, tmpl, pcert, pub, pkey)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. src/mime/mediatype_test.go

    			m("title", "This is ***fun***")},
    
    		{`message/external-body; access-type=URL; ` +
    			`URL*0="ftp://";` +
    			`URL*1="cs.utk.edu/pub/moore/bulk-mailer/bulk-mailer.tar"`,
    			"message/external-body",
    			m("access-type", "URL",
    				"url", "ftp://cs.utk.edu/pub/moore/bulk-mailer/bulk-mailer.tar")},
    
    		{`application/x-stuff; ` +
    			`title*0*=us-ascii'en'This%20is%20even%20more%20; ` +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:58:37 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  6. src/crypto/rsa/pkcs1v15_test.go

    	p, _ := pem.Decode([]byte(s))
    	k, err := x509.ParsePKCS1PublicKey(p.Bytes)
    	if err != nil {
    		panic(err)
    	}
    	return k
    }
    
    func TestShortPKCS1v15Signature(t *testing.T) {
    	pub := parsePublicKey(`-----BEGIN RSA PUBLIC KEY-----
    MEgCQQCd9BVzo775lkohasxjnefF1nCMcNoibqIWEVDe/K7M2GSoO4zlSQB+gkix
    O3AnTcdHB51iaZpWfxPSnew8yfulAgMBAAE=
    -----END RSA PUBLIC KEY-----`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 00:16:30 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  7. platforms/software/security/src/testFixtures/groovy/org/gradle/security/fixtures/SigningFixtures.groovy

                ring.encode(it)
            }
            def publicKeys = generator.generatePublicKeyRing().publicKeys.collect { it }
            PGPPublicKeyRing pub = new PGPPublicKeyRing(publicKeys)
            PGPPublicKeyRingCollection pubcol = new BcPGPPublicKeyRingCollection(
                [pub]
            )
            new FileOutputStream(pubring).withCloseable {
                pubcol.encode(it)
            }
            directory
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go

    	hwcap2_SVE2 = 1 << 1
    )
    
    // linuxKernelCanEmulateCPUID reports whether we're running
    // on Linux 4.11+. Ideally we'd like to ask the question about
    // whether the current kernel contains
    // https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=77c97b4ee21290f5f083173d957843b615abbff2
    // but the version number will have to do.
    func linuxKernelCanEmulateCPUID() bool {
    	var un syscall.Utsname
    	syscall.Uname(&un)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/crypto/ed25519/ed25519.go

    // PrivateKey, as the latter embeds the former and will expose its methods.
    
    // Equal reports whether pub and x have the same value.
    func (pub PublicKey) Equal(x crypto.PublicKey) bool {
    	xx, ok := x.(PublicKey)
    	if !ok {
    		return false
    	}
    	return subtle.ConstantTimeCompare(pub, xx) == 1
    }
    
    // PrivateKey is the type of Ed25519 private keys. It implements [crypto.Signer].
    type PrivateKey []byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    			expected: []string{
    				"kube-apiserver",
    				"--enable-admission-plugins=NodeRestriction",
    				"--service-cluster-ip-range=bar",
    				"--service-account-key-file=" + filepath.Join(testCertsDir, "sa.pub"),
    				"--service-account-signing-key-file=" + filepath.Join(testCertsDir, "sa.key"),
    				"--service-account-issuer=https://kubernetes.default.svc.cluster.local",
    				"--client-ca-file=" + filepath.Join(testCertsDir, "ca.crt"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top