<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Password Fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075223#M96039</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's weird,  the program works great in my system.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Oct 2005 14:31:24 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2005-10-13T14:31:24Z</dc:date>
    <item>
      <title>Password Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075218#M96034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hellos Guys:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the situation, a create a table where i'll store a user id and a password. It's there a way that the field PASSWORD be encrypted? i mean, if any see the table using SE16, SE11, SE16n, etc.. will see the actual password of the created accounts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Carlos Lerzundy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 14:19:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075218#M96034</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T14:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: Password Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075219#M96035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can use function modules to encrypt and decrpyt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIEB_PASSWORD_ENCRYPT&lt;/P&gt;&lt;P&gt;FIEB_PASSWORD_DECRYPT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you encrypt the password and store it in the database, you will see the encrpyted password only. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 14:22:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075219#M96035</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-10-13T14:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: Password Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075220#M96036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a sample program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0002.


parameters: p_pass type FIEB_ENCRYPTED_PASSWD..

data: encrypted type FIEB_ENCRYPTED_PASSWD.
data: decrypted type FIEB_ENCRYPTED_PASSWD.

call function 'FIEB_PASSWORD_ENCRYPT'
     exporting
          im_decrypted_password = p_pass
     importing
          ex_encrypted_password = encrypted.


call function 'FIEB_PASSWORD_DECRYPT'
     exporting
          im_encrypted_password = encrypted
     importing
          ex_decrypted_password = decrypted.


write:/ p_pass.
write:/ encrypted.
write:/ decrypted.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 14:25:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075220#M96036</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-10-13T14:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Password Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075221#M96037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rich!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 14:25:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075221#M96037</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T14:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: Password Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075222#M96038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich.. it seems that the FIEB_PASSWORD_DECRYPT is not working propertly, i mean, i execute your program (and test the FM in the SE37) but the encrypted data can't be decripted by that FM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 14:29:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075222#M96038</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T14:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: Password Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075223#M96039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's weird,  the program works great in my system.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 14:31:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075223#M96039</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-10-13T14:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: Password Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075224#M96040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the password that you are entering on the selection screen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 14:32:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075224#M96040</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-10-13T14:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: Password Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075225#M96041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"Carlos" (Without the qoutes)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 14:35:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075225#M96041</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T14:35:22Z</dc:date>
    </item>
    <item>
      <title>Re: Password Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075226#M96042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Carlos,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Testing the FM with SE37 doesn't always give back the results. Are you sure that Rich's program isnn't working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 14:35:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075226#M96042</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T14:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: Password Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075227#M96043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes i'm sure.. i create a report using the Rich's Code. The results are:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Password: Carlos                           &lt;/P&gt;&lt;P&gt;Encrypted: } {zyxwvutsrqponmlkjihgfedcba`_^ &lt;/P&gt;&lt;P&gt;Decrypted:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 14:37:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075227#M96043</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T14:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: Password Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075228#M96044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Carlos,  my test program is working good in my system.  Here is my output from my program using your name as the password.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


Carlos                               
y~41qr:{Mt#(kHf5h*GqU6O-ay&amp;gt;xQj)"     
Carlos                                                                                
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you seeing something differnent?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 14:38:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075228#M96044</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-10-13T14:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: Password Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075229#M96045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, now i'm totally thrown.  &lt;span class="lia-unicode-emoji" title=":face_with_open_mouth:"&gt;😮&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 14:38:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075229#M96045</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-10-13T14:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: Password Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075230#M96046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Me too.. well thanks rich.. it would be the system? should i do somethin additional? Well, anyway you deserve the Problem Solved Points &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I continue trying to make it work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks John and Rich for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;CL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 14:41:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075230#M96046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T14:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Password Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075231#M96047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, do you think that you really have to be able to decrypt it?  Here is what I mean,  the passwords only function would be to check that the user is allow to access something else,  so if you are storing the encrypted password,  do you have to check it against the decrypted version in order to check the validation.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know,  i'm confusing you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your program,  you are throwing a screen where the user must enter a password,  the are entering it as plain text, example "Carlos"  when you are processing the check, encrypt it using the function module, then check the encrypted value against the encrypted value which you previously stored in the database.    In my system it is always in encrypted it the same way, so you could just check the encrypted version, right?  No need to ever decrypt.  This way is better for security reasons anyway.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 14:50:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075231#M96047</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-10-13T14:50:27Z</dc:date>
    </item>
    <item>
      <title>Re: Password Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075232#M96048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're so right! I can check the encrypted version.. i don't need to decrypted in order to compare... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards from Venezuela&lt;/P&gt;&lt;P&gt;Carlos &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 14:57:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075232#M96048</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T14:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: Password Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075233#M96049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cool,  please make sure to award points for helpful answers.  Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 14:58:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-fields/m-p/1075233#M96049</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-10-13T14:58:25Z</dc:date>
    </item>
  </channel>
</rss>

