Derivepass Scrypt Save Abandoned

Dumb self-contained scrypt implementation

Project README

Dumb scrypt

Build Status

Dumb and simple verifiable implementation of scrypt

Usage

#include <assert.h>
#include <string.h>

#include "scrypt.h"

int main() {
  int err;
  scrypt_state_t state;
  const char* passphrase;
  const char* salt;
  uint8_t out[32];

  state.n = 1024;
  state.r = 8;
  state.p = 16;
  err = scrypt_state_init(&state);
  assert(err == 0);

  scrypt(&state,
         (const uint8_t*) passphrase,
         strlen(passphrase),
         (const uint8_t*) salt,
         strlen(salt),
         out,
         sizeof(out));
  scrypt_state_free(&state);

  /* Use `out` */

  return 0;
}

Building

npm install && npm test
ls -la ./out/Release/libscrypt.a

Using as dependency

This project uses gypkg as a build tool. Please refer to its readme to use this project as dependency.

LICENSE

This software is licensed under the MIT License.

Copyright Fedor Indutny, 2017.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Open Source Agenda is not affiliated with "Derivepass Scrypt" Project. README Source: derivepass/scrypt
Stars
26
Open Issues
0
Last Commit
7 years ago

Open Source Agenda Badge

Open Source Agenda Rating