protected static function SocialApi::getEncryptionKey in Social API 8.2
Same name and namespace in other branches
- 3.x src/Entity/SocialApi.php \Drupal\social_api\Entity\SocialApi::getEncryptionKey()
Gets the hash salt for this drupal installation.
Return value
string The encryption key.
2 calls to SocialApi::getEncryptionKey()
- SocialApi::decryptToken in src/
Entity/ SocialApi.php - Decrypts the stored token.
- SocialApi::encryptToken in src/
Entity/ SocialApi.php - Returns the encrypted token.
File
- src/
Entity/ SocialApi.php, line 131
Class
- SocialApi
- Defines a base class for Social API content entities.
Namespace
Drupal\social_api\EntityCode
protected static function getEncryptionKey() {
return Settings::getHashSalt();
}