This repository has been archived on 2023-10-10. You can view files and clone it, but cannot push or open issues/pull-requests.
hackfridge/terminal/hash-one.c

12 lines
197 B
C

#include <stdio.h>
#include "ldap.h"
int main(int argc, char** argv) {
char hash[130];
if(argc < 3)
return 1;
hash_mifare(argv[1], argv[2], hash);
printf("%s\n", hash);
return 0;
}