Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 202 for Signing (0.63 sec)

  1. platforms/documentation/docs/src/snippets/signing/configurations/groovy/gradle.properties

    /*
    // tag::user-properties[]
    signing.keyId=24875D73
    signing.password=secret
    signing.secretKeyRingFile=/Users/me/.gnupg/secring.gpg
    // end::user-properties[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 160 bytes
    - Viewed (0)
  2. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningClosureBlockIntegrationSpec.groovy

     * limitations under the License.
     */
    
    package org.gradle.plugins.signing
    
    class SigningClosureBlockIntegrationSpec extends SigningIntegrationSpec {
    
        def "use groovy closure when signing"() {
            given:
            buildFile << """
                ${keyInfo.addAsPropertiesScript()}
    
                signing {
                    sign {
                        sign(tasks.jar)
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/signing/configurations/kotlin/gradle.properties

    /*
    // tag::user-properties[]
    signing.keyId=24875D73
    signing.password=secret
    signing.secretKeyRingFile=/Users/me/.gnupg/secring.gpg
    // end::user-properties[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 160 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/signing/in-memory/groovy/build.gradle

    plugins {
        id 'signing'
    }
    
    tasks.register('stuffZip', Zip) {
        archiveBaseName = 'stuff'
        from 'src/stuff'
    }
    
    // tag::signing[]
    signing {
        def signingKey = findProperty("signingKey")
        def signingPassword = findProperty("signingPassword")
        useInMemoryPgpKeys(signingKey, signingPassword)
        sign stuffZip
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 342 bytes
    - Viewed (0)
  5. pkg/kubeapiserver/options/testdata/client.config.json

    {
        "signing": {
            "profiles": {
                "valid": {
                    "expiry": "876000h",
                    "usages": [
                        "signing",
                        "key encipherment",
                        "client auth"
                    ]
                },
                "expired": {
                    "expiry": "1h",
                    "not_before": "1990-12-31T23:59:00Z",
                    "not_after": "1990-12-31T23:59:00Z",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 13:50:20 UTC 2019
    - 613 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/testdata/client.config.json

    {
        "signing": {
            "profiles": {
                "valid": {
                    "expiry": "876000h",
                    "usages": [
                        "signing",
                        "key encipherment",
                        "client auth"
                    ]
                },
                "expired": {
                    "expiry": "1h",
                    "not_before": "1990-12-31T23:59:00Z",
                    "not_after": "1990-12-31T23:59:00Z",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 20:06:38 UTC 2017
    - 613 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/testdata/client.config.json

    {
        "signing": {
            "profiles": {
                "valid": {
                    "expiry": "876000h",
                    "usages": [
                        "signing",
                        "key encipherment",
                        "client auth"
                    ]
                },
                "expired": {
                    "expiry": "1h",
                    "not_before": "1990-12-31T23:59:00Z",
                    "not_after": "1990-12-31T23:59:00Z",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 13:50:20 UTC 2019
    - 613 bytes
    - Viewed (0)
  8. pkg/controller/bootstrap/util_test.go

    		},
    		{
    			"Signing token without signing bit",
    			givenTokenID, givenTokenSecret, "", "garbage", false,
    		},
    		{
    			"Signing token with bad signing bit",
    			givenTokenID, givenTokenSecret, "", "", false,
    		},
    		{
    			"Signing token with no ID",
    			"", givenTokenSecret, "true", "", false,
    		},
    		{
    			"Signing token with no secret",
    			givenTokenID, "", "true", "", false,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 02:18:40 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/testdata/intermediate.config.json

    {
        "signing": {
            "default": {
                "usages": [
                    "digital signature",
                    "cert sign",
                    "crl sign",
                    "signing",
                    "key encipherment",
                    "client auth"
                ],
                "expiry": "876000h",
                "ca_constraint": {
                    "is_ca": true
                }
            }
        }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 20:06:38 UTC 2017
    - 391 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/testdata/intermediate.config.json

    {
        "signing": {
            "default": {
                "usages": [
                    "digital signature",
                    "cert sign",
                    "crl sign",
                    "signing",
                    "key encipherment",
                    "client auth"
                ],
                "expiry": "876000h",
                "ca_constraint": {
                    "is_ca": true
                }
            }
        }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 13:50:20 UTC 2019
    - 391 bytes
    - Viewed (0)
Back to top