What is the format of a X.500 distinguished name?

What will be an ideal response?


X.500 is a set of computer networking standards developed by the International Standard Organization (ISO) and covering electronic directory services. The protocols defined by X.500 included directory access protocol, directory system protocol, directory information shadowing protocol, and directory operational bindings management protocol. [4] The most widely used X.500 application is in the specification of public key certificate standards (X.509) and as a way to provide a unique name for every certificate subject name and issuer name. A DN is composed of a series of relative distinguished names (RDNs), and each RDN is composed of one or more attribute-value-assertions (AVAs). An AVA is a name-value pair with a well-defined name. For example, C usually stands for country, O stands for organization, OU stands for organization unit, and CN stands for common name. In theory, any AVA may appear in any level, but in practice, they are listed from least specific, such as a country, to most specific: a common name such as person's name, e-mail address, and so on.

Computer Science & Information Technology

You might also like to view...

MC Flag__________ specifies that the element can store parsed character data (i.e., text).

a) PCDATA. b) CDATA. c) DATA. d) None of the above.

Computer Science & Information Technology

Given the class definition, give the class diagram.

```
class Pair
{
public:
Pair();
Pair(double, double);
void setFirst(double);
void setSecond(double);
double getFirst();
double getSecond();
protected:
double first;
double second;
};
```

Computer Science & Information Technology

What is service-oriented architecture (S O A)?

What will be an ideal response?

Computer Science & Information Technology

A multifunction printer is capable of sending a fax

Indicate whether the statement is true or false

Computer Science & Information Technology