Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 498 for digests (0.11 sec)

  1. src/crypto/rsa/rsa.go

    func mgf1XOR(out []byte, hash hash.Hash, seed []byte) {
    	var counter [4]byte
    	var digest []byte
    
    	done := 0
    	for done < len(out) {
    		hash.Write(seed)
    		hash.Write(counter[0:4])
    		digest = hash.Sum(digest[:0])
    		hash.Reset()
    
    		for i := 0; i < len(digest) && done < len(out); i++ {
    			out[done] ^= digest[i]
    			done++
    		}
    		incCounter(&counter)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/util/MD4.java

     */
    
    package jcifs.smb1.util;
    
    import java.security.MessageDigest;
    
    /**
     * Implements the MD4 message digest algorithm in Java.
     * <p>
     * <b>References:</b>
     * <ol>
     *   <li> Ronald L. Rivest,
     *        "<a href="http://www.roxen.com/rfc/rfc1320.html">
     *        The MD4 Message-Digest Algorithm</a>",
     *        IETF RFC-1320 (informational).
     * </ol>
     *
     * <p><b>$Revision: 1.2 $</b>
     * @author  Raif S. Naffah
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9.3K bytes
    - Viewed (0)
  3. releasenotes/notes/wasm-cache-with-tag-stripped-url.yaml

    releaseNotes:
      - |
        **Improved** Use tag-stripped URL + checksum as a Wasm module cachekey, and the tagged URL is separately cached. 
        This may increase the chance of cache hit (e.g., trying to find the same image with both of the tagged and digest URLs.)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 23 08:37:23 UTC 2024
    - 402 bytes
    - Viewed (0)
  4. src/math/big/intconv.go

    	var right int // space characters to right of digits for left justification ("%-8d")
    
    	// determine number padding from precision: the least number of digits to output
    	precision, precisionSet := s.Precision()
    	if precisionSet {
    		switch {
    		case len(digits) < precision:
    			zeros = precision - len(digits) // count of zero padding
    		case len(digits) == 1 && digits[0] == '0' && precision == 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/workerApi/md5ClassloaderIsolation/groovy/buildSrc/src/main/java/GenerateMD5.java

    import org.apache.commons.codec.digest.DigestUtils;
    import org.apache.commons.io.FileUtils;
    import org.gradle.workers.WorkAction;
    
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.InputStream;
    
    public abstract class GenerateMD5 implements WorkAction<MD5WorkParameters> {
        @Override
        public void execute() {
            try {
                File sourceFile = getParameters().getSourceFile().getAsFile().get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 923 bytes
    - Viewed (0)
  6. src/math/big/natdiv.go

    The first step divides n digits by n digits to ensure that it produces only a
    single digit.
    
    Each subsequent step appends the next digit from u to the remainder and divides
    those n+1 digits by the n digits of v, producing another quotient digit and a
    new n-digit remainder.
    
    Subsequent steps divide n+1 digits by n digits, an operation that in general
    might produce two digits. However, as used in the algorithm, that division is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  7. src/internal/gover/gover.go

    	digits := []byte(decimal)
    	i := len(digits) - 1
    	for ; i >= 0 && digits[i] == '0'; i-- {
    		digits[i] = '9'
    	}
    	if i < 0 {
    		// decimal is all zeros
    		return ""
    	}
    	if i == 0 && digits[i] == '1' && len(digits) > 1 {
    		digits = digits[1:]
    	} else {
    		digits[i]--
    	}
    	return string(digits)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. platforms/software/resources-s3/src/main/java/org/gradle/authentication/aws/AwsImAuthentication.java

     * limitations under the License.
     */
    
    package org.gradle.authentication.aws;
    
    import org.gradle.authentication.Authentication;
    
    /**
     * Authentication scheme for digest access authentication over S3.
     *
     * @since 3.1
     */
    public interface AwsImAuthentication extends Authentication {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 865 bytes
    - Viewed (0)
  9. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/GcsServer.groovy

                        }
                    }
                }
    
            })
        }
    
        private static calculateEtag(File file) {
            MessageDigest digest = MessageDigest.getInstance("MD5")
            digest.update(file.bytes)
            new BigInteger(1, digest.digest()).toString(16).padLeft(32, '0')
        }
    
        static def urlParts(String url) {
            def parts = url.split('/') - ''
            def first = parts.first()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/toolchain-management/groovy/settings.gradle

                    credentials {
                        username "user"
                        password "password"
                    }
                    authentication {
                        digest(BasicAuthentication)
                    } // <4>
                }
            }
        }
    }
    // end::toolchain-management[]
    
    rootProject.name = 'toolchain-management'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 16:22:45 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top