Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 109 for openjsse (0.12 sec)

  1. okhttp-tls/src/test/java/okhttp3/tls/HeldCertificateTest.kt

          .isEqualTo("CN=cash.app,OU=engineering")
      }
    
      @Test
      fun decodeRsa512() {
        // The certificate + private key below was generated with OpenSSL. Never generate certificates
        // with MD5 or 512-bit RSA; that's insecure!
        //
        // openssl req \
        //   -x509 \
        //   -md5 \
        //   -nodes \
        //   -days 1 \
        //   -newkey rsa:512 \
        //   -keyout privateKey.key \
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  2. src/crypto/tls/cache.go

    // rather than specific structures. Since we only care about x509.Certificates,
    // certCache is implemented as a specific cache, rather than a generic one.
    //
    // See https://boringssl.googlesource.com/boringssl/+/master/include/openssl/pool.h
    // and https://boringssl.googlesource.com/boringssl/+/master/crypto/pool/pool.c
    // for the BoringSSL reference.
    type certCache struct {
    	sync.Map
    }
    
    var globalCertCache = new(certCache)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:56:41 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. samples/security/spire/README.md

      '.dynamicActiveSecrets[0].secret.tlsCertificate.certificateChain.inlineBytes' | base64 --decode > chain.pem
      ```
    
    1. Inspect the certificate content and verify that SPIRE was the issuer:
    
      ```bash
      $ openssl x509 -in chain.pem -text | grep SPIRE
          Subject: C = US, O = SPIRE, CN = sleep-5d6df95bbf-kt2tt
      ```
    
    ## Tear down
    
    1.  Delete all deployments and configurations for the SPIRE Agent, Server, and namespace:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. src/crypto/x509/sec1.go

    		}
    		privKey.PrivateKey = privKey.PrivateKey[1:]
    	}
    
    	// Some private keys remove all leading zeros, this is also invalid
    	// according to [SEC1] but since OpenSSL used to do this, we ignore
    	// this too.
    	copy(privateKey[len(privateKey)-len(privKey.PrivateKey):], privKey.PrivateKey)
    	priv.X, priv.Y = curve.ScalarBaseMult(privateKey)
    
    	return priv, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. hack/update-openapi-spec.sh

    SERVICE_ACCOUNT_KEY=${SERVICE_ACCOUNT_KEY:-${TMP_DIR}/kube-serviceaccount.key}
    # Generate ServiceAccount key if needed
    if [[ ! -f "${SERVICE_ACCOUNT_KEY}" ]]; then
      mkdir -p "$(dirname "${SERVICE_ACCOUNT_KEY}")"
      openssl genrsa -out "${SERVICE_ACCOUNT_KEY}" 2048 2>/dev/null
    fi
    
    # Start kube-apiserver
    # omit enums from static openapi snapshots used to generate clients until #109177 is resolved
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. pkg/serviceaccount/jwt_test.go

    -----END RSA PRIVATE KEY-----
    `
    
    // openssl ecparam -name prime256v1 -genkey -noout -out ecdsa256.pem
    // Fake value for testing.
    const ecdsaPrivateKey = `-----BEGIN EC PRIVATE KEY-----
    MHcCAQEEIEZmTmUhuanLjPA2CLquXivuwBDHTt5XYwgIr/kA1LtRoAoGCCqGSM49
    AwEHoUQDQgAEH6cuzP8XuD5wal6wf9M6xDljTOPLX2i8uIp/C/ASqiIGUeeKQtX0
    /IR3qCXyThP/dbCiHrF3v1cuhBOHY8CLVg==
    -----END EC PRIVATE KEY-----`
    
    // openssl ec -in ecdsa256.pem -pubout -out ecdsa256pub.pem
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. src/crypto/internal/boring/build-goboring.sh

    x86_64)  export GOARCH=amd64 ;;
    aarch64) export GOARCH=arm64 ;;
    *)
    	echo 'unknown uname -m:' $(uname -m) >&2
    	exit 2
    esac
    
    export CGO_ENABLED=0
    
    # Build and run test C++ program to make sure goboringcrypto.h matches openssl/*.h.
    # Also collect list of checked symbols in syms.txt
    set -e
    cd /boring/godriver
    cat >goboringcrypto.cc <<'EOF'
    #include <cassert>
    #include "goboringcrypto0.h"
    #include "goboringcrypto1.h"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. hack/make-rules/test-cmd.sh

    SERVICE_ACCOUNT_KEY=${SERVICE_ACCOUNT_KEY:-/tmp/kube-serviceaccount.key}
    # Generate ServiceAccount key if needed
    if [[ ! -f "${SERVICE_ACCOUNT_KEY}" ]]; then
      mkdir -p "$(dirname "${SERVICE_ACCOUNT_KEY}")"
      openssl genrsa -out "${SERVICE_ACCOUNT_KEY}" 2048 2>/dev/null
    fi
    
    # Runs kube-apiserver
    #
    # Exports:
    #   APISERVER_PID
    function run_kube_apiserver() {
      kube::log::status "Building kube-apiserver"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. src/crypto/aes/gcm_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/.
    // # ====================================================================
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. README.md

    [![Build Status](https://github.com/google/guava/workflows/CI/badge.svg?branch=master)](https://github.com/google/guava/actions)
    [![OpenSSF Best Practices](https://bestpractices.coreinfrastructure.org/projects/7197/badge)](https://bestpractices.coreinfrastructure.org/projects/7197)
    
    
    
    Guava is a set of core Java libraries from Google that includes new collection
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top