Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 89 for sig1 (0.04 sec)

  1. src/crypto/ecdsa/ecdsa_legacy.go

    func Verify(pub *PublicKey, hash []byte, r, s *big.Int) bool {
    	if r.Sign() <= 0 || s.Sign() <= 0 {
    		return false
    	}
    	sig, err := encodeSignature(r.Bytes(), s.Bytes())
    	if err != nil {
    		return false
    	}
    	return VerifyASN1(pub, hash, sig)
    }
    
    func verifyLegacy(pub *PublicKey, hash []byte, sig []byte) bool {
    	rBytes, sBytes, err := parseSignature(sig)
    	if err != nil {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. pkg/controller/bootstrap/bootstrapsigner.go

    		sig, err := jws.ComputeDetachedSignature(content, tokenID, tokenValue)
    		if err != nil {
    			utilruntime.HandleError(err)
    		}
    
    		// Check to see if this signature is changed or new.
    		oldSig, _ := sigs[tokenID]
    		if sig != oldSig {
    			needUpdate = true
    		}
    		delete(sigs, tokenID)
    
    		newCM.Data[bootstrapapi.JWSSignatureKeyPrefix+tokenID] = sig
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. staging/README.md

        Add the staging repo in the list of repos to be published.
    
    4. Add the staging and published repositories as a subproject for the
    SIG that owns the repos in
    [`sigs.yaml`](https://github.com/kubernetes/community/blob/master/sigs.yaml).
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 11:23:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. 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)
  5. .github/workflows/update-rbe.yml

              # See https://cloud.google.com/architecture/using-container-images#exploring_image_manifests_digests_and_tags
              echo -n "Trying to map name $1 to tag $2... "
              digest=$(curl -s --head "https://gcr.io/v2/tensorflow-sigs/build/manifests/$2" | egrep -o "sha256:[[:alnum:]]*")
              # Find the line matching the regex "sigbuild-r2.9" (with quotes) and
              # replace just the digest portion in it
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 15:40:34 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. tests/integration/pilot/gateway_conformance_test.go

    	k8ssets "k8s.io/apimachinery/pkg/util/sets" //nolint: depguard
    	"sigs.k8s.io/controller-runtime/pkg/client"
    	v1 "sigs.k8s.io/gateway-api/apis/v1"
    	"sigs.k8s.io/gateway-api/conformance"
    	confv1 "sigs.k8s.io/gateway-api/conformance/apis/v1"
    	"sigs.k8s.io/gateway-api/conformance/tests"
    	"sigs.k8s.io/gateway-api/conformance/utils/suite"
    	"sigs.k8s.io/gateway-api/pkg/features"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/pilot/pkg/config/kube/gateway"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 15:22:47 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. tests/integration/ambient/gateway_conformance_test.go

    	k8ssets "k8s.io/apimachinery/pkg/util/sets" //nolint: depguard
    	"sigs.k8s.io/controller-runtime/pkg/client"
    	v1 "sigs.k8s.io/gateway-api/apis/v1"
    	"sigs.k8s.io/gateway-api/conformance"
    	confv1 "sigs.k8s.io/gateway-api/conformance/apis/v1"
    	"sigs.k8s.io/gateway-api/conformance/tests"
    	"sigs.k8s.io/gateway-api/conformance/utils/suite"
    	gwfeatures "sigs.k8s.io/gateway-api/pkg/features"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/pilot/pkg/config/kube/gateway"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. src/crypto/elliptic/params.go

    func zForAffine(x, y *big.Int) *big.Int {
    	z := new(big.Int)
    	if x.Sign() != 0 || y.Sign() != 0 {
    		z.SetInt64(1)
    	}
    	return z
    }
    
    // affineFromJacobian reverses the Jacobian transform. See the comment at the
    // top of the file. If the point is ∞ it returns 0, 0.
    func (curve *CurveParams) affineFromJacobian(x, y, z *big.Int) (xOut, yOut *big.Int) {
    	if z.Sign() == 0 {
    		return new(big.Int), new(big.Int)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. hack/update-kustomize.sh

    else
      echo -e "\n${color_red:?}Update aborted${color_norm:?}"
      exit 1
    fi
    
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/kyaml "$LATEST_KYAML"
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/cmd/config "$LATEST_CONFIG"
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/api "$LATEST_API"
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/kustomize/v5 "$LATEST_KUSTOMIZE"
    
    ./hack/update-vendor.sh
    ./hack/update-internal-modules.sh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:40:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. src/math/unsafe.go

    // Float32bits returns the IEEE 754 binary representation of f,
    // with the sign bit of f and the result in the same bit position.
    // Float32bits(Float32frombits(x)) == x.
    func Float32bits(f float32) uint32 { return *(*uint32)(unsafe.Pointer(&f)) }
    
    // Float32frombits returns the floating-point number corresponding
    // to the IEEE 754 binary representation b, with the sign bit of b
    // and the result in the same bit position.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top