:: com :: sun :: star :: xml :: crypto ::

interface XXMLSecurityContext
Description
* Interface of XML security context * *

This interface specifies a certain signature context. By signature * context, the signer or verifier retrieves key specification.


Methods' Summary
addSecurityEnvironment * Add personal security environment , and return the index of the added env.  
getSecurityEnvironmentNumber * Get the number of security environments  
getSecurityEnvironmentByIndex * Get personal security environment  
getSecurityEnvironment * An handy method to get the first personal security environment. * In xmlsec/nss, the first personal security environment should be the "internal slot"  
getDefaultSecurityEnvironmentIndex * Get the ID of the internal security environment  
setDefaultSecurityEnvironmentIndex * set the ID of the internal security environment  
Methods' Details
addSecurityEnvironment
long
addSecurityEnvironment( [in] XSecurityEnvironment  aSecurityEnvironment )
raises( ::com::sun::star::security::SecurityInfrastructureException );

Description
* Add personal security environment , and return the index of the added env.
getSecurityEnvironmentNumber
long
getSecurityEnvironmentNumber();

Description
* Get the number of security environments
getSecurityEnvironmentByIndex
XSecurityEnvironment
getSecurityEnvironmentByIndex( [in] long  index );

Description
* Get personal security environment
getSecurityEnvironment
XSecurityEnvironment
getSecurityEnvironment();

Description
* An handy method to get the first personal security environment. * In xmlsec/nss, the first personal security environment should be the "internal slot"
getDefaultSecurityEnvironmentIndex
long
getDefaultSecurityEnvironmentIndex();

Description
* Get the ID of the internal security environment
setDefaultSecurityEnvironmentIndex
void
setDefaultSecurityEnvironmentIndex( [in] long  index );

Description
* set the ID of the internal security environment
Top of Page