<ST_CryptProv>
(Cryptographic Provider Type)
This simple type specifies the possible types of cryptographic providers which may be used.
<p:modifyVerifier p:cryptProviderType="rsaAES" ... />
The @cryptProviderType
attribute value of rsaAES
specifies that the cryptographic provider type shall be an Advanced Encryption Standard provider. ]
This simple type's contents are a restriction of the XML Schema string datatype.
The following are possible enumeration values for this type:
Enumeration Value |
Description |
---|---|
|
Invalid Encryption scheme provided. |
|
Specifies that the provider shall support the Advanced Encryption Algorithm standard. |
|
Specifies that any suitable provider shall be used. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_CryptProv">
<restriction base="xsd:string">
<enumeration value="rsaAES"/>
<enumeration value="rsaFull"/>
<enumeration value="invalid"/>
</restriction>
</simpleType>