Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

A simple SHA-3 / Keccak hash function for Dlang, wraps keccak-tiny C implementation

NotificationsYou must be signed in to change notification settings

IoTone/libkeccak-d

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is a quick and dirty Dlang wrapper around keccak-tiny (a sha3 implementation written in C). Improve it, fix it, use it, and eventually a hero will offer to maintain it, make it into a proper Dlang module.

From NIST: NIST announced the SHA-3 Cryptographic Hash Algorithm Competition on November 2, 2007, and ended the competition on October 2, 2012, when it announced KECCAK as the winning algorithm to be standardized as the new SHA-3.

References

Building

Because this D module wraps a C library, you the reader will need to build the library through means available on your platform. It appears the keecak-tiny library will build with clang, gcc, or probably some other variant not mentioned.

From a posix compliant shell, run sh setup-deps.sh to grab and build keccak-tiny.

Windows Notes

Since we don't provide a VS build or a fancy cmake build (that might be a good idea in the future), it is recommended that you use a POSIX shell like a ConEMU or similar to build. This implies that you will have a Clang or gcc installed as well. Install it before you get started.

On windows you may need to rename your library to keccak-tiny.lib.

Building the D library

We recommend a Dlang compiler based on DMD v2.076.1 or later.

dub build --compiler=ldc2

Testing

dub test --compiler=ldc2

Examples

import iotone.libkeccakubyte[32] dataout;ubyte[] datain = cast(ubyte[])("The quick brown fox jumps over the lazy dog".dup);ubyte[] datain2 = cast(ubyte[])("".dup);shake256(dataout.ptr, 32 /* bytes */, datain.ptr, datain.length);

About

A simple SHA-3 / Keccak hash function for Dlang, wraps keccak-tiny C implementation

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp