Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,130 for sig1 (0.27 sec)

  1. src/crypto/rsa/pss_test.go

    func TestPSSOpenSSL(t *testing.T) {
    	hash := crypto.SHA256
    	h := hash.New()
    	h.Write([]byte("testing"))
    	hashed := h.Sum(nil)
    
    	// Generated with `echo -n testing | openssl dgst -sign key.pem -sigopt rsa_padding_mode:pss -sha256 > sig`
    	sig := []byte{
    		0x95, 0x59, 0x6f, 0xd3, 0x10, 0xa2, 0xe7, 0xa2, 0x92, 0x9d,
    		0x4a, 0x07, 0x2e, 0x2b, 0x27, 0xcc, 0x06, 0xc2, 0x87, 0x2c,
    		0x52, 0xf0, 0x4a, 0xcc, 0x05, 0x94, 0xf2, 0xc3, 0x2e, 0x20,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. src/crypto/tls/key_agreement.go

    		return errServerKeyExchange
    	}
    
    	sigLen := int(sig[0])<<8 | int(sig[1])
    	if sigLen+2 != len(sig) {
    		return errServerKeyExchange
    	}
    	sig = sig[2:]
    
    	signed := hashForServerKeyExchange(sigType, sigHash, ka.version, clientHello.random, serverHello.random, serverECDHEParams)
    	if err := verifyHandshakeSignature(sigType, cert.PublicKey, sigHash, signed, sig); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Signature.java

         *
         * <p>Defaults to the extension of the {@link #getToSign() file to sign} plus the extension of the {@link #getSignatureType() signature type}.
         * For example, when signing the file ‘my.zip’ with a signature type with extension ‘sig’, the default type is ‘zip.sig’.</p>
         *
         * @return The type. May be {@code null} if the file to sign or signature type are unknown at this time.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. src/crypto/ecdsa/ecdsa.go

    	case elliptic.P521().Params():
    		return verifyNISTEC(p521(), pub, hash, sig)
    	default:
    		return verifyLegacy(pub, hash, sig)
    	}
    }
    
    func verifyNISTEC[Point nistPoint[Point]](c *nistCurve[Point], pub *PublicKey, hash, sig []byte) bool {
    	rBytes, sBytes, err := parseSignature(sig)
    	if err != nil {
    		return false
    	}
    
    	Q, err := c.pointFromAffine(pub.X, pub.Y)
    	if err != nil {
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    - google.golang.org/grpc: v1.58.3 → v1.59.0
    - honnef.co/go/tools: v0.0.1-2020.1.4 → v0.0.1-2019.2.3
    - sigs.k8s.io/knftables: v0.0.14 → v0.0.16
    - sigs.k8s.io/kustomize/api: 6ce0bf3 → v0.17.2
    - sigs.k8s.io/kustomize/cmd/config: v0.11.2 → v0.14.1
    - sigs.k8s.io/kustomize/kustomize/v5: 6ce0bf3 → v5.4.2
    - sigs.k8s.io/kustomize/kyaml: 6ce0bf3 → v0.17.1
    - sigs.k8s.io/yaml: v1.3.0 → v1.4.0
    
    ### Removed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. .github/workflows/sigbuild-docker.yml

                tensorflow/build:latest-${{ matrix.python-version }}
                tensorflow/build:${{ steps.tf-version.outputs.TF_VERSION }}-${{ matrix.python-version }}
                gcr.io/tensorflow-sigs/build:latest-${{ matrix.python-version }}
                gcr.io/tensorflow-sigs/build:${{ steps.tf-version.outputs.TF_VERSION }}-${{ matrix.python-version }}
              cache-from: type=registry,ref=tensorflow/build:latest-${{ matrix.python-version }}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. cmd/streaming-signature-v4.go

    		valueBuffer.Write([]byte{'\n'})
    	}
    	sig = sig[len("x-amz-trailer-signature:"):]
    	sig = bytes.TrimSpace(sig)
    	cr.chunkSHA256Writer.Write(valueBuffer.Bytes())
    	wantSig := cr.getTrailerChunkSignature()
    	if !compareSignatureV4(string(sig), wantSig) {
    		if cr.debug {
    			fmt.Printf("signature, want: %q, got %q\nSignature buffer: %q\n", wantSig, string(sig), valueBuffer.String())
    		}
    		return errSignatureMismatch
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. .github/workflows/sigbuild-docker-branch.yml

                CACHEBUSTER=${{ steps.vars.outputs.DATE }}
              tags: |
                tensorflow/build:${{ steps.vars.outputs.REF }}-${{ matrix.python-version }}
                gcr.io/tensorflow-sigs/build:${{ steps.vars.outputs.REF }}-${{ matrix.python-version }}
              cache-from: type=registry,ref=tensorflow/build:${{ steps.vars.outputs.REF }}-${{ matrix.python-version }}
              cache-to: type=inline
          -
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/library/library_compatibility_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.27.md

    - k8s.io/kube-openapi: 172d655 → 15aac26
    - k8s.io/utils: 1a15be2 → a36077c
    - sigs.k8s.io/apiserver-network-proxy/konnectivity-client: v0.0.33 → v0.1.1
    - sigs.k8s.io/json: f223a00 → bc3834c
    - sigs.k8s.io/kustomize/api: v0.12.1 → v0.13.2
    - sigs.k8s.io/kustomize/cmd/config: v0.10.9 → v0.11.1
    - sigs.k8s.io/kustomize/kyaml: v0.13.9 → v0.14.1
    
    ### Removed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top