summaryrefslogtreecommitdiff
path: root/5a.c
diff options
context:
space:
mode:
Diffstat (limited to '5a.c')
-rw-r--r--5a.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/5a.c b/5a.c
deleted file mode 100644
index d8bbd7f..0000000
--- a/5a.c
+++ /dev/null
@@ -1,25 +0,0 @@
-#include <stdio.h>
-#include <stdbool.h>
-#include <openssl/md5.h>
-
-int main(void){
- int counter=0;
- char inbuf[100];
- unsigned char outbuf[16];
- int prelen;
- scanf("%s%n",inbuf,&prelen);
-
- for(int i=0;i<8;i++){
- while(true){
- int len=prelen+sprintf(inbuf+prelen,"%d",counter);
- counter++;
- MD5((const unsigned char*)inbuf,len,outbuf);
- if(outbuf[0]==0&&outbuf[1]==0&&(outbuf[2]>>4)==0){
- putchar("0123456789abcdef"[outbuf[2]&0xf]);
- fflush(stdout);
- break;
- }
- }
- }
- putchar('\n');
-}