string) $keys Public keys retrieved from TypeKey * @return bool */ protected function checkSignature( $msg, $r, $s, $keys ) { return parent::checkSignature( $msg, $r, $s, $keys ); } /** * Fetches the public keys from the specified file or URL $file. * * The file must be composed of space-separated values for p, g, q, and * pub_key, like this: * p= g= q= pub_key= * * The format of the returned array is: * * array( 'p' => p_val, 'g' => g_val, 'q' => q_val, 'pub_key' => pub_key_val ) * * * @throws ezcAuthenticationTypekeyException * if the keys from the TypeKey public keys file could not be fetched * @return array(string=>string) */ public function fetchPublicKeys( $file ) { return parent::fetchPublicKeys( $file ); } } ?>