| Package | system.base |
|---|---|
| Inheritance | class CSecurityManager » CApplicationComponent » CComponent |
| Implements | IApplicationComponent |
| Since | 1.0 |
| Version | $Id: CSecurityManager.php 433 2008-12-30 22:59:17Z qiang.xue $ |
| Property | Type | Description | Defined By |
|---|---|---|---|
| behaviors | array | the behaviors that should be attached to this component. | CApplicationComponent |
| encryptionKey | string | the private key used to encrypt/decrypt data. | CSecurityManager |
| isInitialized | boolean | whether this application component has been initialized (i. | CApplicationComponent |
| validation | string | hashing algorithm used to generate HMAC. | CSecurityManager |
| validationKey | string | the private key used to generate HMAC. | CSecurityManager |
| Method | Description | Defined By |
|---|---|---|
| __call() | Calls the named method which is not a class method. | CComponent |
| __get() | Returns a property value, an event handler list or a behavior based on its name. | CComponent |
| __isset() | Checks if a property value is null. | CComponent |
| __set() | Sets value of a component property. | CComponent |
| __unset() | Sets a component property to be null. | CComponent |
| asa() | Returns the named behavior object. | CComponent |
| attachBehavior() | Attaches a behavior to this component. | CComponent |
| attachBehaviors() | Attaches a list of behaviors to the component. | CComponent |
| attachEventHandler() | Attaches an event handler to an event. | CComponent |
| canGetProperty() | Determines whether a property can be read. | CComponent |
| canSetProperty() | Determines whether a property can be set. | CComponent |
| decrypt() | Decrypts data with EncryptionKey. | CSecurityManager |
| detachBehavior() | Detaches a behavior from the component. | CComponent |
| detachBehaviors() | Detaches all behaviors from the component. | CComponent |
| detachEventHandler() | Detaches an existing event handler. | CComponent |
| disableBehavior() | Disables an attached behavior. | CComponent |
| disableBehaviors() | Disables all behaviors attached to this component. | CComponent |
| enableBehavior() | Enables an attached behavior. | CComponent |
| enableBehaviors() | Enables all behaviors attached to this component. | CComponent |
| encrypt() | Encrypts data with EncryptionKey. | CSecurityManager |
| getEncryptionKey() | CSecurityManager | |
| getEventHandlers() | Returns the list of attached event handlers for an event. | CComponent |
| getIsInitialized() | CApplicationComponent | |
| getValidation() | CSecurityManager | |
| getValidationKey() | CSecurityManager | |
| hasEvent() | Determines whether an event is defined. | CComponent |
| hasEventHandler() | Checks whether the named event has attached handlers. | CComponent |
| hasProperty() | Determines whether a property is defined. | CComponent |
| hashData() | Prefixes data with an HMAC. | CSecurityManager |
| init() | Initializes the application component. | CApplicationComponent |
| raiseEvent() | Raises an event. | CComponent |
| setEncryptionKey() | CSecurityManager | |
| setValidation() | CSecurityManager | |
| setValidationKey() | CSecurityManager | |
| validateData() | Validates if data is tampered. | CSecurityManager |
| Method | Description | Defined By |
|---|---|---|
| computeHMAC() | Computes the HMAC for the data with ValidationKey. | CSecurityManager |
| generateRandomKey() | CSecurityManager |
the private key used to encrypt/decrypt data. If the key is not explicitly set, a random one is generated and returned.
hashing algorithm used to generate HMAC. Defaults to 'SHA1'.
the private key used to generate HMAC. If the key is not explicitly set, a random one is generated and returned.
|
protected string computeHMAC(string $data)
| ||
| $data | string | data to be generated HMAC |
| {return} | string | the HMAC for the data |
Computes the HMAC for the data with ValidationKey.
|
public string decrypt(string $data)
| ||
| $data | string | data to be decrypted. |
| {return} | string | the decrypted data |
Decrypts data with EncryptionKey.
|
public string encrypt(string $data)
| ||
| $data | string | data to be encrypted. |
| {return} | string | the encrypted data |
Encrypts data with EncryptionKey.
|
protected string generateRandomKey()
| ||
| {return} | string | a randomly generated key |
|
public string getEncryptionKey()
| ||
| {return} | string | the private key used to encrypt/decrypt data. If the key is not explicitly set, a random one is generated and returned. |
|
public string getValidation()
| ||
| {return} | string | hashing algorithm used to generate HMAC. Defaults to 'SHA1'. |
|
public string getValidationKey()
| ||
| {return} | string | the private key used to generate HMAC. If the key is not explicitly set, a random one is generated and returned. |
|
public string hashData(string $data)
| ||
| $data | string | data to be hashed. |
| {return} | string | data prefixed with HMAC |
Prefixes data with an HMAC.
|
public void setEncryptionKey(string $value)
| ||
| $value | string | the key used to encrypt/decrypt data. |
|
public void setValidation(string $value)
| ||
| $value | string | hashing algorithm used to generate HMAC. It must be either 'MD5' or 'SHA1'. |
|
public void setValidationKey(string $value)
| ||
| $value | string | the key used to generate HMAC |
|
public string validateData(string $data)
| ||
| $data | string | data to be validated. The data must be previously generated using hashData(). |
| {return} | string | the real data with HMAC stripped off. False if the data is tampered. |
Validates if data is tampered.
Be the first person to leave a comment
Please login to leave your comment.