Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 142 for openjsse (0.13 sec)

  1. src/crypto/tls/handshake_server_test.go

    	test := &serverTest{
    		name:    "RSA-RC4",
    		command: []string{"openssl", "s_client", "-no_ticket", "-cipher", "RC4-SHA"},
    	}
    	runServerTestTLS10(t, test)
    	runServerTestTLS11(t, test)
    	runServerTestTLS12(t, test)
    }
    
    func TestHandshakeServerRSA3DES(t *testing.T) {
    	test := &serverTest{
    		name:    "RSA-3DES",
    		command: []string{"openssl", "s_client", "-no_ticket", "-cipher", "DES-CBC3-SHA"},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. docs/ftp/README.md

    `--sftp=cipher-algos=...` specifies the allowed cipher algorithms. 
    If unspecified then a sensible default is used.
    
    Valid values: 
    ```
    aes128-ctr
    aes192-ctr
    aes256-ctr
    aes128-gcm@openssh.com
    aes256-gcm@openssh.com
    chacha20-poly1305@openssh.com
    arcfour256
    arcfour128
    arcfour
    aes128-cbc
    3des-cbc
    ```
    
    `--sftp=mac-algos=...` specifies a default set of MAC algorithms in preference order.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    -----END CERTIFICATE-----
    `
    
    	/*
    
    	   > selfSignedCert
    
    	   openssl genrsa -out selfsign.key 1024 && \
    	   openssl req -new -x509 -days 36500 \
    	   	-sha1 -key selfsign.key  \
    	   	-out selfsign.crt \
    	   	-subj "/C=US/ST=My State/L=My City/O=My Org/O=My Unit/CN=self1" \
    	   	&& \
    	   openssl x509 -in selfsign.crt -text
    
    
    	   > output
    
    	   Certificate:
    	       Data:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/devel.packages.txt

    clang-17
    clang-format-12
    lld-17
    colordiff
    curl
    ffmpeg
    gdb
    git
    jq
    less
    libcurl3-dev
    libcurl4-openssl-dev
    libfreetype6-dev
    libhdf5-serial-dev
    libomp-17-dev
    libssl-dev
    libtool
    libxml2-dev
    libxslt1-dev
    libzmq3-dev
    mlocate
    moreutils
    openjdk-11-jdk
    openjdk-11-jre-headless
    openssl
    patchelf
    pkg-config
    python3-dev
    python3-setuptools
    rsync
    software-properties-common
    sudo
    swig
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:23:28 UTC 2024
    - 485 bytes
    - Viewed (0)
  5. pilot/pkg/model/test/testcert/generate.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    openssl req -new -newkey rsa:4096 -x509 -sha256 \
            -days 3650 -nodes -out cert.pem -keyout key.pem \
            -subj "/C=US/ST=Denial/L=Ether/O=Dis/CN=localhost/SAN=localhost" \
            -addext "subjectAltName = DNS:localhost"
    
    openssl req -new -newkey rsa:4096 -x509 -sha256 \
            -days 3650 -nodes -out cert2.pem -keyout key2.pem \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 12 05:58:58 UTC 2020
    - 1K bytes
    - Viewed (0)
  6. cluster/gce/manifests/kube-controller-manager.manifest

            "readOnly": true},
            { "name": "varssl",
            "mountPath": "/var/ssl",
            "readOnly": true},
            { "name": "etcopenssl",
            "mountPath": "/etc/openssl",
            "readOnly": true},
            { "name": "etcpki",
            "mountPath": "/etc/pki",
            "readOnly": true}
          ]
        }
    ],
    "volumes":[
      {{cloud_config_volume}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 10 20:49:36 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  7. src/crypto/x509/sec1_test.go

    package x509
    
    import (
    	"bytes"
    	"encoding/hex"
    	"strings"
    	"testing"
    )
    
    var ecKeyTests = []struct {
    	derHex            string
    	shouldReserialize bool
    }{
    	// Generated using:
    	//   openssl ecparam -genkey -name secp384r1 -outform PEM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 27 19:34:12 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  8. src/crypto/x509/root_unix.go

    		if firstErr == nil && !os.IsNotExist(err) {
    			firstErr = err
    		}
    	}
    
    	dirs := certDirectories
    	if d := os.Getenv(certDirEnv); d != "" {
    		// OpenSSL and BoringSSL both use ":" as the SSL_CERT_DIR separator.
    		// See:
    		//  * https://golang.org/issue/35325
    		//  * https://www.openssl.org/docs/man1.0.2/man1/c_rehash.html
    		dirs = strings.Split(d, ":")
    	}
    
    	for _, directory := range dirs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:54:07 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/pubkeypin/pubkeypin_test.go

    limitations under the License.
    */
    
    package pubkeypin
    
    import (
    	"crypto/x509"
    	"encoding/pem"
    	"strings"
    	"testing"
    )
    
    // testCertPEM is a simple self-signed test certificate issued with the openssl CLI:
    // openssl req -new -newkey rsa:2048 -days 36500 -nodes -x509 -keyout /dev/null -out test.crt
    const testCertPEM = `
    -----BEGIN CERTIFICATE-----
    MIIDRDCCAiygAwIBAgIJAJgVaCXvC6HkMA0GCSqGSIb3DQEBBQUAMB8xHTAbBgNV
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 13 11:38:39 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_test.go

    }
    
    // checkOpenSSLVersion ensures that the version of OpenSSL looks reasonable
    // before updating the test data.
    func checkOpenSSLVersion() error {
    	if !*update {
    		return nil
    	}
    
    	openssl := exec.Command("openssl", "version")
    	output, err := openssl.CombinedOutput()
    	if err != nil {
    		return err
    	}
    
    	version := string(output)
    	if strings.HasPrefix(version, "OpenSSL 1.1.1") {
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top