Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 61 for sigset (0.15 sec)

  1. src/vendor/golang.org/x/crypto/sha3/shake.go

    		return NewShake256()
    	}
    	return newCShake(N, S, rate256, 64, dsbyteCShake)
    }
    
    // ShakeSum128 writes an arbitrary-length digest of data into hash.
    func ShakeSum128(hash, data []byte) {
    	h := NewShake128()
    	h.Write(data)
    	h.Read(hash)
    }
    
    // ShakeSum256 writes an arbitrary-length digest of data into hash.
    func ShakeSum256(hash, data []byte) {
    	h := NewShake256()
    	h.Write(data)
    	h.Read(hash)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/crypto/ecdsa/ecdsa.go

    	return subtle.ConstantTimeCompare(a.Bytes(), b.Bytes()) == 1
    }
    
    // Sign signs digest with priv, reading randomness from rand. The opts argument
    // is not currently used but, in keeping with the crypto.Signer interface,
    // should be the hash function used to digest the message.
    //
    // This method implements crypto.Signer, which is an interface to support keys
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

            module.moduleMetadata.verifyChecksums()
            module.rootMetaData.verifyChecksums()
            module.rootMetaData.versions == ["2"]
    
            where:
            authScheme << [AuthScheme.BASIC, AuthScheme.DIGEST, AuthScheme.NTLM]
        }
    
        def "reports failure publishing with wrong credentials using #authScheme"() {
            given:
            PasswordCredentials credentials = new DefaultPasswordCredentials('wrong', 'wrong')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/PathAssembler.java

                MessageDigest messageDigest = MessageDigest.getInstance("MD5");
                byte[] bytes = string.getBytes("UTF-8");
                messageDigest.update(bytes);
                return new BigInteger(1, messageDigest.digest()).toString(36);
            } catch (Exception e) {
                throw new RuntimeException("Could not hash input string.", e);
            }
        }
    
        private String removeExtension(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiAuthenticationIntegrationTest.groovy

                                            password "password"
                                        }
                                        authentication {
                                            digest(BasicAuthentication)
                                        }
                                    }
                                }
                            }
                        }
                    """
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:25 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. pkg/kubelet/pleg/generic.go

    }
    
    func getContainersFromPods(pods ...*kubecontainer.Pod) []*kubecontainer.Container {
    	cidSet := sets.New[string]()
    	var containers []*kubecontainer.Container
    	fillCidSet := func(cs []*kubecontainer.Container) {
    		for _, c := range cs {
    			cid := c.ID.ID
    			if cidSet.Has(cid) {
    				continue
    			}
    			cidSet.Insert(cid)
    			containers = append(containers, c)
    		}
    	}
    
    	for _, p := range pods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. src/math/big/int_test.go

    		old1 := altBit(z1, i)
    		if old != old1 {
    			t.Errorf("bitset: inconsistent value for Bit(%s, %d), got %v want %v", z1, i, old, old1)
    		}
    		z := new(Int).SetBit(z, i, 1)
    		z1 := altSetBit(new(Int), z1, i, 1)
    		if z.Bit(i) == 0 {
    			t.Errorf("bitset: bit %d of %s got 0 want 1", i, x)
    		}
    		if z.Cmp(z1) != 0 {
    			t.Errorf("bitset: inconsistent value after SetBit 1, got %s want %s", z, z1)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/util.go

    	C_SCOND_XOR = 14
    )
    
    // CConv formats opcode suffix bits (Prog.Scond).
    func CConv(s uint8) string {
    	if s == 0 {
    		return ""
    	}
    	for i := range opSuffixSpace {
    		sset := &opSuffixSpace[i]
    		if sset.arch == buildcfg.GOARCH {
    			return sset.cconv(s)
    		}
    	}
    	return fmt.Sprintf("SC???%d", s)
    }
    
    // CConvARM formats ARM opcode suffix bits (mostly condition codes).
    func CConvARM(s uint8) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. src/crypto/md5/gen.go

    // Code generated by go run gen.go -output md5block.go; DO NOT EDIT.
    
    package md5
    
    import (
    	"internal/byteorder"
    	"math/bits"
    )
    
    func blockGeneric(dig *digest, p []byte) {
    	// load state
    	a, b, c, d := dig.s[0], dig.s[1], dig.s[2], dig.s[3]
    
    	for i := 0; i <= len(p)-BlockSize; i += BlockSize {
    		// eliminate bounds checks on p
    		q := p[i:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. src/crypto/rsa/pkcs1v15.go

    	}
    
    	return
    }
    
    // These are ASN1 DER structures:
    //
    //	DigestInfo ::= SEQUENCE {
    //	  digestAlgorithm AlgorithmIdentifier,
    //	  digest OCTET STRING
    //	}
    //
    // For performance, we don't use the generic ASN1 encoder. Rather, we
    // precompute a prefix of the digest value that makes a valid ASN1 DER string
    // with the correct contents.
    var hashPrefixes = map[crypto.Hash][]byte{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top