diff --git a/ant/build-core.xml b/ant/build-core.xml index fe5a36ca61..04f8409951 100644 --- a/ant/build-core.xml +++ b/ant/build-core.xml @@ -157,6 +157,9 @@ + + + @@ -238,7 +241,7 @@ - + diff --git a/ant/build-extensions.xml b/ant/build-extensions.xml index 5ef23e887b..e3d47477d4 100644 --- a/ant/build-extensions.xml +++ b/ant/build-extensions.xml @@ -156,6 +156,7 @@ + @@ -194,10 +195,12 @@ + + + - @@ -348,6 +351,18 @@ add:${goal}/extensions/${ext_compress.filename} ${ext_compress.filename}; + + + + + + add:${goal}/extensions/${ext_argon2.filename} + ${ext_argon2.filename}; + diff --git a/test/functions/Argon2CheckHash.cfc b/test/functions/Argon2CheckHash.cfc index db8172e7c0..a90887a367 100644 --- a/test/functions/Argon2CheckHash.cfc +++ b/test/functions/Argon2CheckHash.cfc @@ -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", skip=getJavaVersion()>20, body = function( currentSpec ) { + it( title = "checking Argon2CheckHash function", body = function( currentSpec ) { // skip=getJavaVersion()>20 secret = createUUID(); generateHash = generateArgon2Hash(secret); expect( argon2checkhash(secret, generateHash)).toBeTrue();