Demonstrate a simple http get scenario of partial encrypted json data. The server send a json object that contains some encrypted field data. The encrypted field names ends with _enc that tells the angularjs-crypto library to decode it automaticly.

Received from Server

{{item.name_enc}}
{{item.value_enc}}
{{item.plain}}

Json received from Server

The json data will be decrypted on the client side by the angularjs-crypto library.

Client Side decrypted Data

{{item.name_enc}}
{{item.value_enc}}
{{item.plain}}

Json decrypted