You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CryptoTest.php 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?php
  2. /**
  3. * Copyright (c) 2014 Lukas Reschke <lukas@owncloud.com>
  4. * This file is licensed under the Affero General Public License version 3 or
  5. * later.
  6. * See the COPYING-README file.
  7. */
  8. namespace Test\Security;
  9. use OC\Security\Crypto;
  10. class CryptoTest extends \Test\TestCase {
  11. public function defaultEncryptionProvider() {
  12. return [
  13. ['Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt.'],
  14. [''],
  15. ['我看这本书。 我看這本書']
  16. ];
  17. }
  18. /** @var Crypto */
  19. protected $crypto;
  20. protected function setUp(): void {
  21. parent::setUp();
  22. $this->crypto = new Crypto(\OC::$server->getConfig());
  23. }
  24. /**
  25. * @dataProvider defaultEncryptionProvider
  26. */
  27. public function testDefaultEncrypt($stringToEncrypt) {
  28. $ciphertext = $this->crypto->encrypt($stringToEncrypt);
  29. $this->assertEquals($stringToEncrypt, $this->crypto->decrypt($ciphertext));
  30. }
  31. public function testWrongPassword() {
  32. $this->expectException(\Exception::class);
  33. $this->expectExceptionMessage('HMAC does not match.');
  34. $stringToEncrypt = 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt.';
  35. $ciphertext = $this->crypto->encrypt($stringToEncrypt);
  36. $this->crypto->decrypt($ciphertext, 'A wrong password!');
  37. }
  38. public function testLaterDecryption() {
  39. $stringToEncrypt = 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt.';
  40. $encryptedString = '44a35023cca2e7a6125e06c29fc4b2ad9d8a33d0873a8b45b0de4ef9284f260c6c46bf25dc62120644c59b8bafe4281ddc47a70c35ae6c29ef7a63d79eefacc297e60b13042ac582733598d0a6b4de37311556bb5c480fd2633de4e6ebafa868c2d1e2d80a5d24f9660360dba4d6e0c8|lhrFgK0zd9U160Wo|a75e57ab701f9124e1113543fd1dc596f21e20d456a0d1e813d5a8aaec9adcb11213788e96598b67fe9486a9f0b99642c18296d0175db44b1ae426e4e91080ee';
  41. $this->assertEquals($stringToEncrypt, $this->crypto->decrypt($encryptedString, 'ThisIsAVeryS3cur3P4ssw0rd'));
  42. }
  43. public function testWrongIV() {
  44. $this->expectException(\Exception::class);
  45. $this->expectExceptionMessage('HMAC does not match.');
  46. $encryptedString = '560f5436ba864b9f12f7f7ca6d41c327554a6f2c0a160a03316b202af07c65163274993f3a46e7547c07ba89304f00594a2f3bd99f83859097c58049c39d0d4ade10e0de914ff0604961e7c849d0271ed6c0b23f984ba16e7d033e3305fb0910e7b6a2a65c988d17dbee71d8f953684d|d2kdFUspVjC0o0sr|1a5feacf87eaa6869a6abdfba9a296e7bbad45b6ad89f7dce67cdc98e2da5dc4379cc672cc655e52bbf19599bf59482fbea13a73937697fa656bf10f3fc4f1aa';
  47. $this->crypto->decrypt($encryptedString, 'ThisIsAVeryS3cur3P4ssw0rd');
  48. }
  49. public function testWrongParameters() {
  50. $this->expectException(\Exception::class);
  51. $this->expectExceptionMessage('Authenticated ciphertext could not be decoded.');
  52. $encryptedString = '1|2';
  53. $this->crypto->decrypt($encryptedString, 'ThisIsAVeryS3cur3P4ssw0rd');
  54. }
  55. public function testLegacy() {
  56. $cipherText = 'e16599188e3d212f5c7f17fdc2abca46|M1WfLAxbcAmITeD6|509457885d6ca5e6c3bfd3741852687a7f2bffce197f8d5ae97b65818b15a1b7f616b68326ff312371540f4ca8ac55f8e2de4aa13aab3474bd3431e51214e3ee';
  57. $password = 'mypass';
  58. $this->assertSame('legacy test', $this->crypto->decrypt($cipherText, $password));
  59. }
  60. }