Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 411 for Signing (0.27 sec)

  1. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningSamplesSpec.groovy

        @Rule
        public final Sample sample = new Sample(testDirectoryProvider)
    
        def setup() {
            using m2
        }
    
        @UsesSample('signing/conditional')
        def "conditional signing with dsl #dsl"() {
            given:
            inDirectory(sample.dir.file(dsl))
    
            when:
            run "publish"
    
            then:
            skipped(":signMainPublication")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningDistributionsIntegrationSpec.groovy

     */
    
    package org.gradle.plugins.signing
    
    
    import spock.lang.Issue
    
    class SigningDistributionsIntegrationSpec extends SigningIntegrationSpec {
    
        @Issue("https://github.com/gradle/gradle/issues/7580")
        def "can sign a distribution zip when distribution plugin is applied after signing is configured"() {
            given:
            buildFile << """
                signing {
                    ${signingConfiguration()}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/software/signing/src/testFixtures/groovy/org/gradle/test/fixtures/GpgCmdFixture.groovy

            GpgCmdAndVersion client = getAvailableGpg()
            assert client
            properties.put('signing.gnupg.executable', client.executable)
            properties.put('signing.gnupg.useLegacyGpg', (client.version == 1).toString())
            properties.put('signing.gnupg.homeDir', gpgHomeSymlink.toAbsolutePath().toString())
            properties.remove('signing.gnupg.optionsFile')
            properties.store(buildDir.file('gradle.properties').newOutputStream(), '')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/InMemoryPgpSignatoryProviderIntegrationSpec.groovy

     * limitations under the License.
     */
    package org.gradle.plugins.signing
    
    import spock.lang.Issue
    
    class InMemoryPgpSignatoryProviderIntegrationSpec extends SigningIntegrationSpec {
    
        def "signs with default signatory"() {
            given:
            buildFile << """
                signing {
                    useInMemoryPgpKeys(project.property('secretKey'), project.property('password'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 12K bytes
    - Viewed (0)
  5. platforms/software/security/src/main/java/org/gradle/plugins/signing/type/pgp/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * PGP signing support.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 694 bytes
    - Viewed (0)
  6. platforms/software/signing/src/main/java/org/gradle/plugins/signing/signatory/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * The signing plugin signatory types.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 710 bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    				"--root-ca-file=" + filepath.Join(testCertsDir, "ca.crt"),
    				"--service-account-private-key-file=" + filepath.Join(testCertsDir, "sa.key"),
    				"--cluster-signing-cert-file=" + filepath.Join(testCertsDir, "ca.crt"),
    				"--cluster-signing-key-file=" + filepath.Join(testCertsDir, "ca.key"),
    				"--use-service-account-credentials=true",
    				"--controllers=*,bootstrapsigner,tokencleaner",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/bootstraptoken/v1/utils_test.go

    				Token:  &BootstrapTokenString{ID: "abcdef", Secret: "abcdef0123456789"},
    				Usages: []string{"authentication", "signing"},
    			},
    			map[string][]byte{
    				"token-id":                       []byte("abcdef"),
    				"token-secret":                   []byte("abcdef0123456789"),
    				"usage-bootstrap-signing":        []byte("true"),
    				"usage-bootstrap-authentication": []byte("true"),
    			},
    		},
    		{
    			"adds groups",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  9. platforms/software/signing/src/main/java/org/gradle/plugins/signing/signatory/internal/pgp/InMemoryPgpSignatoryProvider.java

     * limitations under the License.
     */
    package org.gradle.plugins.signing.signatory.internal.pgp;
    
    import org.gradle.api.Project;
    import org.gradle.plugins.signing.signatory.internal.ConfigurableSignatoryProvider;
    import org.gradle.security.internal.pgp.BaseInMemoryPgpSignatoryProvider;
    import org.gradle.plugins.signing.signatory.pgp.PgpSignatory;
    
    import java.util.Arrays;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. pkg/controller/certificates/authority/authority.go

    // CertificateAuthority implements a certificate authority that supports policy
    // based signing. It's used by the signing controller.
    type CertificateAuthority struct {
    	// RawCert is an optional field to determine if signing cert/key pairs have changed
    	RawCert []byte
    	// RawKey is an optional field to determine if signing cert/key pairs have changed
    	RawKey []byte
    
    	Certificate *x509.Certificate
    	PrivateKey  crypto.Signer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 23 19:36:11 UTC 2021
    - 2.5K bytes
    - Viewed (0)
Back to top