GithubHelp home page GithubHelp logo

viniciussanchez / bcrypt Goto Github PK

View Code? Open in Web Editor NEW
177.0 177.0 44.0 243 KB

BCrypt is a password hashing function

License: MIT License

Pascal 100.00%
algorithm bcrypt delphi embarcadero fpc freepascal hash hash-passwords lazarus password

bcrypt's Introduction

Hi there πŸ‘‹

bcrypt's People

Contributors

andrewsbejatto avatar davisouzatb avatar josiasmaceda avatar viniciussanchez avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

bcrypt's Issues

Range Check Error in GenerateHash(); Integer Overflow Exception

TBCrypt.GenerateHash() function raise 'Range Check Error'.

In source TBCryptImpl.MakeSalt: TBytes
while I <= Length(LRandomTemp) do
begin
...
end
It should be change like this
I < Length(LRamdomTemp)

And, also i added {$Q-} top of BCrypt.Core.pas
because,
TBCryptImpl.Encipher(var lr: array of DWORD; const AOffset: Longint);
function raise exception Integer Overflow exception
N := DWORD(N + FSBox[$100 or ((LBlock shr 16) and $FF)]);
stop this line.

Thank you

Bcrypt "error": "Range check error"

depurando o projeto cheguei na procedure TBCryptImpl.MakeSalt. No bloco :-

while I <= Length(LRandomTemp) do
begin
LByteArray[i] := Ord(LRandomTemp[i + 1]); <--- esta gerando erro aqui, pois o length do LRandom estΓ‘ menor
Inc(i);
end;

Para resolver eu alterei a linha while para ---> "while I < Length(LRandomTemp) do"

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.