Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 109 for openjsse (0.19 sec)

  1. security/tools/jwt/samples/gen-jwt.py

            formatter_class=argparse.RawDescriptionHelpFormatter)
        # positional arguments
        parser.add_argument(
            'key',
            help='The path to the key pem file. The key can be generated with openssl command: `openssl genrsa -out key.pem 2048`')
        # optional arguments
        parser.add_argument("-iss", "--iss",
                            default="******@****.***",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/tls/HostnameVerifierTest.kt

        // x509_extensions=x509_extensions
        // [distinguished_name]
        // [req_extensions]
        // [x509_extensions]
        // subjectAltName=DNS:localhost.localdomain,DNS:localhost,IP:127.0.0.1
        //
        // $ openssl req -x509 -nodes -days 36500 -subj '/CN=localhost' -config ./cert.cnf \
        //     -newkey rsa:512 -out cert.pem
        val certificate =
          certificate(
            """
            -----BEGIN CERTIFICATE-----
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  3. pkg/test/echo/common/scheme/scheme.go

    	XDS       Instance = "xds"
    	WebSocket Instance = "ws"
    	TCP       Instance = "tcp"
    	UDP       Instance = "udp"
    	// TLS sends a TLS connection and reports back the properties of the TLS connection
    	// This is similar to `openssl s_client`
    	// Response data is not returned; only information about the TLS handshake.
    	TLS Instance = "tls"
    	// DNS does a DNS query and reports back the results.
    	DNS Instance = "dns"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 17:19:22 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. src/crypto/rsa/pss_test.go

    		}
    	}
    }
    
    // TestPSSOpenSSL ensures that we can verify a PSS signature from OpenSSL with
    // the default options. OpenSSL sets the salt length to be maximal.
    func TestPSSOpenSSL(t *testing.T) {
    	hash := crypto.SHA256
    	h := hash.New()
    	h.Write([]byte("testing"))
    	hashed := h.Sum(nil)
    
    	// Generated with `echo -n testing | openssl dgst -sign key.pem -sigopt rsa_padding_mode:pss -sha256 > sig`
    	sig := []byte{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. docs/features/https.md

     * **Connectivity** to as many hosts as possible. That includes advanced hosts that run the latest versions of [boringssl](https://boringssl.googlesource.com/boringssl/) and less out of date hosts running older versions of [OpenSSL](https://www.openssl.org/).
     * **Security** of the connection. This includes verification of the remote webserver with certificates and the privacy of data exchanged with strong ciphers.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  6. src/cmd/internal/notsha256/sha256block_ppc64x.s

    // # ====================================================================
    // # Written by Andy Polyakov <appro@openssl.org> for the OpenSSL
    // # project. The module is, however, dual licensed under OpenSSL and
    // # CRYPTOGAMS licenses depending on where you obtain it. For further
    // # details see http://www.openssl.org/~appro/cryptogams/.
    // # ====================================================================
    
    #include "textflag.h"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  7. cluster/gce/windows/configure.ps1

      Set-WindowsTCPParameters
    
      Set-PrerequisiteOptions
    
      if (Test-IsTestCluster $kube_env) {
        Log-Output 'Test cluster detected, installing OpenSSH.'
        FetchAndImport-ModuleFromMetadata 'install-ssh-psm1' 'install-ssh.psm1'
        InstallAndStart-OpenSsh
        StartProcess-WriteSshKeys
      }
    
      Create-Directories
      Download-HelperScripts
    
      DownloadAndInstall-Crictl
      Configure-Crictl
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 28 21:28:26 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. docs/site-replication/run-replication-with-checksum-header.sh

    # Create bucket in source cluster
    echo "Create bucket in source MinIO instance"
    ./mc mb minio1/test-bucket --insecure
    
    # Load objects to source site
    echo "Loading objects to source MinIO instance"
    OBJ_CHKSUM=$(openssl dgst -sha256 -binary </tmp/data/obj | base64)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 08 16:24:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. src/crypto/x509/name_constraints_test.go

    					t.Error("unexpectedly succeeded against OpenSSL")
    					if debugOpenSSLFailure {
    						return
    					}
    				}
    
    				if err != nil {
    					if _, ok := err.(*exec.ExitError); !ok {
    						t.Errorf("OpenSSL failed to run: %s", err)
    					} else if len(test.expectedError) == 0 {
    						t.Errorf("OpenSSL unexpectedly failed: %v", output)
    						if debugOpenSSLFailure {
    							return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. src/crypto/sha256/sha256block_ppc64x.s

    // # ====================================================================
    // # Written by Andy Polyakov <appro@openssl.org> for the OpenSSL
    // # project. The module is, however, dual licensed under OpenSSL and
    // # CRYPTOGAMS licenses depending on where you obtain it. For further
    // # details see http://www.openssl.org/~appro/cryptogams/.
    // # ====================================================================
    
    #include "textflag.h"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top