What is different between obscure and password Field type in system.xmlSaving properties of external platform in custom admin page in magento2Magento 2.0 Backend modelDifference between position and sort_order in customer install scriptDate validation on my custom form on frontend magento 2Magento 2 add custom product attribute validation from install scriptMagento 2 Add new field to Magento_User admin formWhat are the difference between magento 1 and magento 2 databases?Magento Website ErrorGrid Mass Action getting required-entry classValidation for file type not working in File Upload in Magento 2 Store Configuration

What is the metal bit in the front of this propeller spinner?

Why didn't NASA launch communications relay satellites for the Apollo missions?

Host telling me to cancel my booking in exchange for a discount?

Count the identical pairs in two lists

Why is a PhD thesis typically 150 pages?

is FIND WORDS in P?

Is there a guide to help me transition from PSTricks to TikZ?

How to pass array of values in lualatex?

Can a creature sustain itself by eating its own severed body parts?

Has Iron Man made any suit for underwater combat?

How can I disable a reserved profile?

What is the best word describing the nature of expiring in a short amount of time, connoting "losing public attention"?

Is it better to have a 10 year gap or a bad reference?

If hash functions append the length, why does length extension attack work?

What do Unicorns want?

MITM on HTTPS traffic in Kazakhstan 2019

Storyboarding Approaches for the Non-Artistic

Monday's Blocking Donimoes Problem

How does mathematics work?

Why is DC so, so, so Democratic?

Recursive search on Node Tree with Linq and Queue

What does the following chess proverb mean: "Chess is a sea where a gnat may drink from and an elephant may bathe in."

Killing a star safely

Which dice game has a board with 9x9 squares that has different colors on the diagonals and midway on some edges?



What is different between obscure and password Field type in system.xml


Saving properties of external platform in custom admin page in magento2Magento 2.0 Backend modelDifference between position and sort_order in customer install scriptDate validation on my custom form on frontend magento 2Magento 2 add custom product attribute validation from install scriptMagento 2 Add new field to Magento_User admin formWhat are the difference between magento 1 and magento 2 databases?Magento Website ErrorGrid Mass Action getting required-entry classValidation for file type not working in File Upload in Magento 2 Store Configuration






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















is there any difference between a password and obscure field type in system.xml



<field id="secret" type="obscure" translate="label" sortOrder="30" showInDefault="1" showInWebsite="1" showInStore="1">
<label>Secret</label>
<validate>required-entry</validate>
<backend_model>MagentoConfigModelConfigBackendEncrypted</backend_model>
</field>
<field id="passswordsecret" type="password" translate="label" sortOrder="30" showInDefault="1" showInWebsite="1" showInStore="1">
<label>Secret Password</label>
</field>









share|improve this question




























    1















    is there any difference between a password and obscure field type in system.xml



    <field id="secret" type="obscure" translate="label" sortOrder="30" showInDefault="1" showInWebsite="1" showInStore="1">
    <label>Secret</label>
    <validate>required-entry</validate>
    <backend_model>MagentoConfigModelConfigBackendEncrypted</backend_model>
    </field>
    <field id="passswordsecret" type="password" translate="label" sortOrder="30" showInDefault="1" showInWebsite="1" showInStore="1">
    <label>Secret Password</label>
    </field>









    share|improve this question
























      1












      1








      1


      1






      is there any difference between a password and obscure field type in system.xml



      <field id="secret" type="obscure" translate="label" sortOrder="30" showInDefault="1" showInWebsite="1" showInStore="1">
      <label>Secret</label>
      <validate>required-entry</validate>
      <backend_model>MagentoConfigModelConfigBackendEncrypted</backend_model>
      </field>
      <field id="passswordsecret" type="password" translate="label" sortOrder="30" showInDefault="1" showInWebsite="1" showInStore="1">
      <label>Secret Password</label>
      </field>









      share|improve this question














      is there any difference between a password and obscure field type in system.xml



      <field id="secret" type="obscure" translate="label" sortOrder="30" showInDefault="1" showInWebsite="1" showInStore="1">
      <label>Secret</label>
      <validate>required-entry</validate>
      <backend_model>MagentoConfigModelConfigBackendEncrypted</backend_model>
      </field>
      <field id="passswordsecret" type="password" translate="label" sortOrder="30" showInDefault="1" showInWebsite="1" showInStore="1">
      <label>Secret Password</label>
      </field>






      magento2 certification






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jul 13 at 7:15









      Navin BhudiyaNavin Bhudiya

      9301 gold badge12 silver badges27 bronze badges




      9301 gold badge12 silver badges27 bronze badges




















          3 Answers
          3






          active

          oldest

          votes


















          3














          Obscure type is used for display value as secret text. Sometimes, user change value from inspect element and get that secret value.



          Password type also same as obscure type. But, password type field can’t encrypt value as like obscure type. It used for hide value from the field. But, if user change forcefully value from inspect element then, after change they will get value which save in password type.



          For syntax and example you can take reference.






          share|improve this answer






























            2















            type="obscure" : You can define Obscure type using type=”obscure”. Hide value to make sure it will not show in HTML.




            When you forcefully change the type from Obscure to text using Inspect element still you can’t able to see actual value for an obscure type.



            Using Obscure field type you can’t check the field original value by Edit Inspect element from Backend configuration and set the type=”password” to type=”text”. You got the value of the field as ‘******’.




            type="password": Password is a field with type=”password”. Its used for only hide character from the field.




            Using the password field type, you can check the field value by Edit Inspect element from Backend configuration and set the type=”password” to type=”text”. You got the actual value of the field.



            Reference






            share|improve this answer

























            • in both field data store as encrypted and not readable as i practically test

              – Navin Bhudiya
              Jul 13 at 7:38


















            0















            1. Obscure:- Hide value to make sure it will not show in HTML. When you forcefully change the type from Obscure to text using Inspect
            element still you can’t able to see actual value for an obscure type.
            It will show you the field as ‘******’.



            2. Password:- It's used for only hide character from the field. Using the password field type, you can check the field value by Edit Inspect
            element from Backend configuration and set the type=”password” to
            type=”text”. It will show you actual value of the field.




            An obscure field used for security purpose for all the field which have secure data like Payment API Key, API Username, API Password.



            Reference






            share|improve this answer

























              Your Answer








              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "479"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: false,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              imageUploader:
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              ,
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );













              draft saved

              draft discarded


















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f281964%2fwhat-is-different-between-obscure-and-password-field-type-in-system-xml%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              3 Answers
              3






              active

              oldest

              votes








              3 Answers
              3






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              3














              Obscure type is used for display value as secret text. Sometimes, user change value from inspect element and get that secret value.



              Password type also same as obscure type. But, password type field can’t encrypt value as like obscure type. It used for hide value from the field. But, if user change forcefully value from inspect element then, after change they will get value which save in password type.



              For syntax and example you can take reference.






              share|improve this answer



























                3














                Obscure type is used for display value as secret text. Sometimes, user change value from inspect element and get that secret value.



                Password type also same as obscure type. But, password type field can’t encrypt value as like obscure type. It used for hide value from the field. But, if user change forcefully value from inspect element then, after change they will get value which save in password type.



                For syntax and example you can take reference.






                share|improve this answer

























                  3












                  3








                  3







                  Obscure type is used for display value as secret text. Sometimes, user change value from inspect element and get that secret value.



                  Password type also same as obscure type. But, password type field can’t encrypt value as like obscure type. It used for hide value from the field. But, if user change forcefully value from inspect element then, after change they will get value which save in password type.



                  For syntax and example you can take reference.






                  share|improve this answer













                  Obscure type is used for display value as secret text. Sometimes, user change value from inspect element and get that secret value.



                  Password type also same as obscure type. But, password type field can’t encrypt value as like obscure type. It used for hide value from the field. But, if user change forcefully value from inspect element then, after change they will get value which save in password type.



                  For syntax and example you can take reference.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jul 15 at 5:24









                  Rohan HapaniRohan Hapani

                  7,9664 gold badges21 silver badges65 bronze badges




                  7,9664 gold badges21 silver badges65 bronze badges























                      2















                      type="obscure" : You can define Obscure type using type=”obscure”. Hide value to make sure it will not show in HTML.




                      When you forcefully change the type from Obscure to text using Inspect element still you can’t able to see actual value for an obscure type.



                      Using Obscure field type you can’t check the field original value by Edit Inspect element from Backend configuration and set the type=”password” to type=”text”. You got the value of the field as ‘******’.




                      type="password": Password is a field with type=”password”. Its used for only hide character from the field.




                      Using the password field type, you can check the field value by Edit Inspect element from Backend configuration and set the type=”password” to type=”text”. You got the actual value of the field.



                      Reference






                      share|improve this answer

























                      • in both field data store as encrypted and not readable as i practically test

                        – Navin Bhudiya
                        Jul 13 at 7:38















                      2















                      type="obscure" : You can define Obscure type using type=”obscure”. Hide value to make sure it will not show in HTML.




                      When you forcefully change the type from Obscure to text using Inspect element still you can’t able to see actual value for an obscure type.



                      Using Obscure field type you can’t check the field original value by Edit Inspect element from Backend configuration and set the type=”password” to type=”text”. You got the value of the field as ‘******’.




                      type="password": Password is a field with type=”password”. Its used for only hide character from the field.




                      Using the password field type, you can check the field value by Edit Inspect element from Backend configuration and set the type=”password” to type=”text”. You got the actual value of the field.



                      Reference






                      share|improve this answer

























                      • in both field data store as encrypted and not readable as i practically test

                        – Navin Bhudiya
                        Jul 13 at 7:38













                      2












                      2








                      2








                      type="obscure" : You can define Obscure type using type=”obscure”. Hide value to make sure it will not show in HTML.




                      When you forcefully change the type from Obscure to text using Inspect element still you can’t able to see actual value for an obscure type.



                      Using Obscure field type you can’t check the field original value by Edit Inspect element from Backend configuration and set the type=”password” to type=”text”. You got the value of the field as ‘******’.




                      type="password": Password is a field with type=”password”. Its used for only hide character from the field.




                      Using the password field type, you can check the field value by Edit Inspect element from Backend configuration and set the type=”password” to type=”text”. You got the actual value of the field.



                      Reference






                      share|improve this answer
















                      type="obscure" : You can define Obscure type using type=”obscure”. Hide value to make sure it will not show in HTML.




                      When you forcefully change the type from Obscure to text using Inspect element still you can’t able to see actual value for an obscure type.



                      Using Obscure field type you can’t check the field original value by Edit Inspect element from Backend configuration and set the type=”password” to type=”text”. You got the value of the field as ‘******’.




                      type="password": Password is a field with type=”password”. Its used for only hide character from the field.




                      Using the password field type, you can check the field value by Edit Inspect element from Backend configuration and set the type=”password” to type=”text”. You got the actual value of the field.



                      Reference







                      share|improve this answer














                      share|improve this answer



                      share|improve this answer








                      edited Jul 15 at 5:35

























                      answered Jul 13 at 7:25









                      Rakesh DongaRakesh Donga

                      2,9396 silver badges23 bronze badges




                      2,9396 silver badges23 bronze badges












                      • in both field data store as encrypted and not readable as i practically test

                        – Navin Bhudiya
                        Jul 13 at 7:38

















                      • in both field data store as encrypted and not readable as i practically test

                        – Navin Bhudiya
                        Jul 13 at 7:38
















                      in both field data store as encrypted and not readable as i practically test

                      – Navin Bhudiya
                      Jul 13 at 7:38





                      in both field data store as encrypted and not readable as i practically test

                      – Navin Bhudiya
                      Jul 13 at 7:38











                      0















                      1. Obscure:- Hide value to make sure it will not show in HTML. When you forcefully change the type from Obscure to text using Inspect
                      element still you can’t able to see actual value for an obscure type.
                      It will show you the field as ‘******’.



                      2. Password:- It's used for only hide character from the field. Using the password field type, you can check the field value by Edit Inspect
                      element from Backend configuration and set the type=”password” to
                      type=”text”. It will show you actual value of the field.




                      An obscure field used for security purpose for all the field which have secure data like Payment API Key, API Username, API Password.



                      Reference






                      share|improve this answer



























                        0















                        1. Obscure:- Hide value to make sure it will not show in HTML. When you forcefully change the type from Obscure to text using Inspect
                        element still you can’t able to see actual value for an obscure type.
                        It will show you the field as ‘******’.



                        2. Password:- It's used for only hide character from the field. Using the password field type, you can check the field value by Edit Inspect
                        element from Backend configuration and set the type=”password” to
                        type=”text”. It will show you actual value of the field.




                        An obscure field used for security purpose for all the field which have secure data like Payment API Key, API Username, API Password.



                        Reference






                        share|improve this answer

























                          0












                          0








                          0








                          1. Obscure:- Hide value to make sure it will not show in HTML. When you forcefully change the type from Obscure to text using Inspect
                          element still you can’t able to see actual value for an obscure type.
                          It will show you the field as ‘******’.



                          2. Password:- It's used for only hide character from the field. Using the password field type, you can check the field value by Edit Inspect
                          element from Backend configuration and set the type=”password” to
                          type=”text”. It will show you actual value of the field.




                          An obscure field used for security purpose for all the field which have secure data like Payment API Key, API Username, API Password.



                          Reference






                          share|improve this answer














                          1. Obscure:- Hide value to make sure it will not show in HTML. When you forcefully change the type from Obscure to text using Inspect
                          element still you can’t able to see actual value for an obscure type.
                          It will show you the field as ‘******’.



                          2. Password:- It's used for only hide character from the field. Using the password field type, you can check the field value by Edit Inspect
                          element from Backend configuration and set the type=”password” to
                          type=”text”. It will show you actual value of the field.




                          An obscure field used for security purpose for all the field which have secure data like Payment API Key, API Username, API Password.



                          Reference







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Jul 13 at 20:03









                          Mohit RaneMohit Rane

                          77617 bronze badges




                          77617 bronze badges



























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to Magento Stack Exchange!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid


                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.

                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f281964%2fwhat-is-different-between-obscure-and-password-field-type-in-system-xml%23new-answer', 'question_page');

                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

                              Circuit construction for execution of conditional statements using least significant bitHow are two different registers being used as “control”?How exactly is the stated composite state of the two registers being produced using the $R_zz$ controlled rotations?Efficiently performing controlled rotations in HHLWould this quantum algorithm implementation work?How to prepare a superposed states of odd integers from $1$ to $sqrtN$?Why is this implementation of the order finding algorithm not working?Circuit construction for Hamiltonian simulationHow can I invert the least significant bit of a certain term of a superposed state?Implementing an oracleImplementing a controlled sum operation

                              Magento 2 “No Payment Methods” in Admin New OrderHow to integrate Paypal Express Checkout with the Magento APIMagento 1.5 - Sales > Order > edit order and shipping methods disappearAuto Invoice Check/Money Order Payment methodAdd more simple payment methods?Shipping methods not showingWhat should I do to change payment methods if changing the configuration has no effects?1.9 - No Payment Methods showing upMy Payment Methods not Showing for downloadable/virtual product when checkout?Magento2 API to access internal payment methodHow to call an existing payment methods in the registration form?