Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 211 for genrsa (0.95 sec)

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

        # 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="******@****.***",
                            help="iss claim. Default is `******@****.***`")
    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. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    	"time"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/apiserver/pkg/authentication/user"
    )
    
    const (
    
    	/*
    
    	   > rootCACert
    
    	   openssl genrsa -out root.key 1024 && \
    	   openssl rsa -in ./root.key -outform PEM -pubout -out ./root.pub && \
    	   CONFIG="[ v3_req ]\n" && \
    	   CONFIG="${CONFIG}subjectKeyIdentifier=hash\n" && \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. 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)
  4. src/crypto/x509/pem_decrypt_test.go

    nClgYp4Yh2JZ1Znbu7IoQMCEJCjwKDECIGd8Dzm5tViTkUW6Hs3Tlf73nNs65duF
    aRnSglss8I3pAiEAonEnKruawgD8RavDFR+fUgmQiPz4FnGGeVgfwpGG1JECIBYq
    PXHYtPqxQIbD2pScR5qum7iGUh11lEUPkmt+2uqS`,
    	},
    	{
    		// generated with:
    		// openssl genrsa -aes128 -passout pass:asdf -out server.orig.key 128
    		kind:     PEMCipherAES128,
    		password: []byte("asdf"),
    		pemData: []byte(testingKey(`
    -----BEGIN RSA TESTING KEY-----
    Proc-Type: 4,ENCRYPTED
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 20:03:55 UTC 2019
    - 8.9K bytes
    - Viewed (0)
  5. 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)
  6. hack/local-up-cluster.sh

        # 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
    }
    
    function generate_certs {
        # Create CA signers
        if [[ "${ENABLE_SINGLE_CA_SIGNER:-}" = true ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. src/crypto/internal/boring/goboringcrypto.h

    int _goboringcrypto_RSA_verify_raw(GO_RSA*, size_t *out_len, uint8_t *out, size_t max_out, const uint8_t *in, size_t in_len, int padding);
    unsigned _goboringcrypto_RSA_size(const GO_RSA*);
    int _goboringcrypto_RSA_is_opaque(const GO_RSA*);
    int _goboringcrypto_RSA_check_key(const GO_RSA*);
    int _goboringcrypto_RSA_check_fips(GO_RSA*);
    GO_RSA* _goboringcrypto_RSA_public_key_from_bytes(const uint8_t*, size_t);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug_lines_test.go

    	"strings"
    	"testing"
    )
    
    // Matches lines in genssa output that are marked "isstmt", and the parenthesized plus-prefixed line number is a submatch
    var asmLine *regexp.Regexp = regexp.MustCompile(`^\s[vb]\d+\s+\d+\s\(\+(\d+)\)`)
    
    // this matches e.g.                            `   v123456789   000007   (+9876654310) MOVUPS	X15, ""..autotmp_2-32(SP)`
    
    // Matches lines in genssa output that describe an inlined file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:24:52 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. security/pkg/pki/util/generate_csr_test.go

    		csrOptions CertOptions
    		err        error
    	}{
    		"GenCSR with RSA": {
    			csrOptions: CertOptions{
    				Host:       "test_ca.com",
    				Org:        "MyOrg",
    				RSAKeySize: 2048,
    			},
    		},
    		"GenCSR with EC": {
    			csrOptions: CertOptions{
    				Host:     "test_ca.com",
    				Org:      "MyOrg",
    				ECSigAlg: EcdsaSigAlg,
    			},
    		},
    		"GenCSR with EC errors due to invalid signature algorithm": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 25 09:40:13 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

         * The services are closed when the Gradle user home directory changes.
         *
         * <p>{@link Global} and parent scope services are visible to {@link UserHome} scope services, but not vice versa.</p>
         */
        interface UserHome extends Global {}
    
        /**
         * These services are reused across build sessions.
         * <p>
         * Generally, one regular Gradle invocation is conceptually a session.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top