Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 79 for sigset (0.3 sec)

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

    // Sum224 returns the SHA3-224 digest of the data.
    func Sum224(data []byte) (digest [28]byte) {
    	h := New224()
    	h.Write(data)
    	h.Sum(digest[:0])
    	return
    }
    
    // Sum256 returns the SHA3-256 digest of the data.
    func Sum256(data []byte) (digest [32]byte) {
    	h := New256()
    	h.Write(data)
    	h.Sum(digest[:0])
    	return
    }
    
    // Sum384 returns the SHA3-384 digest of the data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. src/crypto/sha512/sha512.go

    		panic("d.nx != 0")
    	}
    
    	var digest [Size]byte
    	byteorder.BePutUint64(digest[0:], d.h[0])
    	byteorder.BePutUint64(digest[8:], d.h[1])
    	byteorder.BePutUint64(digest[16:], d.h[2])
    	byteorder.BePutUint64(digest[24:], d.h[3])
    	byteorder.BePutUint64(digest[32:], d.h[4])
    	byteorder.BePutUint64(digest[40:], d.h[5])
    	if d.function != crypto.SHA384 {
    		byteorder.BePutUint64(digest[48:], d.h[6])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. src/crypto/sha256/sha256.go

    	if d.nx != 0 {
    		panic("d.nx != 0")
    	}
    
    	var digest [Size]byte
    
    	byteorder.BePutUint32(digest[0:], d.h[0])
    	byteorder.BePutUint32(digest[4:], d.h[1])
    	byteorder.BePutUint32(digest[8:], d.h[2])
    	byteorder.BePutUint32(digest[12:], d.h[3])
    	byteorder.BePutUint32(digest[16:], d.h[4])
    	byteorder.BePutUint32(digest[20:], d.h[5])
    	byteorder.BePutUint32(digest[24:], d.h[6])
    	if !d.is224 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. index.yaml

    apiVersion: v1
    entries:
      minio:
      - apiVersion: v1
        appVersion: RELEASE.2024-04-18T19-09-19Z
        created: "2024-04-28T03:14:12.227568814-07:00"
        description: High Performance Object Storage
        digest: 8ef4212d7d51be6c8192b3e91138a9ca918ca56142c42500028cfd3b80e0b2dd
        home: https://min.io
        icon: https://min.io/resources/img/logo/MINIO_wordmark.png
        keywords:
        - minio
        - storage
        - object-storage
        - s3
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. src/crypto/md5/md5.go

    	if d.nx != 0 {
    		panic("d.nx != 0")
    	}
    
    	var digest [Size]byte
    	byteorder.LePutUint32(digest[0:], d.s[0])
    	byteorder.LePutUint32(digest[4:], d.s[1])
    	byteorder.LePutUint32(digest[8:], d.s[2])
    	byteorder.LePutUint32(digest[12:], d.s[3])
    	return digest
    }
    
    // Sum returns the MD5 checksum of the data.
    func Sum(data []byte) [Size]byte {
    	var d digest
    	d.Reset()
    	d.Write(data)
    	return d.checkSum()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32.go

    func NewIEEE() hash.Hash32 { return New(IEEETable) }
    
    func (d *digest) Size() int { return Size }
    
    func (d *digest) BlockSize() int { return 1 }
    
    func (d *digest) Reset() { d.crc = 0 }
    
    const (
    	magic         = "crc\x01"
    	marshaledSize = len(magic) + 4 + 4
    )
    
    func (d *digest) MarshalBinary() ([]byte, error) {
    	b := make([]byte, 0, marshaledSize)
    	b = append(b, magic...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/Hashing.java

            private MessageDigest digest;
    
            public MessageDigestHasher(MessageDigest digest) {
                this.digest = digest;
            }
    
            private MessageDigest getDigest() {
                if (digest == null) {
                    throw new IllegalStateException("Cannot reuse hasher!");
                }
                return digest;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:30 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. src/hash/crc64/crc64.go

    func New(tab *Table) hash.Hash64 { return &digest{0, tab} }
    
    func (d *digest) Size() int { return Size }
    
    func (d *digest) BlockSize() int { return 1 }
    
    func (d *digest) Reset() { d.crc = 0 }
    
    const (
    	magic         = "crc\x02"
    	marshaledSize = len(magic) + 8 + 8
    )
    
    func (d *digest) MarshalBinary() ([]byte, error) {
    	b := make([]byte, 0, marshaledSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

            }
        }
    
        protected void processAllowedSIDs(final SmbFile file, final SID sid, final Set<SID> sidSet) {
            if (logger.isDebugEnabled()) {
                logger.debug("SID:{}", sid);
            }
            final int type = sid.getType();
            sidSet.add(sid);
            if (type == SID.SID_TYPE_DOM_GRP || type == SID.SID_TYPE_ALIAS) {
                try {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 23 01:54:10 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. src/crypto/rsa/pss.go

    		return PSSSaltLengthAuto
    	}
    	return opts.SaltLength
    }
    
    var invalidSaltLenErr = errors.New("crypto/rsa: PSSOptions.SaltLength cannot be negative")
    
    // SignPSS calculates the signature of digest using PSS.
    //
    // digest must be the result of hashing the input message using the given hash
    // function. The opts argument may be nil, in which case sensible defaults are
    // used. If opts.Hash is set, it overrides hash.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top