/home/techb158/ileadtechnology.com/vendor/aws/aws-sdk-php/src/Crypto
NameSizeModeActions
Cipher/-0755rm
Polyfill/-0755rm
AbstractCryptoClient.php40840644editdlrm
AbstractCryptoClientV2.php39730644editdlrm
AesDecryptingStream.php35920644editdlrm
AesEncryptingStream.php37670644editdlrm
AesGcmDecryptingStream.php25760644editdlrm
AesGcmEncryptingStream.php27730644editdlrm
AesStreamInterface.php6560644editdlrm
AesStreamInterfaceV2.php7280644editdlrm
DecryptionTrait.php61000644editdlrm
DecryptionTraitV2.php92570644editdlrm
EncryptionTrait.php70300644editdlrm
EncryptionTraitV2.php72170644editdlrm
KmsMaterialsProvider.php39890644editdlrm
KmsMaterialsProviderV2.php35140644editdlrm
MaterialsProvider.php33050644editdlrm
MaterialsProviderInterface.php18510644editdlrm
MaterialsProviderInterfaceV2.php17130644editdlrm
MaterialsProviderV2.php20550644editdlrm
MetadataEnvelope.php16750644editdlrm
MetadataStrategyInterface.php9960644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/aws/aws-sdk-php/src/Crypto/MaterialsProviderV2.php (2055B)
true, 256 => true, ]; /** * Returns if the requested size is supported by AES. * * @param int $keySize Size of the requested key in bits. * * @return bool */ public static function isSupportedKeySize($keySize) { return isset(self::$supportedKeySizes[$keySize]); } /** * Returns the wrap algorithm name for this Provider. * * @return string */ abstract public function getWrapAlgorithmName(); /** * Takes an encrypted content encryption key (CEK) and material description * for use decrypting the key according to the Provider's specifications. * * @param string $encryptedCek Encrypted key to be decrypted by the Provider * for use decrypting other data. * @param string $materialDescription Material Description for use in * decrypting the CEK. * @param string $options Options for use in decrypting the CEK. * * @return string */ abstract public function decryptCek($encryptedCek, $materialDescription, $options); /** * @param string $keySize Length of a cipher key in bits for generating a * random content encryption key (CEK). * @param array $context Context map needed for key encryption * @param array $options Additional options to be used in CEK generation * * @return array */ abstract public function generateCek($keySize, $context, $options); /** * @param string $openSslName Cipher OpenSSL name to use for generating * an initialization vector. * * @return string */ public function generateIv($openSslName) { return openssl_random_pseudo_bytes( openssl_cipher_iv_length($openSslName) ); } }