- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 58 for base64id (0.06 seconds)
-
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) -
src/test/java/jcifs/smb1/util/Base64Test.java
@MethodSource("encodeProvider") void testEncode(byte[] input, String expected) { // Arrange & Act String actual = Base64.encode(input); // Assert assertEquals(expected, actual, "Base64.encode should match expected string"); } /** * Data provider for Base64 strings and expected decoded byte arrays. */ static Stream<Arguments> decodeProvider() {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 3K bytes - Click Count (0)