Problem I’ve been spending some time learning Rust and I came across the Cryptopals Challenges. This is my implementation of […]
Tag: base64
Proper usage of “using” statement in base64 encode method
Problem I used the example on here, but with little changes in order to write a base64 encoder method. I […]
PHP Base64 ByteArray Decoder
Problem I have a third party system that submits what I am assuming is a byte array data from OBDII […]
Checking MIME Type from a base64 string
Problem I’ve written the following extension to determine the MIME type of a base64 string. It’s worked in my local […]
Base64 implementation in C#
Problem I’ve written the following unsafe C# method to convert a byte array to Base64 encoding. It works, but it […]