- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 58 for sha (0.01 sec)
-
internal/crypto/key.go
unsealConfig = sio.Config{MinVersion: sio.Version20, Key: mac.Sum(nil), CipherSuites: fips.DARECiphers()} case InsecureSealAlgorithm: sha := sha256.New() sha.Write(extKey) sha.Write(sealedKey.IV[:]) unsealConfig = sio.Config{MinVersion: sio.Version10, Key: sha.Sum(nil), CipherSuites: fips.DARECiphers()} } if out, err := sio.DecryptBuffer(key[:0], sealedKey.Key[:], unsealConfig); len(out) != 32 || err != nil {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Mar 19 20:28:10 UTC 2024 - 6.4K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/CertificatePinner.kt
@JvmStatic fun X509Certificate.sha256Hash(): ByteString = publicKey.encoded.toByteString().sha256() /** * Returns the SHA-256 of `certificate`'s public key. * * In OkHttp 3.1.2 and earlier, this returned a SHA-1 hash of the public key. Both types are * supported, but SHA-256 is preferred. */ @JvmStatic fun pin(certificate: Certificate): String {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 14.2K bytes - Viewed (0) -
scripts/deploy_docs_status.py
use_pr = next( (pr for pr in repo.get_pulls() if pr.head.sha == settings.commit_sha), None ) if not use_pr: logging.error(f"No PR found for hash: {settings.commit_sha}") return commits = list(use_pr.get_commits()) current_commit = [c for c in commits if c.sha == settings.commit_sha][0]
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Aug 09 15:52:41 UTC 2024 - 3.1K bytes - Viewed (0) -
cmd/hasher.go
package cmd import ( "crypto/md5" "encoding/hex" "github.com/minio/minio/internal/hash/sha256" ) // getSHA256Hash returns SHA-256 hash in hex encoding of given data. func getSHA256Hash(data []byte) string { return hex.EncodeToString(getSHA256Sum(data)) } // getSHA256Hash returns SHA-256 sum of given data. func getSHA256Sum(data []byte) []byte { hash := sha256.New() hash.Write(data) return hash.Sum(nil) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 27 13:00:19 UTC 2022 - 1.4K bytes - Viewed (0) -
internal/event/target/kafka_scram_client_contrib.go
} // KafkaSHA256 is a function that returns a crypto/sha256 hasher and should be used // to create Client objects configured for SHA-256 hashing. var KafkaSHA256 scram.HashGeneratorFcn = sha256.New // KafkaSHA512 is a function that returns a crypto/sha512 hasher and should be used // to create Client objects configured for SHA-512 hashing. var KafkaSHA512 scram.HashGeneratorFcn = sha512.New
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Nov 09 04:04:01 UTC 2023 - 3.2K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/testdata/bootstrapdump.json
"minorNumber": 18, "patch": 3 }, "metadata": { "build.type": "RELEASE", "revision.sha": "436f365a8007cd8a13a9f1321e7cce94bcc8883e", "revision.status": "Clean", "ssl.version": "BoringSSL" } } } }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu May 05 11:02:00 UTC 2022 - 739 bytes - Viewed (0) -
bin/update_proxy.sh
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Update the Proxy SHA in istio.deps with the first argument # Exit immediately for non zero status set -e # Check unset variables set -u # Print commands set -x SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Aug 28 07:59:44 UTC 2023 - 1.9K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/testdata/configdump.json
"version": { "majorNumber": 1, "minorNumber": 18, "patch": 3 }, "metadata": { "build.type": "RELEASE", "revision.sha": "436f365a8007cd8a13a9f1321e7cce94bcc8883e", "revision.status": "Clean", "ssl.version": "BoringSSL" } } } } } ]
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jun 15 05:44:44 UTC 2021 - 742 bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/tflite-op-request.md
labels: 'comp:lite' --- **System information** - OS Platform and Distribution (e.g., Linux Ubuntu 16.04): - TensorFlow installed from (source or binary): - TensorFlow version (or github SHA if from source): **Provide the text output from tflite_convert** ``` # Copy and paste here ``` **Standalone code to reproduce the issue**
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Jun 15 03:35:58 UTC 2022 - 879 bytes - Viewed (0) -
mvnw.cmd
"}" if "%MVNW_VERBOSE%" == "true" ( echo Finished downloading %WRAPPER_JAR% ) ) @REM End of extension @REM If specified, validate the SHA-256 sum of the Maven wrapper jar file SET WRAPPER_SHA_256_SUM="" FOR /F "usebackq tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO (
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 14 22:24:15 UTC 2024 - 7.5K bytes - Viewed (0)