Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 202 for Signing (0.23 sec)

  1. platforms/documentation/docs/src/snippets/signing/gnupg-signatory/kotlin/build.gradle.kts

    plugins {
        java
        signing
    }
    
    group = "gradle"
    version = "1.0"
    
    // tag::configure-signatory[]
    signing {
        useGpgCmd()
        sign(configurations.runtimeElements.get())
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 203 bytes
    - Viewed (0)
  2. pkg/kubeapiserver/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)
  3. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SigningPlugin.java

         * <p>Also adds conventions to all {@link Sign sign tasks} to use the signing extension setting defaults.</p>
         *
         * @see SigningExtension
         */
        @Override
        public void apply(Project project) {
            project.getPluginManager().apply(BasePlugin.class);
            project.getExtensions().create("signing", SigningExtension.class, project);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/signing/maven-publish/groovy/gradle.properties

    signing.keyId=24875D73
    signing.password=gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 92 bytes
    - Viewed (0)
  5. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningIntegrationSpec.groovy

                setupGpgCmd()
            }
        }
    
        def setupGpgCmd() {
            TestFile sampleDir = new IntegrationTestBuildContext().getSamplesDir()
            sampleDir.file('signing/gnupg-signatory/groovy/gnupg-home').copyTo(file('gnupg-home'))
            sampleDir.file('signing/gnupg-signatory/groovy/gradle.properties').copyTo(file('gradle.properties'))
            GpgCmdFixture.setupGpgCmd(temporaryFolder.testDirectory)
        }
    
        def cleanup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. platforms/software/security/src/test/groovy/org/gradle/plugins/signing/type/type/AbstractSignatureTypeProviderSpec.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.plugins.signing.type.type
    
    import org.gradle.api.InvalidUserDataException
    import org.gradle.plugins.signing.type.AbstractSignatureType
    import org.gradle.plugins.signing.type.AbstractSignatureTypeProvider
    import spock.lang.Specification
    
    class AbstractSignatureTypeProviderSpec extends Specification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningWithGpgCmdIntegrationSpec.groovy

            buildFile << """
                signing {
                    useGpgCmd()
                    sign(jar)
                }
            """
    
            // Remove the 'signing.gnupg.keyName' entry from the gradle.properties file, so the default key is picked up
            Properties properties = new Properties()
            properties.load(propertiesFile.newInputStream())
            properties.remove("signing.gnupg.keyName")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/software/signing/src/main/java/org/gradle/plugins/signing/signatory/pgp/PgpSignatoryProvider.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.plugins.signing.signatory.pgp;
    
    import org.gradle.api.Project;
    import org.gradle.plugins.signing.signatory.SignatoryProvider;
    import org.gradle.plugins.signing.signatory.internal.ConfigurableSignatoryProvider;
    import org.gradle.security.internal.pgp.BasePgpSignatoryProvider;
    
    import java.io.File;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. pkg/test/csrctrl/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 28 18:22:37 UTC 2021
    - 3K bytes
    - Viewed (0)
  10. src/cmd/internal/codesign/codesign.go

    // license that can be found in the LICENSE file.
    
    // Package codesign provides basic functionalities for
    // ad-hoc code signing of Mach-O files.
    //
    // This is not a general tool for code-signing. It is made
    // specifically for the Go toolchain. It uses the same
    // ad-hoc signing algorithm as the Darwin linker.
    package codesign
    
    import (
    	"debug/macho"
    	"encoding/binary"
    	"io"
    
    	"cmd/internal/notsha256"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:19 UTC 2022
    - 8.3K bytes
    - Viewed (0)
Back to top