Themes, Templates and Scripts

[GitHub] Open Source Secure Encryption Class

Submitted by Repentance, , Thread ID: 3182

Thread Closed

RE: [GitHub] Open Source Secure Encryption Class

Repentance
Closed Account
Level:
0
Reputation:
14
Posts:
138
Likes:
7
Credits:
378
OP
26-04-2015, 08:56 PM
This post was last modified: 26-04-2015, 08:57 PM by Repentance
#11
26-04-2015, 02:24 PM
Sozin Wrote:
Any hash is crackable via Bruteforce.

Its not really the hash you should care about, you should focus on prevention of BruteForcing.

Mission impossible, there's no brute forcer on the market that can reverse this.
You'd need to make a custom one and even then, it'd be really hard to decrypt.
Unless you have the source too. (Of the one using it)

RE: [GitHub] Open Source Secure Encryption Class

Sozin
Nan Ihier Gelair Mordor
Divine
Level:
0
Reputation:
91
Posts:
2.33K
Likes:
375
Credits:
11K
26-04-2015, 09:11 PM
#12
26-04-2015, 08:56 PM
Repentance Wrote:
26-04-2015, 02:24 PM
Sozin Wrote:
Any hash is crackable via Bruteforce.

Its not really the hash you should care about, you should focus on prevention of BruteForcing.

Mission impossible, there's no brute forcer on the market that can reverse this.
You'd need to make a custom one and even then, it'd be really hard to decrypt.
Unless you have the source too. (Of the one using it)

Dude, do you know what a bruteforcer is? LOL
Do not let your difficulties fill you with anxiety, after all it is only in the darkest nights that stars shine more brightly. - Ali(a.s)

Developer( PHP, Python, C++, HTML+CSS, JS I am available for Hire. Message Me for details.

RE: [GitHub] Open Source Secure Encryption Class

Repentance
Closed Account
Level:
0
Reputation:
14
Posts:
138
Likes:
7
Credits:
378
OP
26-04-2015, 09:20 PM
#13
26-04-2015, 09:11 PM
Sozin Wrote:
26-04-2015, 08:56 PM
Repentance Wrote:
26-04-2015, 02:24 PM
Sozin Wrote:
Any hash is crackable via Bruteforce.

Its not really the hash you should care about, you should focus on prevention of BruteForcing.

Mission impossible, there's no brute forcer on the market that can reverse this.
You'd need to make a custom one and even then, it'd be really hard to decrypt.
Unless you have the source too. (Of the one using it)

Dude, do you know what a bruteforcer is? LOL

Well, I'd call hashcat as an example. It has a bruteforce function with mode 3.
But the hash isn't symmetric.
abc -> amoned
abc -> pdaxon

RE: [GitHub] Open Source Secure Encryption Class

Sozin
Nan Ihier Gelair Mordor
Divine
Level:
0
Reputation:
91
Posts:
2.33K
Likes:
375
Credits:
11K
26-04-2015, 09:26 PM
#14
26-04-2015, 09:20 PM
Repentance Wrote:
26-04-2015, 09:11 PM
Sozin Wrote:
26-04-2015, 08:56 PM
Repentance Wrote:
26-04-2015, 02:24 PM
Sozin Wrote:
Any hash is crackable via Bruteforce.

Its not really the hash you should care about, you should focus on prevention of BruteForcing.

Mission impossible, there's no brute forcer on the market that can reverse this.
You'd need to make a custom one and even then, it'd be really hard to decrypt.
Unless you have the source too. (Of the one using it)

Dude, do you know what a bruteforcer is? LOL

Well, I'd call hashcat as an example. It has a bruteforce function with mode 3.
But the hash isn't symmetric.
abc -> amoned
abc -> pdaxon

that means each time i hash abc, i get a different hash?
Do not let your difficulties fill you with anxiety, after all it is only in the darkest nights that stars shine more brightly. - Ali(a.s)

Developer( PHP, Python, C++, HTML+CSS, JS I am available for Hire. Message Me for details.

RE: [GitHub] Open Source Secure Encryption Class

Repentance
Closed Account
Level:
0
Reputation:
14
Posts:
138
Likes:
7
Credits:
378
OP
26-04-2015, 09:50 PM
#15
26-04-2015, 09:26 PM
Sozin Wrote:
26-04-2015, 09:20 PM
Repentance Wrote:
26-04-2015, 09:11 PM
Sozin Wrote:
26-04-2015, 08:56 PM
Repentance Wrote:
26-04-2015, 02:24 PM
Sozin Wrote:
Any hash is crackable via Bruteforce.

Its not really the hash you should care about, you should focus on prevention of BruteForcing.

Mission impossible, there's no brute forcer on the market that can reverse this.
You'd need to make a custom one and even then, it'd be really hard to decrypt.
Unless you have the source too. (Of the one using it)

Dude, do you know what a bruteforcer is? LOL

Well, I'd call hashcat as an example. It has a bruteforce function with mode 3.
But the hash isn't symmetric.
abc -> amoned
abc -> pdaxon

that means each time i hash abc, i get a different hash?

Different hash & Salt, yes.
So every hash stored in the database isunique, even with the same password.
You can set your own private key & amount of rounds to make your own hashes that much different from the others.
(thekey is used in XOR & NAND encryption)

RE: [GitHub] Open Source Secure Encryption Class

Sozin
Nan Ihier Gelair Mordor
Divine
Level:
0
Reputation:
91
Posts:
2.33K
Likes:
375
Credits:
11K
27-04-2015, 06:58 AM
#16
Performance Comparison:

1. AmN's upcoming CMS:
[Image: 5wGdxIp.png]

2. NullCrypt:
[Image: nuKfUu4.png]

To keep it fair, I only checked one string, as I would if I were to use your encryption.

But its nice if we neglect the performance Smile
Do not let your difficulties fill you with anxiety, after all it is only in the darkest nights that stars shine more brightly. - Ali(a.s)

Developer( PHP, Python, C++, HTML+CSS, JS I am available for Hire. Message Me for details.

RE: [GitHub] Open Source Secure Encryption Class

Repentance
Closed Account
Level:
0
Reputation:
14
Posts:
138
Likes:
7
Credits:
378
OP
27-04-2015, 09:59 AM
This post was last modified: 27-04-2015, 10:00 AM by Repentance
#17
27-04-2015, 06:58 AM
Sozin Wrote:
Performance Comparison:

1. AmN's upcoming CMS:
[Image: 5wGdxIp.png]

2. NullCrypt:
[Image: nuKfUu4.png]

To keep it fair, I only checked one string, as I would if I were to use your encryption.

But its nice if we neglect the performance Smile

Bit of a weird comparison you're doing here.
The encrypt function is only used when registering.
While the comparison function isused when logging in.

Adding both execution times together is a bit weird.
But keep in mind that you can edit the amount of rounds yourself to make it slower.

Users browsing this thread: 1 Guest(s)