2024-03-28 22:19:05 +00:00
|
|
|
# crypto
|
|
|
|
|
2024-04-09 17:47:34 +00:00
|
|
|
Cryptographic tools
|
2024-03-28 22:19:05 +00:00
|
|
|
|
2024-04-11 14:17:42 +00:00
|
|
|
Any functions that return string representations of bytes in hexadecimal format will
|
|
|
|
always be formatted with no leading `0x` and lower case letters
|
|
|
|
|
2024-03-28 22:19:05 +00:00
|
|
|
## Functions
|
|
|
|
|
|
|
|
### b64_encode
|
|
|
|
|
|
|
|
Encodes an `unsigned char *` into base64. User is responsible for freeing the
|
|
|
|
`char *` that is returned.
|
|
|
|
|
|
|
|
```c
|
|
|
|
char *b64_encode(const unsigned char *s, size_t sz);
|
|
|
|
```
|
|
|
|
|
|
|
|
### b64_decode
|
|
|
|
|
|
|
|
Decodes a base64 encoded set of bytes into an `unsigned char *`. User is responsible
|
|
|
|
for freeing the `unsigned char *` that is returned. `decode_sz` is an optional argument
|
|
|
|
in case you need to know the size of the decoded data, otherwise you can just pass `NULL`.
|
|
|
|
|
|
|
|
```c
|
|
|
|
unsigned char *b64_decode(const char *s, size_t sz, size_t *decode_sz);
|
|
|
|
```
|
2024-03-29 01:30:27 +00:00
|
|
|
|
2024-03-29 02:09:39 +00:00
|
|
|
### hex_encode
|
|
|
|
|
|
|
|
Encodes an array of bytes into a string in hex representation. For example, converts
|
2024-04-11 14:17:42 +00:00
|
|
|
`[0xDE, 0xAD, 0xBE, 0xEF]` into `"deadbeef"`. User is responsible for freeing the returned string
|
2024-03-29 02:09:39 +00:00
|
|
|
|
|
|
|
```c
|
|
|
|
const char *hex_encode(const unsigned char *hex, size_t sz);
|
|
|
|
|
|
|
|
// Example
|
2024-04-11 14:17:42 +00:00
|
|
|
unsigned char h[4] = {
|
|
|
|
0xde, 0xad, 0xbe, 0xef
|
|
|
|
};
|
2024-03-29 02:09:39 +00:00
|
|
|
const char *s = hex_encode(h, 4);
|
2024-04-11 14:17:42 +00:00
|
|
|
assert(strcmp(s, "deadbeef") == 0);
|
2024-03-29 02:09:39 +00:00
|
|
|
free(s);
|
|
|
|
```
|
|
|
|
|
2024-03-29 01:30:27 +00:00
|
|
|
### hex_decode
|
|
|
|
|
|
|
|
Decodes a string of characters representing hexadecimal bytes into an array of `unsigned char`.
|
2024-04-11 14:17:42 +00:00
|
|
|
Characters can be in upper or lower case, and can start with a leading `0x` or not.
|
|
|
|
For example, converts `"DEADBEEF"` into `[0xde, 0xad, 0xbe, 0xef]`. User is reponsible for the
|
2024-03-29 02:09:39 +00:00
|
|
|
freeing of the returned byte array
|
2024-03-29 01:30:27 +00:00
|
|
|
|
|
|
|
```c
|
|
|
|
unsigned char *hex_decode(const char *orig, size_t *sz);
|
|
|
|
|
|
|
|
// Example
|
2024-03-29 02:09:39 +00:00
|
|
|
unsigned char *s = hex_decode("DEADBEEF", &s_sz);
|
2024-03-29 01:30:27 +00:00
|
|
|
unsigned char h[4] = {
|
|
|
|
0xDE, 0xAD, 0xBE, 0xEF
|
|
|
|
};
|
|
|
|
for (size_t i = 0; i < 4; ++i) {
|
|
|
|
assert(s[i] == h[i]);
|
|
|
|
}
|
|
|
|
free(s);
|
2024-03-29 14:18:01 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### hex_to_str
|
|
|
|
|
|
|
|
Converts an array of `unsigned char` into a string based on the ASCII values of each byte. User is
|
|
|
|
responsible for freeing the returned string.
|
|
|
|
|
|
|
|
```c
|
|
|
|
const char *hex_to_str(const unsigned char *hex, size_t sz);
|
2024-04-09 17:47:34 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### repeating_key_xor
|
|
|
|
|
|
|
|
Performs a repeating-key XOR encryption on an array of bytes. User is responsible for freeing the returned array
|
|
|
|
|
|
|
|
```c
|
|
|
|
const unsigned char* repeating_key_xor(const unsigned char* s, size_t s_sz, const unsigned char* key, size_t k_sz);
|
|
|
|
```
|
|
|
|
|
|
|
|
### repeating_key_xor_s
|
|
|
|
|
|
|
|
Performs a repeating-key XOR encryption on a string. Returns the encrypted string as an array of bytes. User is
|
|
|
|
responsible for freeing the returned array
|
|
|
|
|
|
|
|
```c
|
|
|
|
const unsigned char *repeating_key_xor_s(const char* s, const char* key);
|
|
|
|
```
|
2024-05-04 18:35:54 +00:00
|
|
|
|
|
|
|
### hamming_distance
|
|
|
|
|
2024-05-06 00:05:12 +00:00
|
|
|
Calculates the Hamming Distance (the number of differing bits) between two arrays of unsigned bytes
|
|
|
|
|
|
|
|
```c
|
|
|
|
unsigned int hamming_distance(unsigned char *a, unsigned char *b);
|
|
|
|
```
|
|
|
|
|
|
|
|
### hamming_distance_s
|
|
|
|
|
2024-05-04 18:35:54 +00:00
|
|
|
Calculates the Hamming Distance (the number of differing bits) between two strings
|
|
|
|
|
|
|
|
```c
|
2024-05-06 00:05:12 +00:00
|
|
|
unsigned int hamming_distance_s(const char *a, const char *b);
|
2024-05-04 18:35:54 +00:00
|
|
|
```
|