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;
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
add a comment |
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
add a comment |
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
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
magento2 certification
asked Jul 13 at 7:15
Navin BhudiyaNavin Bhudiya
9301 gold badge12 silver badges27 bronze badges
9301 gold badge12 silver badges27 bronze badges
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
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.
add a comment |
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
in both field data store as encrypted and not readable as i practically test
– Navin Bhudiya
Jul 13 at 7:38
add a comment |
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
add a comment |
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.
add a comment |
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.
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.
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
add a comment |
add a comment |
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
in both field data store as encrypted and not readable as i practically test
– Navin Bhudiya
Jul 13 at 7:38
add a comment |
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
in both field data store as encrypted and not readable as i practically test
– Navin Bhudiya
Jul 13 at 7:38
add a comment |
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
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
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
add a comment |
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
add a comment |
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
add a comment |
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
add a comment |
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
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
answered Jul 13 at 20:03
Mohit RaneMohit Rane
77617 bronze badges
77617 bronze badges
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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