SHA-256 algorithm implementation (С/С++)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
LekKit c6cf8e509a
Fix few warnings
1 year ago
.gitignore Initial commit 4 years ago
LICENSE Initial commit 4 years ago
README.md Update README.md 4 years ago
hash_file.c Add file hashing example, and test vectors 4 years ago
sha256.c Fix few warnings 1 year ago
sha256.h Initial commit 4 years ago
sha256_tests.c Fixed printf() formatting 4 years ago

README.md

sha256

SHA-256 algorithm implementation (С/С++)

  • Pure C with no platform or architecture dependencies
  • Easy to use - just include sha256.h and add sha256.c to your project source files
  • Can be used in C++, extends API appropriately
  • Two types of API: easy - for hashing strings, etc in a single call; extended - for hashing files, streams, etc
  • Based on the pseudocode algorithm from Wikipedia
  • Pretty fast, comparable to sha256sum in speed

Usage

Easy API - String hashing example

const char* str = "test";
char hash[65] = {0}; // Notice the additional null-byte
sha256_easy_hash_hex(str, strlen(str), hash);
printf("%s\n", hash);

Extended API - File hashing example

FILE* file = fopen("test", "rb");
char buffer[1024];
size_t size;
struct sha256_buff buff;
sha256_init(&buff);
while (!feof(file)) {
    // Hash file by 1kb chunks, instead of loading into RAM at once
    size = fread(buffer, 1, 1024, file);
    sha256_update(&buff, buffer, size);
}
char hash[65] = {0};
sha256_finalize(&buff);
sha256_read_hex(&buff, hash);
printf("%s\n", hash);

C++

std::cout << SHA256::hashString("test") << std::endl;

SHA256 buff;
buff.update("test", 4);
std::cout << buff.hash() << std::endl;