answersLogoWhite

0


Best Answer

*.pfx contains the private key and *.cer does not contain the private key

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

.pfx

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the file extension used by default for a certifcate file that contains the private key?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the file extension used by default for a certificate file that contains the private key?

.pfx


What is the file extension used by default for a certificate file that does not contain a private key?

.cer for file without private key, .pfx for file with private key


What is the file extension used by default for a certificate file that does not contain the private key?

to kill yall so just leave this question alone


The fields in a c program are by default private is true or not?

I guess you mean C++, not C.Data fields of a structure/union are public by default,those of a class are private by default.


What is a default access specifier for variable in c sharp?

Default access specifier in c# is private. if you don't specify it automaticaly takes it as private.


Will private mortgage insurance pay your loan if you default?

no


What is the default access specifier in C plus plus?

private


In java by default all class variables are public protected or private?

The default (no qualifiers) is different from any of those three.


Which is java default access specifier?

There is no such thing as an access specifier in Java. There are access modifiers.The default access modifier if unspecified is to allow access to classes in the current package only, except within an interface where the default is 'public'


What is mean by accessibility?

Class access is the ability for any given class to access the functions of another class. Private access limits access to data and code just to the class that contains the private access modifier. The so-called "default" access grants private access, as well as access to any class in the same package. Protected access grants the same as "default" access, and also allows subclasses to access the code and data. Public access allows any class in any package to access the code and data.


Are private student loan cosigners in danger if you default on other loans they didn't cosign?

OP here with more details: the private student loans they are cosigned on are current/paid on time, but other private student loans (with the same lender) are about to default. Can this in any way cause problems for my cosigner?


When class will be used and when structure will be used?

In class default members are private and in structure default members are public ,When ever you want to hide data from outside functions then you can use class.But in ANSI C we can hide data by using private access specifier.