I installed a certificate in two windows machines (both windows 7 x86) and when I access the properties of this certificate by certmgr, the "Subject Alternative Name" section are different for both machines. The one that contains "2.16.76.1.3.3" is correct, is the oficial OID for "CNPJ". I tried to export the certificate of the "right" machine and doesn't work. I don't know if is there a way to map the OID to "common" names, but I need the original OID. The certificate installed in the two machines is from the same file (.pfx). Certificate details are below:
Display name Certificate OID - Windows
557 Views Asked by Lucas At
1
There are 1 best solutions below
Related Questions in WINDOWS
- Get Maximum Log Size
- Debugging Windows Services while starting
- Possible consequences of duplicate ProgId for different classes
- How to chain BCryptEncrypt and BCryptDecrypt calls using AES in GCM mode?
- mingw-64 conflicting declarations when cross-compiling
- I run an EXE program from a Windows Service but I can't see form C#?
- Why is PowerShell "not recognized" when installing Chocolatey?
- How to check if Windows device is phone or tablet/pc?
- How to add directories to Cygwin gcc default search path
- Can't install anything with pip2 on Windows 7 due to UnicodeDecodeError
- Active directory and linux nslcd binding without extending the AD schema
- How To Prevent Over Scrolling in Scroll Viewer Windows Phone 8.1
- Unicode error from pip install
- Where is the 'EnablePinning' property in the ribbon framework's recent items?
- How can I implement the same models and data across ASP.NET and Windows Apps
Related Questions in CERTIFICATE
- Ruby on Windows XP: How to change directory of SSL certificates
- iOS CSR Certificate is not generating correctly
- Wrong vertificate signature algorithm in X509Certificate for SHA256withDSA using Java
- Migrate ClickOnce certificate from Sha1 to SHA256 and run on .NET 4.0 client machines
- How to create CSR with SANs using keytool
- Import cert in ApplicationPool identity Personal certificate store
- Application is not recognized by Game Center after iOS Certificate renewal
- Firefox automatically choose certificate, without ui dialog
- Do all ActiveMQ clients need a client certificate?
- Wildcard SSL - Which to chose and what is the key differences?
- Thread-6, RECV TLSv1 ALERT: fatal, handshake_failure
- How can i get Certificate issuer information in python?
- What certificates does 'curl' use by default?
- Android Client certificate 403
- C# : How can I retrieve the "personal" certificates installed on a remote computer
Related Questions in OID
- How to read SNMP OID Output (bits) (hrPrinterDetectedErrorState)
- org.jboss.jca.adapters.jdbc.jdk6.WrappedConnectionJDK6 cannot be cast to org.postgresql.PGConnection
- defining private MIB under experimental node
- openssl change type of custom OIDs fields in subject
- SNMP4J General Variable Binding Error
- PostgreSQL: from OID to Bytea
- Figure out memory usage using SNMP on Windows
- How to encode snmp oid number greater than 32768?
- how to read file in liquibase changeset sql script on spring boot application
- Problems resolving Oracle SID via LDAP/OID lookup with Thin JDBC Client
- How to obtain all OIDs from all MIBs
- Copy data from ORACLE Internet Directory (OID) to apacheDS LDAP
- Get info from switch with SNMP
- Migration from SQL Server database to PostgreSQL database in corda
- Can not access data from given OIDs using net-snmp
Related Questions in CERTUTIL
- Firefox - add certificate with certutil.exe - Windows XP
- certutil 403 errors when verifying SSL certificate with certutil
- Import pfx file into particular certificate store from command line
- From VBA to CMD - how insert result of command to cell
- EXE created from batch file doesn't run
- Storing large file within batch file
- Why does windows certutil and openSSL display CSR (pkcs#10) signature bytes differently?
- Is there a simple backup program in existance that will perform a SHA256 hash check to verify data?
- CRL is expired, but ChainStatus is telling me RevocationStatusUnknown
- Does certutil's -csp "Microsoft Platform Crypto Provider" option store the private key in the TPM?
- Display name Certificate OID - Windows
- Import SSL certificate by certutil in InstallShield
- How do I make CertUtil recursively go into my folders and subfolders
- How do you convert a .CSR / p10 / PKCS#10 file to .DER format in java?
- Build Mozilla NSS statically linked
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If the certificate came from the same source (the same PFX) then the Subject Alternative Name entry is probably the same. The difference is one of the two computers has had 2.16.76.1.3.3 registered with a name (CNPJ), and the other hasn't.
CryptRegisterOIDInfo can be used to register name/value (and other data) mappings for an OID; presumably the "right" machine had that called by some software at some point to register CNPJ.
This is just a UI display issue (Windows CertUI uses friendly names when it can, dotted-decimal OIDs otherwise).