Skip to content

Commit

Permalink
only test argon2 when available
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Sep 6, 2024
1 parent 64f6fc7 commit 8916235
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions custom/bundle-test/index.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@
systemOutput( "", true );
systemOutput( "S3", true );
s3exists( bucketName="extension-download", objectName="test", accessKeyId="test", secretAccessKey="test" ); // will throw
systemOutput( "", true );
systemOutput( "Argon", true );
generateArgon2Hash( "lucee" );
if (structKeyExists(getFunctionList(), "generateArgon2Hash")){
systemOutput( "", true );
systemOutput( "Argon", true );
generateArgon2Hash( "lucee" );
}
adminPassword = "admin";
/*
Expand Down

0 comments on commit 8916235

Please sign in to comment.