Changeset 105949 in vbox for trunk/src/libs/openssl-3.1.7/test/provider_fallback_test.c
- Timestamp:
- Sep 4, 2024 12:53:14 PM (6 months ago)
- svn:sync-xref-src-repo-rev:
- 164683
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/openssl-3.1.7/test/provider_fallback_test.c
r105945 r105949 1 1 /* 2 * Copyright 2020-202 4The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 4 * Licensed under the Apache License 2.0 (the "License"). You may not use … … 40 40 41 41 ok = TEST_ptr(ctx = OSSL_LIB_CTX_new()) 42 && TEST_ptr(prov = OSSL_PROVIDER_load(ctx, "default")); 43 44 if (ok) { 45 ok = test_provider(ctx); 46 if (ok) 47 ok = TEST_true(OSSL_PROVIDER_unload(prov)); 48 else 49 OSSL_PROVIDER_unload(prov); 50 } 42 && TEST_ptr(prov = OSSL_PROVIDER_load(ctx, "default")) 43 && test_provider(ctx) 44 && TEST_true(OSSL_PROVIDER_unload(prov)); 51 45 52 46 OSSL_LIB_CTX_free(ctx);
Note:
See TracChangeset
for help on using the changeset viewer.