turn off enc header until all clients are updated

This commit is contained in:
Kyle Spearrin 2017-04-07 09:26:43 -04:00
parent 57116c4f54
commit 7c91066618
1 changed files with 2 additions and 1 deletions

View File

@ -286,7 +286,8 @@ angular
cipherString = cipherString + '|' + mac; cipherString = cipherString + '|' + mac;
} }
return encType + '.' + cipherString; // TODO: Turn on whenever ready to support encryption type headers
return /*encType + '.' +*/ cipherString;
}; };
_service.rsaEncrypt = function (plainValue, publicKey) { _service.rsaEncrypt = function (plainValue, publicKey) {