Skip to content

Commit

Permalink
De-activate Elgamal test vectors, since that support is not available…
Browse files Browse the repository at this point in the history
… yet

All other tests are passing for me.
  • Loading branch information
slusarz committed Apr 14, 2015
1 parent 86b1c0d commit 3763939
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion framework/Pgp/test/Horde/Pgp/Backend/TestBase.php
Expand Up @@ -96,7 +96,8 @@ public function testEncrypt($key)
public function encryptProvider()
{
return array(
array($this->_getFixture('pgp_public.asc')),
// TODO: Requires Elgamal encryption
// array($this->_getFixture('pgp_public.asc')),
array($this->_getFixture('pgp_public_rsa.txt'))
);
}
Expand Down Expand Up @@ -189,12 +190,14 @@ public function testDecrypt($encrypted, $key, $pass, $expected)
public function decryptProvider()
{
return array(
/* TODO: Requires Elgamal encryption.
array(
$this->_getFixture('pgp_encrypted.txt'),
$this->_getFixture('pgp_private.asc'),
'Secret',
$this->_getFixture('clear.txt')
),
*/
array(
$this->_getFixture('pgp_encrypted_rsa.txt'),
$this->_getFixture('pgp_private_rsa.txt'),
Expand Down

0 comments on commit 3763939

Please sign in to comment.