Giter Club home page Giter Club logo

sha256's Introduction

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;

sha256's People

Contributors

lekkit avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.