PublicKeyType 簡單型別

更新:2007 年 11 月

定義當做公開金鑰 (Public Key) 使用的值,這個金鑰儲存在已簽署的 .sdm 檔案中。

<xs:simpleType name="PublicKeyType">
    <xs:restriction
        base="string"
    >
        <xs:pattern
            value="([0-9]|[a-f]|[A-F]){192,}"
         />
    </xs:restriction>
</xs:simpleType>

模式

下列模式是由 PublicKeyType 簡單型別所定義:

([0-9]|[a-f]|[A-F]){192,}

字串,可包含 192 個或更多個字元,也可以包含數字、小寫字母和大寫字母。