Skip to content

Commit

Permalink
move Argon2 to an extension
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Apr 22, 2024
1 parent ac52f01 commit eb17e3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functions/Argon2CheckHash.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ component extends="org.lucee.cfml.test.LuceeTestCase" {

function run( testResults , testBox ) {
describe( title = "Testcase for Argon2CheckHash function", body = function() {
it( title = "checking Argon2CheckHash function", body = function( currentSpec ) { // skip=getJavaVersion()>20
it( title = "checking Argon2CheckHash function", skip=getJavaVersion()>20, body = function( currentSpec ) {
secret = createUUID();
generateHash = generateArgon2Hash(secret);
expect( argon2checkhash(secret, generateHash)).toBeTrue();
Expand Down

0 comments on commit eb17e3b

Please sign in to comment.