{"id":38143,"date":"2025-05-20T13:14:47","date_gmt":"2025-05-20T11:14:47","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=38143"},"modified":"2025-05-20T13:14:50","modified_gmt":"2025-05-20T11:14:50","slug":"different-types-of-oracle-wallets","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/different-types-of-oracle-wallets\/","title":{"rendered":"Different types of Oracle wallets"},"content":{"rendered":"\n<p>In this blog post I will explain the different types of Oracle wallet with the auto_login feature.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-is-an-oracle-wallet\">What is an Oracle Wallet<\/h2>\n\n\n\n<p>An Oracle wallet is used to store certificates for Listeners with https protocol, or it can be used as an encrypted password store for Oracle logins.<\/p>\n\n\n\n<p>Technically, an Oracle wallet is an encrypted, password-protected <a href=\"https:\/\/en.wikipedia.org\/wiki\/PKCS_12\">PKCS#12 container file<\/a> (<code>ewallet.p12<\/code>) that also can be accessed with <a href=\"https:\/\/docs.openssl.org\/master\/man1\/openssl\/\">openssl tools<\/a> to show and extract keys and certificates. <\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\nopenssl pkcs12 -nokeys -info -in ewallet.p12\n<\/pre><\/div>\n\n\n<p>Storing credentials (user\/password\/tns_alias) in an Oracle wallet is a proprietary extension from Oracle which is not understood by openssl. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Secret bag\nBag attributes\n    localKeyID: AA BB CC DD ....\nBag Type: 1.2.840.113549.1.16.12.12\nBag Value: <strong>&lt;Unsupported tag 16&gt;<\/strong><\/code><\/pre>\n\n\n\n<p>Generally, <strong>do not<\/strong> modify an Oracle wallet with openssl tools! To work with Oracle wallets, use the <code>orapki<\/code> or <code>mkstore<\/code> utilities in $ORACLE_HOME\/bin;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-auto-login-wallets\">Auto-login Wallets<\/h2>\n\n\n\n<p>The PKCS#12 file (<code>ewallet.p12<\/code>) is password protected. To startup SSL Listeners or to login with sqlplus or dgmgrl to a database non-interactive (without a password prompt), a different wallet-type is required, a so-called auto_login* wallet.<\/p>\n\n\n\n<p>How does that work? Oracle creates a proprietary shadow-file of the <code>ewallet.p12<\/code> file, the <code>cwallet.sso<\/code>; Oracle tools like sqlplus or tnslsnr have access to this proprietary file without the need of a password. Security is primarily based on filesystem permissions and a blackbox file structure of the <code>cwallet.sso<\/code>. Not very secure, but even better than cleartext passwords in files.<\/p>\n\n\n\n<p>For this auto-login feature, there are 3 additional wallet-types (2-4):<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>The normal wallet without auto-login (ewallet.p12)<\/li>\n\n\n\n<li>The <strong>auto_login<\/strong> wallet (ewallet.p12, cwallet.sso)<\/li>\n\n\n\n<li>The <strong>auto_login_local<\/strong> wallet (ewallet.p12, cwallet.sso)<\/li>\n\n\n\n<li>The <strong>auto_login_only<\/strong> wallet (cwallet.sso)<\/li>\n<\/ol>\n\n\n\n<p>To create the wallets, use the <code>orapki<\/code> command<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\norapki wallet create -wallet .  #create a wallet in the current directory (non-auto-login)\norapki wallet create -wallet .  -auto_login\norapki wallet create -wallet .  -auto_login_local\norapki wallet create -wallet .  -auto_login_only\n<\/pre><\/div>\n\n\n<h3 class=\"wp-block-heading\" id=\"h-auto-login-only\">auto_login_only<\/h3>\n\n\n\n<p>The auto_login_only wallet is a special case. There is no PCKS#12 container, and you have access to the content without a wallet-password. So you can extract user-credentials in cleartext or private keys without a password! So do not use auto_login_only to store user-certificates\/private-keys or credentials. This type of wallet is intended to only store trusted (public) certificates, required to initialize SSL connections to a remote site.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-auto-login-and-auto-login-local\">auto_login and auto_login_local<\/h3>\n\n\n\n<p>The auto_login and auto_login_local wallet contains both the <code>ewallet.p12<\/code> and the <code>cwallet.sso<\/code> file. To modify the wallet, the wallet password must be provided. <code>orapki<\/code> then updates both files.<\/p>\n\n\n\n<p>The difference of the two wallet types are that the auto-login feature of the auto_login_local wallet can only be used on the host it was created and and by the user who created the wallet. But do not confuse: the <code>ewallet.p12<\/code> file can be accessed with the wallet password on other systems or by other users. The difference is in the <code>cwallet.sso<\/code> file.<\/p>\n\n\n\n<p>The auto_login_local wallet should be used for server certificates (in orapki named user_certificate) The server certificate should not be used on another host.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-determine-the-wallet-type\">Determine the wallet-type<\/h3>\n\n\n\n<p>To see which wallet type is on a system, that is a bit tricky. Oracle tools will not show the wallet type. If there is only a <code>cwallet.sso<\/code>, but no <code>ewallet.p12<\/code> file, then it is probably an auto_login_only wallet. But: it is also possible that someone only copied the <code>cwallet.sso<\/code> file from another system. That works for auto-login, but you can no longer modify the wallet. To test, use <code>mkstore -wrl . -listCredential<\/code>; if it asks for a password, it is not an auto_login_only wallet. <\/p>\n\n\n\n<p>And to see if it is a auto_login_local or auto_login (global) wallet you have to copy it to another host and see if the auto login feature still works or not.<\/p>\n\n\n\n<p>But is there a better way than such try-and-error methods?<\/p>\n\n\n\n<p>Yes! use the <code>od<\/code> (octal dump) utility and analyze the first line.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\nod cwallet.sso | head -n 1 \n<\/pre><\/div>\n\n\n<p>I used different ORACLE_HOME&#8217;s and created with each home 2 wallets of the same login type and compared the output. Then, I identified the third number group of the first line to be constant for the same type of wallet and different for another type of wallet. E.g. for an auto_login_local wallet it is always 034116.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n0000000 174241 034116 000000 003000 000000 020400 012406 010137 #auto_login_local\n0000000 174241 033116 000000 003000 000000 020400 033406 125027 #auto_login (global)\n0000000 174241 033516 000000 003000 000000 020400 065406 020030 #auto_login_only\n<\/pre><\/div>\n\n\n<p>Hint: the output is dependent of the endianness of the system. On X86 architecture with little-endian (example above), the od output of an auto_login_local wallet is &#8220;034116&#8221;, on a big-endian system (e.g. AIX) it is &#8220;047070&#8221;. If you copy the <code>cwallet.sso<\/code> from an AIX system to Linux, you will get the same number group as from a Linux wallet. So the output is dependent on the platform where <code>od<\/code> is called, and not on the platform where the wallet was created. Below you can see the output of a big-endian system:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n0000000  120770 047070 000000 000006 000000 000041 003313 117047 #auto_login_local\n0000000  120770 047066 000000 000006 000000 000041 003321 045646 #auto_login\n0000000  120770 047067 000000 000006 000000 000041 003047 065254 #auto_login_only\n<\/pre><\/div>\n\n\n<p>To get the wallet-type, you can use the following shell-script code<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\n  if &#x5B; -f cwallet.sso ]; then\n    autologincode=$( od cwallet.sso |head -n 1 | awk &#039;{print $3}&#039; )\n    echo autologincode=$autologincode\n    case $autologincode in\n      047066|033116) type=&quot;auto_login (global)&quot;; test -f ewallet.p12 || type=&quot;$type, but ewallet.p12 is missing&quot; ;;\n      047067|033516) type=&quot;auto_login_only&quot;;     test -f ewallet.p12 &amp;&amp; type=&quot;$type, but unknown ewallet.p12 present&quot; ;;\n      047070|034116) type=&quot;auto_login_local&quot;;    test -f ewallet.p12 || type=&quot;$type, but ewallet.p12 is missing&quot; ;;\n      *) echo &quot;unknown&quot; ;;\n    esac\n    echo &quot;Wallet-type is $type&quot;\n  elif &#x5B; -f ewallet.p12 ]; then\n    echo &quot;Wallet-type is without autologin&quot;\n  else\n    echo &quot;No Oracle wallet in this directory&quot;\n  fi\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\" id=\"h-converting-wallets\">Converting wallets<\/h2>\n\n\n\n<p>To convert an auto_login or auto_login_local wallet to a non-auto-login wallet: simply remove the cwallet.sso file.<\/p>\n\n\n\n<p>As long as the ewallet.p12 file exists, it can be converted to an auto_login or auto_login_local wallet<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\norapki wallet create -wallet . -auto_login \norapki wallet create -wallet . -auto_login_local\n<\/pre><\/div>\n\n\n<p>But you can not create an auto_login_only wallet from another wallet type (existing <code>ewallet.p12<\/code>). The error-message is <code>PKI-02001: A wallet already exists at: .<\/code><\/p>\n\n\n\n<p>And to create an auto_login(_local) wallet from an auto_login_only wallet? The command above for conversion works. The type is changed to auto_login, but: Oracle forgets to create the ewallet.p12 file. As a result, you have a wallet that can no longer be modified! \ud83d\ude41<\/p>\n\n\n\n<p>With Oracle tools it seems not to be directly possible, you have to rebuild the wallet. Certificates can be moved by export\/import, but credentials have to be re-added manually. <\/p>\n\n\n\n<p>To move the certificates, first, convert the proprietary cwallet.sso file to a <a href=\"https:\/\/en.wikipedia.org\/wiki\/Java_KeyStore\">jks keystore<\/a>.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\nread PW  # type the password (it is not stored in the shell-history)\norapki wallet pkcs12_to_jks \\\n  -wallet . \\\n  -jksKeyStoreLoc ewallet.jks \\\n  -jksKeyStorepwd $PW\n<\/pre><\/div>\n\n\n<p>Then, you can convert the jks to a p12 file<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\nmkdir new_wallet\/\nkeytool -importkeystore \\\n    -srckeystore ewallet.jks \\\n    -srcstoretype JKS \\\n    -srcstorepass &quot;$PW&quot; \\\n    -destkeystore new_wallet\/ewallet.p12 \\\n    -deststoretype PKCS12 \\\n    -deststorepass &quot;$PW&quot;\n<\/pre><\/div>\n\n\n<p>If it only contains trusted certificates, it can be converted to an Oracle auto_login wallet:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\norapki wallet create -wallet new_wallet\/ -pwd $PW -auto_login  #or -auto_login_local\norapki wallet display -wallet new_wallet\/   #should now work without password\n<\/pre><\/div>\n\n\n<p>But if it also contains &#8220;User Certificates&#8221; (server certificate  and private key), you can use the command above and it looks like an auto_login wallet. But: It ignores the auto-login part, it always asks for a password! \ud83d\ude41<\/p>\n\n\n\n<p>To transfer the user certificate, you have to import it in an empty Oracle wallet<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\ncd new_wallet\nmv ewallet.p12 container.p12\nrm *wallet.*\norapki wallet create -wallet . -auto_login   #create a new, empty wallet\norapki wallet import_pkcs12 -wallet . -pwd $PW -pkcs12file container.p12 -pkcs12pwd $PW\n<\/pre><\/div>\n\n\n<p>Afterwards, we have a working auto_login wallet with the user certificate and some, but probably not all, trusted certificates. Import the missing trusted certificates afterwards<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\norapki wallet add -wallet . -cert Pcs3ss_v4.pem -trusted_cert  -pwd $PW\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\" id=\"h-summary\">Summary<\/h2>\n\n\n\n<p>The auto-login feature of Oracle wallets, which is implemented by the proprietary <code>cwallet.sso<\/code> file, enables non-interactive logins and startup of SSL Listeners within the Oracle world, e.g. for batch processing.<\/p>\n\n\n\n<p>For security reasons, keep an eye on the filesystem permissions. If possible, restrict the access to the owner only (oracle, chmod 600). If there is no need to copy wallets to different servers, use the auto_login<strong>_local<\/strong> wallet type. The advantage is that if someone copies the <code>cwallet.sso<\/code> file to another host, it can not use the auto-login feature.<\/p>\n\n\n\n<p>The auto_login_only wallet is a good solution to store trusted certificates (which are publicly available). Use-case is a wallet for client-connects with TCPS and no need for client-authentication.<\/p>\n\n\n\n<p>All wallet-types, except auto_login_only, can be converted with <code>orapki<\/code> from each type to another. <\/p>\n\n\n\n<p>Converting an auto_login_only wallet is partially possible with a combination of openssl- and Oracle tools.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog post I will explain the different types of Oracle wallet with the auto_login feature. What is an Oracle Wallet An Oracle wallet is used to store certificates for Listeners with https protocol, or it can be used as an encrypted password store for Oracle logins. Technically, an Oracle wallet is an encrypted, [&hellip;]<\/p>\n","protected":false},"author":123,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[59,149],"tags":[],"type_dbi":[],"class_list":["post-38143","post","type-post","status-publish","format-standard","hentry","category-oracle","category-security"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Different types of Oracle wallets - dbi Blog<\/title>\n<meta name=\"description\" content=\"Oracle Wallet - auto_login types and how to convert the types and how to detect the type\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/different-types-of-oracle-wallets\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Different types of Oracle wallets\" \/>\n<meta property=\"og:description\" content=\"Oracle Wallet - auto_login types and how to convert the types and how to detect the type\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/different-types-of-oracle-wallets\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-05-20T11:14:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-20T11:14:50+00:00\" \/>\n<meta name=\"author\" content=\"Martin Bracher\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Martin Bracher\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/different-types-of-oracle-wallets\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/different-types-of-oracle-wallets\\\/\"},\"author\":{\"name\":\"Martin Bracher\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/86cb065eea74ac30961c4cc45ce56c9e\"},\"headline\":\"Different types of Oracle wallets\",\"datePublished\":\"2025-05-20T11:14:47+00:00\",\"dateModified\":\"2025-05-20T11:14:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/different-types-of-oracle-wallets\\\/\"},\"wordCount\":1175,\"commentCount\":0,\"articleSection\":[\"Oracle\",\"Security\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/different-types-of-oracle-wallets\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/different-types-of-oracle-wallets\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/different-types-of-oracle-wallets\\\/\",\"name\":\"Different types of Oracle wallets - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-05-20T11:14:47+00:00\",\"dateModified\":\"2025-05-20T11:14:50+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/86cb065eea74ac30961c4cc45ce56c9e\"},\"description\":\"Oracle Wallet - auto_login types and how to convert the types and how to detect the type\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/different-types-of-oracle-wallets\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/different-types-of-oracle-wallets\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/different-types-of-oracle-wallets\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Different types of Oracle wallets\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/86cb065eea74ac30961c4cc45ce56c9e\",\"name\":\"Martin Bracher\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/864a93d77bcd4cd44bab880a88f25fb5173ffbfac8e6e8775f0b4e056a4fbb56?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/864a93d77bcd4cd44bab880a88f25fb5173ffbfac8e6e8775f0b4e056a4fbb56?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/864a93d77bcd4cd44bab880a88f25fb5173ffbfac8e6e8775f0b4e056a4fbb56?s=96&d=mm&r=g\",\"caption\":\"Martin Bracher\"},\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/author\\\/martinbracher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Different types of Oracle wallets - dbi Blog","description":"Oracle Wallet - auto_login types and how to convert the types and how to detect the type","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.dbi-services.com\/blog\/different-types-of-oracle-wallets\/","og_locale":"en_US","og_type":"article","og_title":"Different types of Oracle wallets","og_description":"Oracle Wallet - auto_login types and how to convert the types and how to detect the type","og_url":"https:\/\/www.dbi-services.com\/blog\/different-types-of-oracle-wallets\/","og_site_name":"dbi Blog","article_published_time":"2025-05-20T11:14:47+00:00","article_modified_time":"2025-05-20T11:14:50+00:00","author":"Martin Bracher","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Martin Bracher","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/different-types-of-oracle-wallets\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/different-types-of-oracle-wallets\/"},"author":{"name":"Martin Bracher","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/86cb065eea74ac30961c4cc45ce56c9e"},"headline":"Different types of Oracle wallets","datePublished":"2025-05-20T11:14:47+00:00","dateModified":"2025-05-20T11:14:50+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/different-types-of-oracle-wallets\/"},"wordCount":1175,"commentCount":0,"articleSection":["Oracle","Security"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/different-types-of-oracle-wallets\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/different-types-of-oracle-wallets\/","url":"https:\/\/www.dbi-services.com\/blog\/different-types-of-oracle-wallets\/","name":"Different types of Oracle wallets - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2025-05-20T11:14:47+00:00","dateModified":"2025-05-20T11:14:50+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/86cb065eea74ac30961c4cc45ce56c9e"},"description":"Oracle Wallet - auto_login types and how to convert the types and how to detect the type","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/different-types-of-oracle-wallets\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/different-types-of-oracle-wallets\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/different-types-of-oracle-wallets\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Different types of Oracle wallets"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/86cb065eea74ac30961c4cc45ce56c9e","name":"Martin Bracher","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/864a93d77bcd4cd44bab880a88f25fb5173ffbfac8e6e8775f0b4e056a4fbb56?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/864a93d77bcd4cd44bab880a88f25fb5173ffbfac8e6e8775f0b4e056a4fbb56?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/864a93d77bcd4cd44bab880a88f25fb5173ffbfac8e6e8775f0b4e056a4fbb56?s=96&d=mm&r=g","caption":"Martin Bracher"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/martinbracher\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/38143","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/123"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=38143"}],"version-history":[{"count":24,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/38143\/revisions"}],"predecessor-version":[{"id":38603,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/38143\/revisions\/38603"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=38143"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=38143"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=38143"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=38143"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}