Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 411 for Signing (0.09 sec)

  1. staging/src/k8s.io/api/certificates/v1beta1/generated.proto

      //
      // Valid values are:
      //  "signing",
      //  "digital signature",
      //  "content commitment",
      //  "key encipherment",
      //  "key agreement",
      //  "data encipherment",
      //  "cert sign",
      //  "crl sign",
      //  "encipher only",
      //  "decipher only",
      //  "any",
      //  "server auth",
      //  "client auth",
      //  "code signing",
      //  "email protection",
      //  "s/mime",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/software/signing/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Plugin for cryptographic signing of publications, artifacts or files."
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":base-services"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":file-collections"))
        api(project(":publish"))
        api(project(":security"))
    
        api(libs.jsr305)
        api(libs.groovy)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1/generated.proto

      //
      // Valid values are:
      //  "signing", "digital signature", "content commitment",
      //  "key encipherment", "key agreement", "data encipherment",
      //  "cert sign", "crl sign", "encipher only", "decipher only", "any",
      //  "server auth", "client auth",
      //  "code signing", "email protection", "s/mime",
      //  "ipsec end system", "ipsec tunnel", "ipsec user",
      //  "timestamping", "ocsp signing", "microsoft sgc", "netscape sgc"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/certificates/v1/types.go

    	//
    	// Valid values are:
    	//  "signing", "digital signature", "content commitment",
    	//  "key encipherment", "key agreement", "data encipherment",
    	//  "cert sign", "crl sign", "encipher only", "decipher only", "any",
    	//  "server auth", "client auth",
    	//  "code signing", "email protection", "s/mime",
    	//  "ipsec end system", "ipsec tunnel", "ipsec user",
    	//  "timestamping", "ocsp signing", "microsoft sgc", "netscape sgc"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. platforms/software/security/src/main/java/org/gradle/plugins/signing/signatory/pgp/PgpSignatoryFactory.java

            }
    
            if (propertyFound) {
                Object prop = project.property(qualifiedProperty);
                if (prop == null && required) {
                    throw new InvalidUserDataException("property '" + qualifiedProperty + "' was null. A valid value is needed for signing");
                }
                return prop;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/signing/maven-publish/groovy/build.gradle

    // tag::all[]
    // tag::use-plugin[]
    plugins {
    // end::use-plugin[]
        id 'java-library'
        id 'maven-publish'
    // tag::use-plugin[]
        id 'signing'
    }
    // end::use-plugin[]
    
    group = 'com.example'
    version = '1.0'
    
    // tag::defining-sources-jar-task[]
    java {
        withJavadocJar()
        withSourcesJar()
    }
    // end::defining-sources-jar-task[]
    
    // tag::pom-customization[]
    // tag::versions-resolved[]
    publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/software/security/src/main/java/org/gradle/plugins/signing/type/DefaultSignatureTypeProvider.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.plugins.signing.type;
    
    import org.gradle.plugins.signing.type.pgp.ArmoredSignatureType;
    
    /**
     * The default {@link SignatureTypeProvider} implementation including support for
     * {@link BinarySignatureType} and {@link ArmoredSignatureType} signatures.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. security/pkg/server/ca/server.go

    	} else {
    		serverCaLog.Debugf("signing CSR with cert chain")
    		respCertChain, signErr = s.ca.SignWithCertChain([]byte(request.Csr), certOpts)
    	}
    	if signErr != nil {
    		serverCaLog.Errorf("CSR signing error: %v", signErr.Error())
    		s.monitoring.GetCertSignError(signErr.(*caerror.Error).ErrorType()).Increment()
    		return nil, status.Errorf(signErr.(*caerror.Error).HTTPErrorCode(), "CSR signing error (%v)", signErr.(*caerror.Error))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningOperationIntegrationSpec.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.plugins.signing
    
    class SigningOperationIntegrationSpec extends SigningIntegrationSpec {
    
        def setup() {
            enableProblemsApiCheck()
        }
    
        def "direct creation of SignOperation fails"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/certificates/v1/types_swagger_doc_generated.go

    	"username":...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 10.9K bytes
    - Viewed (0)
Back to top