Skip to content

woXrooX/SHA256

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 

Repository files navigation

C++ SHA256 Implementation.

Usage

#include <iostream>
#include "sha256.h"

int main(){
  std::string data = "Data";
  woXrooX::Sha256 hash;
  std::cout << hash.digest(data) << '\n';
  
  return 0;
}

Output

cec3a9b89b2e391393d0f68e4bc12a9fa6cf358b3cdf79496dc442d52b8dd528

Releases

No releases published

Packages

No packages published

Languages