pbelutest.c 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * Copyright 2015-2017 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #include <openssl/evp.h>
  10. #include "testutil.h"
  11. /*
  12. * Password based encryption (PBE) table ordering test.
  13. * Attempt to look up all supported algorithms.
  14. */
  15. static int test_pbelu(void)
  16. {
  17. int i, failed = 0;
  18. int pbe_type, pbe_nid, last_type = -1, last_nid = -1;
  19. for (i = 0; EVP_PBE_get(&pbe_type, &pbe_nid, i) != 0; i++) {
  20. if (!TEST_true(EVP_PBE_find(pbe_type, pbe_nid, NULL, NULL, 0))) {
  21. TEST_note("i=%d, pbe_type=%d, pbe_nid=%d", i, pbe_type, pbe_nid);
  22. failed = 1;
  23. break;
  24. }
  25. }
  26. if (!failed)
  27. return 1;
  28. /* Error: print out whole table */
  29. for (i = 0; EVP_PBE_get(&pbe_type, &pbe_nid, i) != 0; i++) {
  30. failed = pbe_type < last_type
  31. || (pbe_type == last_type && pbe_nid < last_nid);
  32. TEST_note("PBE type=%d %d (%s): %s\n", pbe_type, pbe_nid,
  33. OBJ_nid2sn(pbe_nid), failed ? "ERROR" : "OK");
  34. last_type = pbe_type;
  35. last_nid = pbe_nid;
  36. }
  37. return 0;
  38. }
  39. int setup_tests(void)
  40. {
  41. ADD_TEST(test_pbelu);
  42. return 1;
  43. }