Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 108 for hashHead (0.15 sec)

  1. src/compress/flate/deflate.go

    	// Input hash chains
    	// hashHead[hashValue] contains the largest inputIndex with the specified hash value
    	// If hashHead[hashValue] is within the current window, then
    	// hashPrev[hashHead[hashValue] & windowMask] contains the previous index
    	// with the same hash value.
    	chainHead  int
    	hashHead   [hashSize]uint32
    	hashPrev   [windowSize]uint32
    	hashOffset int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/rsa.go

    		return C._goboringcrypto_RSA_sign_pss_mgf1(key, &outLen, base(out), C.size_t(len(out)),
    			base(hashed), C.size_t(len(hashed)), md, nil, C.int(saltLen))
    	}) == 0 {
    		return nil, fail("RSA_sign_pss_mgf1")
    	}
    
    	return out[:outLen], nil
    }
    
    func VerifyRSAPSS(pub *PublicKeyRSA, h crypto.Hash, hashed, sig []byte, saltLen int) error {
    	md := cryptoHashToMD(h)
    	if md == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 23:38:03 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. src/crypto/ecdsa/ecdsa_test.go

    	priv, _ := GenerateKey(c, rand.Reader)
    
    	hashed := []byte("testing")
    	r, s, err := Sign(rand.Reader, priv, hashed)
    	if err != nil {
    		t.Errorf("error signing: %s", err)
    		return
    	}
    
    	if !Verify(&priv.PublicKey, hashed, r, s) {
    		t.Errorf("Verify failed")
    	}
    
    	hashed[0] ^= 0xff
    	if Verify(&priv.PublicKey, hashed, r, s) {
    		t.Errorf("Verify always works!")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:58 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. src/crypto/rsa/pkcs1v15.go

    	k := pub.Size()
    	if k < len(prefix)+len(hashed)+2+8+1 {
    		return nil, ErrMessageTooLong
    	}
    	em := make([]byte, k)
    	em[1] = 1
    	for i := 2; i < k-len(prefix)-len(hashed)-1; i++ {
    		em[i] = 0xff
    	}
    	copy(em[k-len(prefix)-len(hashed):], prefix)
    	copy(em[k-len(hashed):], hashed)
    	return em, nil
    }
    
    // VerifyPKCS1v15 verifies an RSA PKCS #1 v1.5 signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/FileHasherStatistics.java

    import java.text.MessageFormat;
    import java.util.concurrent.atomic.AtomicLong;
    
    public interface FileHasherStatistics {
        /**
         * Number of files hashed.
         */
        long getHashedFileCount();
    
        /**
         * Amount of bytes hashed.
         */
        long getHashedContentLength();
    
        @ServiceScope(Scope.Global.class)
        class Collector {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. src/crypto/rsa/pss_test.go

    	}
    
    	hash := sha1.New()
    	hash.Write(msg)
    	hashed := hash.Sum(nil)
    
    	encoded, err := EMSAPSSEncode(hashed, 1023, salt, sha1.New())
    	if err != nil {
    		t.Errorf("Error from emsaPSSEncode: %s\n", err)
    	}
    	if !bytes.Equal(encoded, expected) {
    		t.Errorf("Bad encoding. got %x, want %x", encoded, expected)
    	}
    
    	if err = EMSAPSSVerify(hashed, encoded, 1023, len(salt), sha1.New()); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. pkg/volume/util/attach_limit_test.go

    	}
    }
    
    func getDriverHash(driverName string) string {
    	charsFromDriverName := driverName[:23]
    	hash := sha1.New()
    	hash.Write([]byte(driverName))
    	hashed := hex.EncodeToString(hash.Sum(nil))
    	hashed = hashed[:16]
    	return CSIAttachLimitPrefix + charsFromDriverName + hashed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 05 16:29:00 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  8. pkg/volume/util/attach_limit.go

    	if totalkeyLength >= ResourceNameLengthLimit {
    		charsFromDriverName := driverName[:23]
    		hash := sha1.New()
    		hash.Write([]byte(driverName))
    		hashed := hex.EncodeToString(hash.Sum(nil))
    		hashed = hashed[:16]
    		return CSIAttachLimitPrefix + charsFromDriverName + hashed
    	}
    	return CSIAttachLimitPrefix + driverName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 17:25:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  9. src/crypto/dsa/dsa_test.go

    import (
    	"crypto/rand"
    	"math/big"
    	"testing"
    )
    
    func testSignAndVerify(t *testing.T, i int, priv *PrivateKey) {
    	hashed := []byte("testing")
    	r, s, err := Sign(rand.Reader, priv, hashed)
    	if err != nil {
    		t.Errorf("%d: error signing: %s", i, err)
    		return
    	}
    
    	if !Verify(&priv.PublicKey, hashed, r, s) {
    		t.Errorf("%d: Verify failed", i)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 15 21:04:43 UTC 2019
    - 4.7K bytes
    - Viewed (0)
  10. src/crypto/ecdsa/ecdsa_s390x.go

    	//	+---------------------+
    	//	|   Hashed Message    |
    	//	+---------------------+
    	//	|   Public Key X      |
    	//	+---------------------+
    	//	|   Public Key Y      |
    	//	+---------------------+
    	//	|                     |
    	//	|        ...          |
    	//	|                     |
    	//	+---------------------+
    	// The common components(signatureR, signatureS, hashed message, public key X,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top