Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for 384 (0.02 sec)

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

    // Its generic security strength is 256 bits against preimage attacks,
    // and 128 bits against collision attacks.
    func New256() hash.Hash {
    	return new256()
    }
    
    // New384 creates a new SHA3-384 hash.
    // Its generic security strength is 384 bits against preimage attacks,
    // and 192 bits against collision attacks.
    func New384() hash.Hash {
    	return new384()
    }
    
    // New512 creates a new SHA3-512 hash.
    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/internal/syscall/unix/sysnum_linux_arm.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package unix
    
    const (
    	getrandomTrap       uintptr = 384
    	copyFileRangeTrap   uintptr = 391
    	pidfdSendSignalTrap uintptr = 424
    	pidfdOpenTrap       uintptr = 434
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 324 bytes
    - Viewed (0)
  3. src/crypto/sha512/sha512.go

    	Size224 = 28
    
    	// Size256 is the size, in bytes, of a SHA-512/256 checksum.
    	Size256 = 32
    
    	// Size384 is the size, in bytes, of a SHA-384 checksum.
    	Size384 = 48
    
    	// BlockSize is the block size, in bytes, of the SHA-512/224,
    	// SHA-512/256, SHA-384 and SHA-512 hash functions.
    	BlockSize = 128
    )
    
    const (
    	chunk     = 128
    	init0     = 0x6a09e667f3bcc908
    	init1     = 0xbb67ae8584caa73b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. src/crypto/ecdh/nist.go

    // P384 returns a [Curve] which implements NIST P-384 (FIPS 186-3, section D.2.4),
    // also known as secp384r1.
    //
    // Multiple invocations of this function will return the same value, which can
    // be used for equality checks and switch statements.
    func P384() Curve { return p384 }
    
    var p384 = &nistCurve[*nistec.P384Point]{
    	name:        "P-384",
    	newPoint:    nistec.NewP384Point,
    	scalarOrder: p384Order,
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. security/pkg/pki/util/crypto.go

    	}
    	pkey := privKey.(*rsa.PrivateKey)
    	return pkey.N.BitLen(), nil
    }
    
    // GetEllipticCurve returns the type of curve associated with the private key;
    // if ECDSA is used, then only 384 and 256 (default) are returned; if non-ECDSA
    // is used then an error is returned
    func GetEllipticCurve(privKey *crypto.PrivateKey) (elliptic.Curve, error) {
    	switch key := (*privKey).(type) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidCommunityPluginsSmokeTest.groovy

                (FLADLE_PLUGIN_ID): Versions.of('0.17.4'),
                // https://plugins.gradle.org/plugin/com.github.triplet.play
                (TRIPLET_PLAY_PLUGIN_ID): Versions.of('3.8.4'),
                // https://mvnrepository.com/artifact/androidx.navigation.safeargs/androidx.navigation.safeargs.gradle.plugin
                (SAFEARGS_PLUGIN_ID): Versions.of('2.6.0'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildsIntegrationTest.groovy

            if (!OperatingSystem.current().isWindows()) {
                confCacheFiles.forEach {
                    assert confCacheDir.file(it).mode == 384
                }
            }
    
            when: 'changing source file from included build'
            file('lib/src/main/java/Lib.java').text = """
                public class Lib { public static void main() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheRepository.kt

                    } finally {
                        stateFiles.asSequence()
                            .filter(File::isFile)
                            .forEach {
                                chmod(it, 384) // octal 0600
                            }
                    }
                }
        }
    
        private
        fun includedBuildFileFor(parentStateFile: File, build: BuildDefinition) =
            parentStateFile.run {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go

    	SYS_COPY_FILE_RANGE         = 379
    	SYS_PREADV2                 = 380
    	SYS_PWRITEV2                = 381
    	SYS_KEXEC_FILE_LOAD         = 382
    	SYS_STATX                   = 383
    	SYS_PKEY_ALLOC              = 384
    	SYS_PKEY_FREE               = 385
    	SYS_PKEY_MPROTECT           = 386
    	SYS_RSEQ                    = 387
    	SYS_IO_PGETEVENTS           = 388
    	SYS_SEMTIMEDOP              = 392
    	SYS_SEMGET                  = 393
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go

    	SYS_STATX                   = 379
    	SYS_S390_STHYI              = 380
    	SYS_KEXEC_FILE_LOAD         = 381
    	SYS_IO_PGETEVENTS           = 382
    	SYS_RSEQ                    = 383
    	SYS_PKEY_MPROTECT           = 384
    	SYS_PKEY_ALLOC              = 385
    	SYS_PKEY_FREE               = 386
    	SYS_SEMTIMEDOP              = 392
    	SYS_SEMGET                  = 393
    	SYS_SEMCTL                  = 394
    	SYS_SHMGET                  = 395
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top