<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Is there any way to apply encryption on data while displaying in UI(SAIL Interface)</title><link>https://community.appian.com/discussions/f/data/29435/is-there-any-way-to-apply-encryption-on-data-while-displaying-in-ui-sail-interface</link><description>Data is residing in DB but is it possible to show encrypted data in UI instead of actual value?</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Is there any way to apply encryption on data while displaying in UI(SAIL Interface)</title><link>https://community.appian.com/thread/143941?ContentTypeID=1</link><pubDate>Fri, 27 Dec 2024 20:13:14 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:dc4230ba-af5c-49d6-a4d7-01e18803139f</guid><dc:creator>venkatrea696188</dc:creator><description>&lt;p&gt;Either creating a custom plugin or if those are user entered values it&amp;#39;s better to save it some where (Boolean value whether it&amp;#39;s a encrypted text or not )&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is there any way to apply encryption on data while displaying in UI(SAIL Interface)</title><link>https://community.appian.com/thread/143939?ContentTypeID=1</link><pubDate>Fri, 27 Dec 2024 19:46:47 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1bcb5903-b44e-4850-8053-ee09d41cdeb6</guid><dc:creator>erickp0002</dc:creator><description>&lt;p&gt;This is data the user enters such as social security number, name,&amp;nbsp;address, etc.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is there any way to apply encryption on data while displaying in UI(SAIL Interface)</title><link>https://community.appian.com/thread/143917?ContentTypeID=1</link><pubDate>Thu, 26 Dec 2024 19:53:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:30041112-7ad1-49ec-b749-2dbcc881864a</guid><dc:creator>Mathieu Drouin</dc:creator><description>&lt;p&gt;Honestly don&amp;#39;t know how you could tell whether a value is encrypted or plain text.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is there any way to apply encryption on data while displaying in UI(SAIL Interface)</title><link>https://community.appian.com/thread/143916?ContentTypeID=1</link><pubDate>Thu, 26 Dec 2024 19:02:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2e968b7d-7af0-4f56-a80f-3aaf225b339b</guid><dc:creator>erickp0002</dc:creator><description>&lt;p&gt;I am using this plugin&amp;nbsp;&amp;nbsp;&lt;a href="https://community.appian.com/b/appmarket/posts/encryption-functions"&gt;Encryption Functions&lt;/a&gt;&amp;nbsp;This is an example&amp;nbsp;to show case what I am trying to do:&lt;pre class="ui-code" data-mode="text"&gt;a!textField(
label: &amp;quot;Owner Name&amp;quot;,
placeholder: &amp;quot;Owner Name&amp;quot;,
value:if(
rule!isEncrypted(string:local!test),
decryptvalue(local!test),
local!test
),
saveInto: {
a!save(local!test,encryptvalue(save!value))
},
required: true
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Please let me know what your&amp;nbsp;thoughts are and I am curious to know how others have implemented this.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is there any way to apply encryption on data while displaying in UI(SAIL Interface)</title><link>https://community.appian.com/thread/143915?ContentTypeID=1</link><pubDate>Thu, 26 Dec 2024 18:57:47 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:061b70f2-f8e8-46ce-b755-230651a36c0a</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;How does it come that you do not know whether a certain value is encrypted or not?&lt;/p&gt;
&lt;p&gt;I do not know which function you use to encrypt the values. Could it be that the encrypted strings start or end with a certain pattern that you could try to detect? As this is not fool proof, the only supported option I see is, to write a plugin function.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is there any way to apply encryption on data while displaying in UI(SAIL Interface)</title><link>https://community.appian.com/thread/143914?ContentTypeID=1</link><pubDate>Thu, 26 Dec 2024 18:27:16 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f0c3a165-84bb-4118-9269-0517b6bbfe8e</guid><dc:creator>venkatrea696188</dc:creator><description>&lt;p&gt;I don&amp;#39;t think there is a way , Can you tell us where you are getting this data from??&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is there any way to apply encryption on data while displaying in UI(SAIL Interface)</title><link>https://community.appian.com/thread/143913?ContentTypeID=1</link><pubDate>Thu, 26 Dec 2024 17:12:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1ba3aeea-1d64-4f96-a1b6-afdc5ed3e547</guid><dc:creator>erickp0002</dc:creator><description>&lt;p&gt;Do you know how can I tell if a string is encrypted or not? For example, if I encrypt a text and want to display the actual value, I need to decrypt it. But if the text was not encrypted before and I use the decrypt function, it&amp;nbsp;will throw an error. So we need: if encrypted, then use decrypt function else just display the value. How can we do this?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is there any way to apply encryption on data while displaying in UI(SAIL Interface)</title><link>https://community.appian.com/thread/116645?ContentTypeID=1</link><pubDate>Fri, 21 Jul 2023 20:36:54 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:7ecfdd20-e553-4008-87c7-fad0750be1eb</guid><dc:creator>Mathieu Drouin</dc:creator><description>&lt;p&gt;You can use this plugin: &lt;a href="https://community.appian.com/b/appmarket/posts/encryption-functions"&gt;community.appian.com/.../encryption-functions&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is there any way to apply encryption on data while displaying in UI(SAIL Interface)</title><link>https://community.appian.com/thread/116643?ContentTypeID=1</link><pubDate>Fri, 21 Jul 2023 20:34:54 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ddaffff8-1e48-4763-88b3-732fd40ef28e</guid><dc:creator>piyusha6151</dc:creator><description>&lt;p&gt;encryptedtextFiled can be used to encrypt while saving into DB. But here what i am looking for if any data is being processed then if it can be encrypted at Appian level whether UI or process report etc.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is there any way to apply encryption on data while displaying in UI(SAIL Interface)</title><link>https://community.appian.com/thread/116636?ContentTypeID=1</link><pubDate>Fri, 21 Jul 2023 20:18:24 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ef7c880a-d7fd-451e-9e0f-860bcfb5b5ed</guid><dc:creator>Mathieu Drouin</dc:creator><description>&lt;p&gt;Was the data saved via an&amp;nbsp;encryptedTextField or was encrypted using another method?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is there any way to apply encryption on data while displaying in UI(SAIL Interface)</title><link>https://community.appian.com/thread/116634?ContentTypeID=1</link><pubDate>Fri, 21 Jul 2023 20:10:14 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4504562e-0e9e-41e0-826f-9256c7f593d0</guid><dc:creator>jamesm4933</dc:creator><description>&lt;p&gt;The purpose of encryption is to make something meaningless to everyone who is not authorized.&amp;nbsp; That being the case, you may want to consider simply not displaying it, or have some kind of meaningless place holder.&lt;/p&gt;
&lt;p&gt;It is possible the &lt;a href="https://docs.appian.com/suite/help/23.2/Encrypted_Text_Component.html"&gt;a!encryptedTextField&lt;/a&gt;, might be what you are looking for, too.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>