PublicKeyType Simple Type
Defines the value used as a public key that is stored in a signed .sdm file.
<xs:simpleType name="PublicKeyType">
<xs:restriction
base="string"
>
<xs:pattern
value="([0-9]|[a-f]|[A-F]){192,"
/>
</xs:restriction>
</xs:simpleType>
Patterns
The following pattern is defined by the PublicKeyType simple type:
([0-9]|[a-f]|[A-F]){192,
A string that is 192 or more characters long and can contain numbers, lowercase letters, and uppercase letters.