コード例 #1
0
ファイル: EjsonCrypto.cs プロジェクト: jakegough/jaytwo.ejson
        public string GetEncryptedJson(string json)
        {
            var jObject = GetEncryptedJObject(json);

            return(JObjectTools.GetJson(jObject));
        }
コード例 #2
0
ファイル: EjsonCrypto.cs プロジェクト: jakegough/jaytwo.ejson
        public string GetDecryptedJson(string json, IPrivateKeyProvider keyProvider = null)
        {
            var jObject = GetDecryptJObject(json, keyProvider);

            return(JObjectTools.GetJson(jObject));
        }