Skip to content

Commit 70ab3e2

Browse files
Update soap.c
1 parent 721db3c commit 70ab3e2

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

code/logic/soap.c

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,6 @@ static const char *SKIP_WORDS[] = {
130130
NULL // Sentinel to mark the end
131131
};
132132

133-
static void hash_to_hex(const uint8_t *hash, size_t len, char *out_hex) {
134-
for (size_t i = 0; i < len; ++i) {
135-
sprintf(out_hex + i * 2, "%02x", hash[i]);
136-
}
137-
out_hex[len * 2] = '\0';
138-
}
139-
140133
/**
141134
* @brief Convert leetspeak to normal letters.
142135
*/

0 commit comments

Comments
 (0)