public string EncodePrivateKey(string privateKey, string password)
        {
            var key = PrepareKey(password);

            return(AESHelper.Encrypt128ECB(privateKey, key));
        }