Hashing function for repeatable hashing of secrets without salt [closed] - php

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 days ago.
Improve this question
I am looking for a bcrypt function which uses pepper only with no random auto generated salt. I need it to be repeatable, because it is for identifiers and I need to index and search for it in the database. So I want to add only pepper to it. Despite the manual the password_hash function no longer supports custom salt option.

Related

Artificial intelligence with PHP [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 days ago.
Improve this question
first of all, I apologize for my poor English.
I am planning to create a user interest recognition system with the help of PHP language, that is, I will recommend my products based on the user's behavior. I decide to use PHP. Can anyone suggest a solution?
I made almost no special effort

UML tool which generates a document and php code automatically [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I am looking for a UML tool with the following features:
Draw diagrams(sequence, class, use case, system architecture, database) by entering some text format or from the code structure.
From the diagram, I should be able to generate a word document with class names, function names, input and output parameters in a suitable format.
From the diagram, I should be able to generate code (classes) in PHP automatically.
Please suggest such tools.

Generate Word document from PHP [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I'm looking for a clean way to generate a Word document from my PHP project. I want to make a Web application with Laravel and I'm trying to print out (or better said: generate) a Word document with the data in my database.
Is there a Laravel extension or a supportive way how to execute this in a clean way?

I'm trying to find a hashing algorithm for my website's login system. [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Im trying to find a secure salted password hashing algorithm for my website. It is recommended that I get one from a reputable source instead of making one on my own. Where can I find such an algorithm?
Im making my front end with HTML and Javascript and my back-end with PHP.
PHP's password_hash() supports bcrypt, which is what I recommend. In short, it's a very expensive algorithm that takes a lot of time to compute, hence making it impossible (very slow, so too costly in practice) to bruteforce.
You can find more information with some more links here.

Stock keeping System [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I want to develope a system where I have 38 stores and I want each store to login and enter their stock.
When a certain store logins they should only access their stock only not for anyone else.
Should I have a table for each store on the sql database?
someone advice please
You would need at the very least two tables. One for storing stores and other for products. One table for each store makes little sense to me.

Categories