Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 160 for pub2 (0.15 sec)

  1. src/crypto/internal/boring/ecdsa.go

    		return nil, fail("ECDSA_sign")
    	}
    	runtime.KeepAlive(priv)
    	return sig[:sigLen], nil
    }
    
    func VerifyECDSA(pub *PublicKeyECDSA, hash []byte, sig []byte) bool {
    	ok := C._goboringcrypto_ECDSA_verify(0, base(hash), C.size_t(len(hash)), base(sig), C.size_t(len(sig)), pub.key) != 0
    	runtime.KeepAlive(pub)
    	return ok
    }
    
    func GenerateKeyECDSA(curve string) (X, Y, D BigInt, err error) {
    	nid, err := curveNID(curve)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishSnapshotIntegTest.groovy

        group = 'org.gradle'
        version = '1.0-SNAPSHOT'
    
        publishing {
            repositories {
                maven { url "${mavenRepo.uri}" }
            }
            publications {
                pub(MavenPublication) {
                    from components.java
                }
            }
        }
    """
            def module = mavenRepo.module('org.gradle', 'snapshotPublish', '1.0-SNAPSHOT')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 12:20:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/certs/certs_test.go

    				"front-proxy-ca.key": caKey,
    				"sa.pub":             publicKey,
    				"sa.key":             key,
    				"etcd/ca.crt":        caCert,
    				"etcd/ca.key":        caKey,
    			},
    		},
    		{
    			name: "missing ca.crt",
    			files: certstestutil.PKIFiles{
    				"ca.key":             caKey,
    				"front-proxy-ca.crt": caCert,
    				"front-proxy-ca.key": caKey,
    				"sa.pub":             publicKey,
    				"sa.key":             key,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  4. src/crypto/dsa/dsa_test.go

    		},
    		X: fromHex("5078D4D29795CBE76D3AACFE48C9AF0BCDBEE91A"),
    	}
    
    	testSignAndVerify(t, 0, &priv)
    }
    
    func TestSignAndVerifyWithBadPublicKey(t *testing.T) {
    	pub := PublicKey{
    		Parameters: Parameters{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 15 21:04:43 UTC 2019
    - 4.7K bytes
    - Viewed (0)
  5. docker/iptables.yaml

    contents:
      repositories:
        - https://packages.wolfi.dev/os
      keyring:
        - https://packages.wolfi.dev/os/wolfi-signing.rsa.pub
      packages:
        - ca-certificates-bundle
        - wolfi-baselayout
        - glibc
        - iptables
        - ip6tables
        - libnetfilter_conntrack
        - libnfnetlink
        - libmnl
        - libgcc
    archs:
      - x86_64
      - aarch64
    paths:
    - path: /run
      type: directory
      permissions: 0o755
    accounts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 541 bytes
    - Viewed (0)
  6. src/crypto/ecdsa/ecdsa_noasm.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !s390x || purego
    
    package ecdsa
    
    import "io"
    
    func verifyAsm(pub *PublicKey, hash []byte, sig []byte) error {
    	return errNoAsm
    }
    
    func signAsm(priv *PrivateKey, csprng io.Reader, hash []byte) (sig []byte, err error) {
    	return nil, errNoAsm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 413 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/testdata/gen.sh

    set -e
    
    rm ./*.pem
    
    for N in $(seq 1 3); do
        ssh-keygen -t rsa -b 2048 -f rsa_"$N".pem -N ''
    done
    
    for N in $(seq 1 3); do
        ssh-keygen -t ecdsa -b 521 -f ecdsa_"$N".pem -N ''
    done
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 24 05:55:09 UTC 2019
    - 807 bytes
    - Viewed (0)
  8. src/crypto/rsa/pss.go

    func VerifyPSS(pub *PublicKey, hash crypto.Hash, digest []byte, sig []byte, opts *PSSOptions) error {
    	if boring.Enabled {
    		bkey, err := boringPublicKey(pub)
    		if err != nil {
    			return err
    		}
    		if err := boring.VerifyRSAPSS(bkey, hash, digest, sig, opts.saltLength()); err != nil {
    			return ErrVerification
    		}
    		return nil
    	}
    	if len(sig) != pub.Size() {
    		return ErrVerification
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. src/crypto/x509/parser.go

    			return nil, errors.New("x509: invalid DSA parameters")
    		}
    		if pub.Y.Sign() <= 0 || pub.Parameters.P.Sign() <= 0 ||
    			pub.Parameters.Q.Sign() <= 0 || pub.Parameters.G.Sign() <= 0 {
    			return nil, errors.New("x509: zero or negative DSA parameter")
    		}
    		return pub, nil
    	default:
    		return nil, errors.New("x509: unknown public key algorithm")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/abt/avlint32_test.go

    		// B is larger, union favors reuse from larger when function is "first"
    		t.Errorf("Failed aliasing/reuse check, A/aub1")
    	}
    	aub2 := A.Union(B, second)
    	assert(t, AUB, aub2, "aub2")
    	if B.Find(3) != aub2.Find(3) {
    		t.Errorf("Failed aliasing/reuse check, B/aub2")
    	}
    	aub3 := B.Union(A, first)
    	assert(t, AUB, aub3, "aub3")
    	if B.Find(3) != aub3.Find(3) {
    		t.Errorf("Failed aliasing/reuse check, B/aub3")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 16:34:41 UTC 2022
    - 20.3K bytes
    - Viewed (0)
Back to top