Jak zaszyfrować identyfikator ciągu zapytania w ActionLink mvc4

Cześć wszystkim, jak mogę przekazać zaszyfrowany identyfikatorActionLink, to jest to, co napisałem w moimview

@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