Skip to content

2239559319/sha1-c

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

c-sha1

sha1 implement by c language. a light, simple sha1 library

usage

#include "sha1.h"
#include <string.h>

int main()
{
    const char* input = "abc";
    uint_8 output[20];

    sha1(input, strlen(input), output);

    return 0;
}

Releases

No releases published

Packages

No packages published