- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 191 for base64id (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
kotlin-js-store/yarn.lock
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== base64id@2.0.0, base64id@~2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/base64id/-/base64id-2.0.0.tgz#2770ac6bc47d312af97a8bf9a634342e0cd25cb6" integrity sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sat Jul 22 12:28:51 GMT 2023 - 87.4K bytes - Click Count (0) -
src/main/java/jcifs/smb1/util/Base64.java
*/ package jcifs.smb1.util; /** * Utility class for Base64 encoding and decoding operations. * Provides methods to convert between binary data and Base64 encoded strings. */ public class Base64 { /** * Private constructor to prevent instantiation of this utility class. */ private Base64() { // Utility class - not instantiable }Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.1K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/building/DefaultModelBuilderTest.java
@Override public ModelSource resolveModel(Dependency dependency) throws UnresolvableModelException { return switch (dependency.getManagementKey()) { case BASE1_ID -> new StringModelSource(BASE1); case BASE2_ID -> new StringModelSource(BASE2); default -> null; }; } } static class BaseModelResolver implements ModelResolver { @OverrideCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 5.2K bytes - Click Count (0) -
src/archive/tar/testdata/neg-size.tar.base64
Ian Lance Taylor <******@****.***> 1765577893 -0800
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Mon Dec 15 16:34:13 GMT 2025 - 693 bytes - Click Count (0) -
src/archive/tar/testdata/writer-big-long.tar.base64
Ian Lance Taylor <******@****.***> 1765577893 -0800
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Mon Dec 15 16:34:13 GMT 2025 - 2K bytes - Click Count (0) -
src/archive/tar/testdata/gnu-sparse-big.tar.base64
Ian Lance Taylor <******@****.***> 1765577893 -0800
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Mon Dec 15 16:34:13 GMT 2025 - 6.8K bytes - Click Count (0) -
src/archive/tar/testdata/pax-sparse-big.tar.base64
Ian Lance Taylor <******@****.***> 1765577893 -0800
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Mon Dec 15 16:34:13 GMT 2025 - 8.1K bytes - Click Count (0) -
internal/config/identity/openid/jwks.go
switch key.Kty { case "RSA": if key.N == "" || key.E == "" { return nil, errMalformedJWKRSAKey } // decode exponent ebuf, err := base64.RawURLEncoding.DecodeString(key.E) if err != nil { return nil, errMalformedJWKRSAKey } nbuf, err := base64.RawURLEncoding.DecodeString(key.N) if err != nil { return nil, errMalformedJWKRSAKey } var n, e big.Int n.SetBytes(nbuf)Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Apr 02 23:02:35 GMT 2024 - 3.1K bytes - Click Count (0) -
internal/crypto/sse-c.go
return key, ErrMissingCustomerKeyMD5 } clientKey, err := base64.StdEncoding.DecodeString(h.Get(xhttp.AmzServerSideEncryptionCustomerKey)) if err != nil || len(clientKey) != 32 { // The client key must be 256 bits long return key, ErrInvalidCustomerKey } keyMD5, err := base64.StdEncoding.DecodeString(h.Get(xhttp.AmzServerSideEncryptionCustomerKeyMD5))
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 5.2K bytes - Click Count (0) -
src/main/java/org/codelibs/core/misc/Base64Util.java
*/ package org.codelibs.core.misc; import java.util.Base64; import org.codelibs.core.collection.ArrayUtil; import org.codelibs.core.lang.StringUtil; /** * Utility class for handling Base64 encoding and decoding. * <p> * This class now uses the standard {@link java.util.Base64} implementation * instead of a custom implementation, providing better security and performance.Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat Nov 22 11:21:59 GMT 2025 - 2.1K bytes - Click Count (0)