Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for GF (0.02 sec)

  1. src/crypto/internal/edwards25519/field/fe.go

    // Package field implements fast arithmetic modulo 2^255-19.
    package field
    
    import (
    	"crypto/subtle"
    	"errors"
    	"internal/byteorder"
    	"math/bits"
    )
    
    // Element represents an element of the field GF(2^255-19). Note that this
    // is not a cryptographically secure group, and should only be used to interact
    // with edwards25519.Point coordinates.
    //
    // This type works similarly to math/big.Int, and all arguments and receivers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. cmd/bucket-replication-metrics.go

    	GetTagFailedTotal uint64 `json:"getTaggingProxyFailed" msg:"gtf"`
    	RmvTagFailedTotal uint64 `json:"removeTaggingProxyFailed" msg:"rtf"`
    	GetFailedTotal    uint64 `json:"getProxyFailed" msg:"gf"`
    	HeadFailedTotal   uint64 `json:"headProxyFailed" msg:"hf"`
    }
    
    func (p *ProxyMetric) add(p2 ProxyMetric) {
    	atomic.AddUint64(&p.GetTotal, p2.GetTotal)
    	atomic.AddUint64(&p.HeadTotal, p2.HeadTotal)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv13-ClientCert-RSA-ECDSA

    00000370  d4 95 fd 8d 63 a4 78 6c  2f 7d 6a a5 53 e4 42 97  |....c.xl/}j.S.B.|
    00000380  e8 19 36 bf 14 9c a8 48  9f 57 ad 29 7a 30 e5 a9  |..6....H.W.)z0..|
    00000390  32 e7 0f 24 9c ca 9d 6d  b7 47 46 1c cb 90 7d 18  |2..$...m.GF...}.|
    000003a0  39 70 d2 c1 08 28 dc d7  3a 3e 5e 62 a7 4a 4a af  |9p...(..:>^b.JJ.|
    000003b0  02 93 ce 4b 5d a2 96 f3  17 03 03 00 35 10 07 d6  |...K].......5...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/x509metrics/server_cert_deprecations_test.go

    N1rf5Kdy7/LsxM6Uvwn0ns+p1vxANAjR/c0nfu0eIO1t5fKVDD0s9+ohKA/6phrm
    xChTyl21mDZlFKjq0sjSwzBcUHPJjzUW9+AMDvS7pOjR5h4nD21LlMIkBzinl5KT
    uo2Pm/OZqepPdM5XH9DaW0T0tjXKvRFe4FklJSKGD7f+T1whtmyziyA84YjYVa/6
    gF+gpIOmPruJI9UoFqEncNpLfh5vKu2Vxv+maztFRhb+9gOg+nVBq1pxmMZV0PuM
    L+tz0avIZEO2+KhgVGF3AF8HSZQHYcaskGFSGc8FxDKcDjM=
    -----END CERTIFICATE-----`)
    
    var serverCertNoSAN = []byte(`-----BEGIN CERTIFICATE-----
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  5. test/escape2.go

    func foo141() {
    	var f func()
    
    	t := new(Tm) // ERROR "new\(Tm\) does not escape$"
    	f = t.M      // ERROR "t.M does not escape$"
    	_ = f
    }
    
    var gf func()
    
    func foo142() {
    	t := new(Tm) // ERROR "new\(Tm\) escapes to heap$"
    	gf = t.M     // ERROR "t.M escapes to heap$"
    }
    
    // issue 3888.
    func foo143() {
    	for i := 0; i < 1000; i++ {
    		func() { // ERROR "func literal does not escape$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  6. src/crypto/ecdsa/ecdsa.go

    			_, err := kInv.SetBytes(kBytes, c.N)
    			if err != nil {
    				panic("ecdsa: internal error: P256OrdInverse produced an invalid value")
    			}
    			return
    		}
    	}
    
    	// Calculate the inverse of s in GF(N) using Fermat's method
    	// (exponentiation modulo P - 2, per Euler's theorem)
    	kInv.Exp(k, c.nMinus2, c.N)
    }
    
    // hashToNat sets e to the left-most bits of hash, according to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. test/escape2n.go

    func foo141() {
    	var f func()
    
    	t := new(Tm) // ERROR "new\(Tm\) does not escape$"
    	f = t.M      // ERROR "t.M does not escape$"
    	_ = f
    }
    
    var gf func()
    
    func foo142() {
    	t := new(Tm) // ERROR "new\(Tm\) escapes to heap$"
    	gf = t.M     // ERROR "t.M escapes to heap$"
    }
    
    // issue 3888.
    func foo143() {
    	for i := 0; i < 1000; i++ {
    		func() { // ERROR "func literal does not escape$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  8. src/crypto/rsa/rsa_test.go

    2pEpH2yffNHnHuECgcEAmxIWEHNYuwYT6brEETgfsFjxAZI+tIMZ+HtrYJ8R4DEm
    vVXXguMMEPi4ESosmfNiqYyMInVfscgeuNFZ48YCd3Sg++V6so/G5ABFwjTi/9Fj
    exbbDLxGXrTD5PokMyu3rSNr6bLQqELIJK8/93bmsJwO4Q07TPaOL73p1U90s/GF
    8TjBivrVY2RLsKPv0VPYfmWoDV/wkneYH/+4g5xMGt4/fHZ6bEn8iQ4ncXM0dlW4
    tSTIf6D80RAjNwG4VzitAoHAA8GLh22w+Cx8RPsj6xdrUiVFE+nNMMgeY8Mdjsrq
    Fh4jJb+4zwSML9R6iJu/LH5B7Fre2Te8QrYP+k/jIHPYJtGesVt/WlAtpDCNsC3j
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 12 00:55:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/graph/TraverserTest.java

       *    d   e   g
       *   /|\      |
       *  / | \     |
       * a  b  c    f
       * }</pre>
       */
      private static final SuccessorsFunction<Character> TREE =
          createDirectedGraph("hd", "he", "hg", "da", "db", "dc", "gf");
    
      /**
       * Two disjoint tree-shaped graphs that look as follows (all edges are directed facing downwards):
       *
       * <pre>{@code
       * a   c
       * |   |
       * |   |
       * b   d
       * }</pre>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/graph/TraverserTest.java

       *    d   e   g
       *   /|\      |
       *  / | \     |
       * a  b  c    f
       * }</pre>
       */
      private static final SuccessorsFunction<Character> TREE =
          createDirectedGraph("hd", "he", "hg", "da", "db", "dc", "gf");
    
      /**
       * Two disjoint tree-shaped graphs that look as follows (all edges are directed facing downwards):
       *
       * <pre>{@code
       * a   c
       * |   |
       * |   |
       * b   d
       * }</pre>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 47.5K bytes
    - Viewed (0)
Back to top