Encodes a felt252 value into Base64 format This function converts a felt252 value to its Base64 representation using a specialized algorithm that handles the large numeric range of felt252….
Encodes a ByteArray into a Base64 encoded ByteArray. This function processes the input binary data in chunks of 3 bytes, converts them into their corresponding 6-bit values, and combines…
Generic trait for encoding data into Base64 format This trait provides a common interface for encoding various data types into Base64 representation, which is widely used for encoding binary data…
Generic trait for decoding data from Base64 format This trait provides a common interface for decoding Base64 encoded data back to its original binary representation….
Trait for encoding ByteArray data into Base64 format This trait is specialized for ByteArray types, providing efficient encoding operations while maintaining the ByteArray type for both…
Trait for decoding ByteArray data from Base64 format This trait is specialized for ByteArray types, providing efficient decoding operations while maintaining the ByteArray type for both…