sort lables before printing

This commit is contained in:
Nikola Petrov 2024-02-05 15:22:07 +01:00
parent e30bbe5ce1
commit fd16840515

View File

@ -4,6 +4,7 @@
#include <fstream>
#include <cstring>
#include <filesystem>
#include <vector>
#include "arg_func.hpp"
#include "func.hpp"
@ -199,9 +200,18 @@ void arg_list(Buffer &decrypted_buffer)
Index *index = (Index *)decrypted_buffer.buffer;
LoginInfo *pass = (LoginInfo *)(decrypted_buffer.buffer + sizeof(Index));
std::vector<std::string> list;
for (size_t i = 0; i < index->count; i++)
{
printf("label: %s\n", decrypted_buffer.buffer + pass[i].label + index->offset);
list.emplace_back(std::string((char *)decrypted_buffer.buffer + pass[i].label + index->offset));
}
std::sort(list.begin(), list.end());
for (auto &&str : list)
{
printf("%s\n", str.c_str());
}
}