returnJson(new{error=new{message=string.Format("Virus Detected: {0}. As per our <a href=\"{1}\">Terms of Service</a>, Viruses are not permited.",scanResult.InfectedFiles.First().VirusName,Url.SubRouteUrl("tos","TOS.Index"))}});
The encryption library being used is <a href="http://code.google.com/p/crypto-js/">Crypto-JS</a> and the cipher being used is <b>AES-@Model.Config.UploadConfig.KeySize</b> using the mode <b>CTR</b>. The variant of AES is determined by the size of the key used (128, 192, or 256).
</p>
<h3>Upload Requirements</h3>
<p>
The maximum file size per upload is <b>@Utility.GetBytesReadable(Model.Config.UploadConfig.MaxUploadSize)</b>
</p>
<p>
Each file is scanned for viruses at upload. If it fails, it will cancel the upload.
Below are the terms of service for the Teknik Services. By using our services, you agree to all of the below terms.
</p>
<ul>
<li>No illegal content as defined by the country the user resides. If you are viewing content, be mindful that laws differ between regions.</li>
<li>Any Malware uploads or otherwise hosted/linked content will be removed without notice.</li>
<li>Email is limited to a maximum of 100 outbound email messages per day. This is to prevent spam accounts. If your account is flagged as spamming, it will be deleted without notice.</li>
<li>Copyrighted content will be removed only after a valid DMCA is recieved and verified.</li>
returnJson(new{error=new{message=string.Format("Virus Detected: {0}. As per our <a href=\"{1}\">Terms of Service</a>, Viruses are not permited.",scanResult.InfectedFiles.First().VirusName,Url.SubRouteUrl("tos","TOS.Index"))}});