EncryptData

Returns (Task<byte[]>)

Tanslate the provided Data into something readable.

Name Description
data

Encrypt Data

Example in C#

// Returns: Byte
var item = await client.EncryptData(Byte data);

Example in CURL



           curl -X POST \
               https://keepapi.feenicshosting.com/api/currentuser/encrypt \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -D '{
                       "$type":"System.Byte[], mscorlib",
                       "$value":"AA=="
                   }'