#pragma once #include #include #include #include #include struct keypair { char* priv; char* pub; }; struct tor_os_str { size_t filled; size_t size; char* pub_file; char* priv_file; struct keypair *keys; }; void tor_os_create(struct tor_os_str* os, char* pub_file, char* priv_file, size_t size); struct keypair* tor_os_append_cursor(struct tor_os_str* os); int tor_os_append(struct tor_os_str* os, char* pub, char* priv); void tor_os_read (struct tor_os_str* os); void tor_os_persist(struct tor_os_str* os); void tor_os_free(struct tor_os_str* os);