- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 102 for sha512 (0.1 sec)
-
api/go1.1.txt
pkg crypto/md5, const BlockSize = 64 pkg crypto/md5, const Size = 16 pkg crypto/sha1, const BlockSize = 64 pkg crypto/sha1, const Size = 20 pkg crypto/sha256, const BlockSize = 64 pkg crypto/sha256, const Size = 32 pkg crypto/sha256, const Size224 = 28 pkg crypto/sha512, const BlockSize = 128 pkg crypto/sha512, const Size = 64 pkg crypto/sha512, const Size384 = 48 pkg crypto/tls, const NoClientCert = 0
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Mar 31 20:37:15 UTC 2022 - 2.6M bytes - Viewed (0) -
api/go1.2.txt
pkg crypto/rsa, type PSSOptions struct pkg crypto/rsa, type PSSOptions struct, SaltLength int pkg crypto/sha1, func Sum([]uint8) [20]uint8 pkg crypto/sha256, func Sum224([]uint8) [28]uint8 pkg crypto/sha256, func Sum256([]uint8) [32]uint8 pkg crypto/sha512, func Sum384([]uint8) [48]uint8 pkg crypto/sha512, func Sum512([]uint8) [64]uint8 pkg crypto/subtle, func ConstantTimeLessOrEq(int, int) int
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Oct 18 04:36:59 UTC 2013 - 1.9M bytes - Viewed (0) -
doc/godebug.md
This setting is available in Go 1.21.12, Go 1.22.5, Go 1.23, and later. There is no plan to remove this setting. ### Go 1.18 Go 1.18 removed support for SHA1 in most X.509 certificates, controlled by the [`x509sha1` setting](/pkg/crypto/x509#InsecureAlgorithmError). This setting will be removed in a future release, Go 1.22 at the earliest. ### Go 1.10
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Oct 28 14:46:33 UTC 2024 - 17.2K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt
) } val headerAccept = response.header("Sec-WebSocket-Accept") val acceptExpected = (key + WebSocketProtocol.ACCEPT_MAGIC).encodeUtf8().sha1().base64() if (acceptExpected != headerAccept) { throw ProtocolException( "Expected 'Sec-WebSocket-Accept' header value '$acceptExpected' but was '$headerAccept'", ) }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 01 14:21:25 UTC 2024 - 22.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
* </code></td> * </tr> * * <tr> * <td width="20%"><code> * smb://host/share/foo/bar/ * </code></td> * <td width="20%"><code> * /share2/zig/zag * </code></td> * <td><code> * smb://host/share2/zig/zag * </code></td> * </tr> * * <tr> * <td width="20%"><code> * smb://host/share/foo/bar/ * </code></td> * <td width="20%"><code> * ../zip/
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0) -
cmd/object-handlers_test.go
expectedRespStatus: http.StatusBadRequest, wantAPICode: "XAmzContentChecksumMismatch", }, // SHA1 12: { bucketName: bucketName, objectName: objectName, headers: map[string]string{"x-amz-checksum-sha1": checksumData(bytesData, sha1.New())}, data: bytesData, dataLen: len(bytesData), accessKey: credentials.AccessKey,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 12 20:10:44 UTC 2024 - 163.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
* smb1://host/share/a/b/c/d/ * </code></td></tr> * * <tr><td width="20%"><code> * smb1://host/share/foo/bar/ * </code></td><td width="20%"><code> * /share2/zig/zag * </code></td><td><code> * smb1://host/share2/zig/zag * </code></td></tr> * * <tr><td width="20%"><code> * smb1://host/share/foo/bar/ * </code></td><td width="20%"><code> * ../zip/ * </code></td><td><code>
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 107.9K bytes - Viewed (0) -
cmd/test-utils_test.go
package cmd import ( "archive/zip" "bufio" "bytes" "context" "crypto/ecdsa" "crypto/hmac" crand "crypto/rand" "crypto/rsa" "crypto/sha1" "crypto/tls" "crypto/x509" "crypto/x509/pkix" "encoding/base64" "encoding/hex" "encoding/pem" "encoding/xml" "errors" "flag" "fmt" "io" "math/big" "math/rand" "net"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 01 22:13:18 UTC 2024 - 77K bytes - Viewed (0) -
cmd/object-handlers.go
OA.Checksum = &objectAttributesChecksum{ ChecksumCRC32: strings.Split(chkSums["CRC32"], "-")[0], ChecksumCRC32C: strings.Split(chkSums["CRC32C"], "-")[0], ChecksumSHA1: strings.Split(chkSums["SHA1"], "-")[0], ChecksumSHA256: strings.Split(chkSums["SHA256"], "-")[0], } } } if _, ok := opts.ObjectAttributes[xhttp.ETag]; ok { OA.ETag = objInfo.ETag }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 05 05:16:15 UTC 2024 - 117.4K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/CallTest.kt
// Pin publicobject.com's cert. client = client.newBuilder() .certificatePinner( CertificatePinner.Builder() .add(server.hostName, "sha1/DmxUShsZuNiqPQsX2Oi9uv2sCnw=") .build(), ) .build() // When we pin the wrong certificate, connectivity fails. val request = Request.Builder().url(server.url("/")).build()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Apr 10 19:46:48 UTC 2024 - 142.5K bytes - Viewed (0)