Fixed encryption check

This commit is contained in:
David Puglielli 2018-05-29 16:22:26 -07:00
parent b1288208a5
commit 9d1eafd6b3

View file

@ -129,7 +129,7 @@ for ($i = 0; $i < sizeof($columnEncryption); ++$i) {
if (sqlsrv_execute($stmt) == false) { if (sqlsrv_execute($stmt) == false) {
$errors = sqlsrv_errors(); $errors = sqlsrv_errors();
if (!AE\isColEncrypted()) { if (!AE\isDataEncrypted()) {
checkErrors( checkErrors(
$errors, $errors,
array('CE258', '0'), array('CE258', '0'),
@ -148,7 +148,7 @@ for ($i = 0; $i < sizeof($columnEncryption); ++$i) {
} else { } else {
// The INSERT query succeeded with bad credentials, which // The INSERT query succeeded with bad credentials, which
// should only happen when encryption is not enabled. // should only happen when encryption is not enabled.
if (AE\isColEncrypted()) { if (AE\isDataEncrypted()) {
fatalError("Successful insertion with bad credentials\n"); fatalError("Successful insertion with bad credentials\n");
} }
} }