W tym poście chciałbym opisać sposób konwersji wartości hex na base64.
Do zadania przygotuje dwa kody jeden w Go Lang, drugi w C.
Dołączono tekst który ma zostać zapisany jako base64.
- 49276d206b696c6c696e6720796f757220627261696e206c696b65206120706f69736f6e6f7573206d757368726f6f6d
Podany ciąg po przekonwertowaniu na ASCII da następujące zdanie:
- I'm killing your brain like a poisonous mushroom
Nie jest to konieczne do rozwiązania zadania.
Po zakodowaniu ciągu bajtów jako ciąg znaków mam otrzymać:
- SSdtIGtpbGxpbmcgeW91ciBicmFpbiBsaWtlIGEgcG9pc29ub3VzIG11c2hyb29t
Musimy wykonać następujące elementy w programie:
1 - zamiana HEX na bajty
2 - kodowanie base64
3 - wyświetlenie odpowiedzi.
Go:
Cały program wykonujące wspomniane wyżej zadania wygląda następująco:
- package main
- import (
- "encoding/hex"
- "encoding/base64"
- "fmt"
- )
- func main() {
- test := []byte("49276d206b696c6c696e6720796f757220627261696e206c696b65206120706f69736f6e6f7573206d757368726f6f6d")
- //Przygotowanie tablicy o długości
- decode := make([]byte, hex.DecodedLen(len(test)))
- //Przekowertowanie danych test na bajty do tablicy decode
- hex.Decode(decode, test)
- //Przygotowanie tablicy przechowującej zakodowane dane
- eb := make([]byte, base64.StdEncoding.EncodedLen(len(decode)))
- //Kodowanie base64
- base64.StdEncoding.Encode(eb, decode)
- //Wyświetlenie wyniku
- fmt.Printf("%s\r\n", eb)
- }
Można go podzielić na podfunkcje, które będzie łatwiej wykorzystać w późniejszych zadaniach.
- package main
- import (
- "encoding/hex"
- "encoding/base64"
- "fmt"
- )
- func decodeHex(array []byte) ([]byte, error) {
- db := make([]byte, hex.DecodedLen(len(array)))
- _, err := hex.Decode(db, array)
- if err != nil {
- return nil, err
- }
- return db, nil
- }
- func base64Encode(array []byte) ([]byte) {
- eb := make([]byte, base64.StdEncoding.EncodedLen(len(array)))
- base64.StdEncoding.Encode(eb, array)
- return eb
- }
- func main() {
- valueToBase := []byte("49276d206b696c6c696e6720796f757220627261696e206c696b65206120706f69736f6e6f7573206d757368726f6f6d")
- decodeHexArr, err := decodeHex(valueToBase)
- if err != nil {
- fmt.Printf("ERR to decode hex: %s", err)
- return
- }
- baseArr := base64Encode(decodeHexArr)
- fmt.Printf("%s", baseArr)
- }
Program w C:
Wykorzystam tutaj gotową bibliotekę do base64 <link>.
- #include <stdio.h>
- #include <string.h>
- #include <stdlib.h>
- char base46_map[] = {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
- 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f',
- 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
- 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'};
- char* base64_encode(char* plain) {
- char counts = 0;
- char buffer[3];
- char* cipher = malloc(strlen(plain) * 4 / 3 + 4);
- int i = 0, c = 0;
- for(i = 0; plain[i] != '\0'; i++) {
- buffer[counts++] = plain[i];
- if(counts == 3) {
- cipher[c++] = base46_map[buffer[0] >> 2];
- cipher[c++] = base46_map[((buffer[0] & 0x03) << 4) + (buffer[1] >> 4)];
- cipher[c++] = base46_map[((buffer[1] & 0x0f) << 2) + (buffer[2] >> 6)];
- cipher[c++] = base46_map[buffer[2] & 0x3f];
- counts = 0;
- }
- }
- if(counts > 0) {
- cipher[c++] = base46_map[buffer[0] >> 2];
- if(counts == 1) {
- cipher[c++] = base46_map[(buffer[0] & 0x03) << 4];
- cipher[c++] = '=';
- } else { // if counts == 2
- cipher[c++] = base46_map[((buffer[0] & 0x03) << 4) + (buffer[1] >> 4)];
- cipher[c++] = base46_map[(buffer[1] & 0x0f) << 2];
- }
- cipher[c++] = '=';
- }
- cipher[c] = '\0'; /* string padding character */
- return cipher;
- }
- char* base64_decode(char* cipher) {
- char counts = 0;
- char buffer[4];
- char* plain = malloc(strlen(cipher) * 3 / 4);
- int i = 0, p = 0;
- for(i = 0; cipher[i] != '\0'; i++) {
- char k;
- for(k = 0 ; k < 64 && base46_map[k] != cipher[i]; k++);
- buffer[counts++] = k;
- if(counts == 4) {
- plain[p++] = (buffer[0] << 2) + (buffer[1] >> 4);
- if(buffer[2] != 64)
- plain[p++] = (buffer[1] << 4) + (buffer[2] >> 2);
- if(buffer[3] != 64)
- plain[p++] = (buffer[2] << 6) + buffer[3];
- counts = 0;
- }
- }
- plain[p] = '\0'; /* string padding character */
- return plain;
- }
- void hexStringToByteArray(const char *hexString, unsigned char *byteArray, size_t byteArraySize) {
- for (size_t i = 0; i < byteArraySize; i++) {
- sscanf(hexString + 2 * i, "%2hhx", &byteArray[i]);
- }
- }
- int main()
- {
- /* converted by hand
- char array[] = {0x49, 0x27, 0x6d, 0x20, 0x6b, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x20, 0x62,
- 0x72, 0x61, 0x69, 0x6e, 0x20, 0x6c, 0x69, 0x6b, 0x65, 0x20, 0x61, 0x20, 0x70, 0x6f, 0x69, 0x73, 0x6f, 0x6e, 0x6f, 0x75, 0x73,
- 0x20, 0x6d, 0x75, 0x73, 0x68, 0x72, 0x6f, 0x6f, 0x6d };
- */
- char string_array[] = "49276d206b696c6c696e6720796f757220627261696e206c696b65206120706f69736f6e6f7573206d757368726f6f6d";
- size_t len = strlen(string_array) / 2;
- unsigned char array[len];
- hexStringToByteArray(string_array, array, len);
- char *code_array;
- code_array = base64_encode(&array[0]);
- printf("%s", code_array);
- return 0;
- }
Program Python:
W Python wystarczą 4 linijki by całość działała poprawnie:
- import base64
- hex_string = "49276d206b696c6c696e6720796f757220627261696e206c696b65206120706f69736f6e6f7573206d757368726f6f6d"
- bytes_data = bytes.fromhex(hex_string)
- base64_encoded = base64.b64encode(bytes_data).decode("ascii")
- print(f"Base64: {base64_encoded}")