Encode and decode Base64 string in C
A simple C program to encode and decode Base64 strings without using any third-party libraries:
Convet HEX-encoded UCS2 string to text with support of Ukrainian
To convert a HEX-encoded UCS2 string to text with support for the Ukrainian language, you'll need to decode the HEX representation, convert it to UTF-16, and then further convert it to UTF-8 encoding. The following C code demonstrates how to accomplish this:
How to check RSA1024-SHA1 siganture of string having crt file?
To check an RSA1024-SHA1 signature of a string using a certificate (.crt file), you need to follow these steps: