💾 Archived View for gmi.noulin.net › gitRepositories › sha256 › file › test.c.gmi captured on 2023-01-29 at 13:17:42. Gemini links have been rewritten to link to archived content

View Raw

More Information

-=-=-=-=-=-=-

sha256

Log

Files

Refs

LICENSE

test.c (215B)

     1 #! /usr/bin/env sheepy
     2 
     3 #include "libsheepyObject.h"
     4 #include "sha256.h"
     5 
     6 int main(int ARGC, char** ARGV) {
     7 
     8   char *clear = "a random password";
     9 
    10   char *result = sha256S(clear);
    11 
    12   puts(result);
    13   free(result);
    14 }