Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 100 for PUB (0.02 sec)

  1. 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)
  2. src/crypto/tls/tls.go

    		}
    		if pub.X.Cmp(priv.X) != 0 || pub.Y.Cmp(priv.Y) != 0 {
    			return fail(errors.New("tls: private key does not match public key"))
    		}
    	case ed25519.PublicKey:
    		priv, ok := cert.PrivateKey.(ed25519.PrivateKey)
    		if !ok {
    			return fail(errors.New("tls: private key type does not match public key type"))
    		}
    		if !bytes.Equal(priv.Public().(ed25519.PublicKey), pub) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/crypto/internal/hpke/hpke_test.go

    				t.Fatal(err)
    			}
    			if _, ok := SupportedAEADs[uint16(aeadID)]; !ok {
    				t.Skip("unsupported AEAD")
    			}
    
    			info := mustDecodeHex(t, setup["info"])
    			pubKeyBytes := mustDecodeHex(t, setup["pkRm"])
    			pub, err := ParseHPKEPublicKey(uint16(kemID), pubKeyBytes)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			ephemeralPrivKey := mustDecodeHex(t, setup["skEm"])
    
    			testingOnlyGenerateKey = func() (*ecdh.PrivateKey, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. docs/security/security.md

    guidelines at https://bugcrowd.com/squareopensource
    
    
    ## Verifying Artifacts
    
    We sign our artifacts using this [key][signing_key]:
    
    ```
    pub rsa4096/dbd744ace7ade6aa50dd591f66b50994442d2d40 2021-07-09T14:50:19Z
    	 Hash=a79b48fd6a1f31699c788b50c97d0b98
    
    uid Square Clippy <******@****.***>
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 27 10:19:17 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyConfigurationContainer.java

     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'ivy-publish'
     * }
     *
     * def publication = publishing.publications.create("my-pub", IvyPublication)
     * def configurations = publication.configurations
     *
     * configurations.create("extended", { extend "default"})
     * configurations.all {
     *     extend "base"
     * }
     * </pre>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/crypto/ecdh/ecdh_test.go

    func testX25519Failure(t *testing.T, private, public []byte) {
    	priv, err := ecdh.X25519().NewPrivateKey(private)
    	if err != nil {
    		t.Fatal(err)
    	}
    	pub, err := ecdh.X25519().NewPublicKey(public)
    	if err != nil {
    		t.Fatal(err)
    	}
    	secret, err := priv.ECDH(pub)
    	if err == nil {
    		t.Error("expected ECDH error")
    	}
    	if secret != nil {
    		t.Errorf("unexpected ECDH output: %x", secret)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 18K bytes
    - Viewed (0)
  7. src/time/zoneinfo_unix.go

    //go:build unix && !ios && !android
    
    // Parse "zoneinfo" time zone file.
    // This is a fairly standard file format used on OS X, Linux, BSD, Sun, and others.
    // See tzfile(5), https://en.wikipedia.org/wiki/Zoneinfo,
    // and ftp://munnari.oz.au/pub/oldtz/
    
    package time
    
    import (
    	"syscall"
    )
    
    // Many systems use /usr/share/zoneinfo, Solaris 2 has
    // /usr/share/lib/zoneinfo, IRIX 6 has /usr/lib/locale/TZ,
    // NixOS has /etc/zoneinfo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 04 02:26:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. src/crypto/x509/x509_test.go

    func TestParsePKIXPublicKey(t *testing.T) {
    	t.Run("RSA", func(t *testing.T) {
    		pub := testParsePKIXPublicKey(t, pemPublicKey)
    		_, ok := pub.(*rsa.PublicKey)
    		if !ok {
    			t.Errorf("Value returned from ParsePKIXPublicKey was not an RSA public key")
    		}
    	})
    	t.Run("Ed25519", func(t *testing.T) {
    		pub := testParsePKIXPublicKey(t, pemEd25519Key)
    		_, ok := pub.(ed25519.PublicKey)
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  9. platforms/software/security/src/test/resources/keyrings/valid-with-extra-metadata.keys

    pub    5208812E1E4A6DB0
    uid    Gradle Inc. <******@****.***>
    
    -----BEGIN PGP PUBLIC KEY BLOCK-----
    Version: BCPG v1.68
    
    mQENBFxaxWYBCADI4/gRCJYfXwZYdUoEGlAlCfRgABy90rvebzcs8MKtolAbPVkG
    iqnjftXd28sZhEDx9YJrUfmzspdrYmU7hy1kgV1/WGIcWyTExTH3bqlnaIWnnTxA
    HD0x4NJ2AzmX5VO8LxhqGID+BErrv7uGZvVmJT6trqUIcKeNEq7mzdDJKqTBY4cw
    q+Dm8P0vs4IFTD8q5f1Vr78FmUth2srIBmsIH1wNV1nAUTmQppNBFlCmcvnWTYI1
    0UMcsFFrJ2pFT1yP2AEGUNl4Lgj4hmVHZwX38/lu9pQ7iWtHSLOwZsfuC34/goS+
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 65.5K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyArtifactSet.java

     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'ivy-publish'
     * }
     *
     * def publication = publishing.publications.create("my-pub", IvyPublication)
     * def artifacts = publication.artifacts
     *
     * artifacts.matching({
     *     it.type == "source"
     * }).all({
     *     it.extension = "src.jar"
     * })
     * </pre>
     *
     * @see DomainObjectSet
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top