Como criptografar o ID da string de consulta no mvc4 ActionLink

Oi tudo como posso passar o id encriptado emActionLink, isso é o que eu escrevi na minhaview

@model IEnumerable<forumAPP.tblTechnology>
@foreach (var item in Model)
{
string techName=item.TechName;
@Html.ActionLink(techName, "Details","Home", new { TopicID = item.TechID },null) // Here I would like to encrypt the TopicID
<br />
<br />
@Html.DisplayFor(modelItem => item.TechDesc)
}

questionAnswers(3)

yourAnswerToTheQuestion