<ST_CryptProv> (Cryptographic Provider Type)

This simple type specifies the possible types of cryptographic providers which may be used.

example:
<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> (Invalid Encryption Scheme)

Invalid Encryption scheme provided.

<rsaAES> (RSA AES Encryption Scheme)

Specifies that the provider shall support the Advanced Encryption Algorithm standard.

<rsaFull> (RSA Full Encryption Scheme)

Specifies that any suitable provider shall be used.

Referenced By

<modifyVerifier@cryptProviderType>4.3.1.17)

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>