Searched refs:pemtype (Results 1 – 2 of 2) sorted by relevance
/third_party/openssl/test/recipes/ |
D | 20-test_dhparam.t | 32 my $pemtype; 43 $pemtype = "PKCS3"; 45 $pemtype = "X9.42"; 47 $pemtype = ""; 50 $pemtype = ""; 53 ok(($format eq "PEM") && defined $pemtype, "Checking format is PEM"); 58 $pemtype = $type; 70 ok(($type eq $pemtype) && ($type eq $readtype), 71 "Checking parameter type is ".$type." ($pemtype, $readtype)");
|
/third_party/openssl/test/ |
D | pemtest.c | 29 static const char *pemtype = "PEMTESTDATA"; variable 44 || !TEST_true(BIO_printf(b, "-----BEGIN %s-----\n", pemtype)) in test_b64() 46 || !TEST_true(BIO_printf(b, "-----END %s-----\n", pemtype)) in test_b64() 50 if (!TEST_int_eq(memcmp(pemtype, name, strlen(pemtype)), 0) in test_b64() 72 || !TEST_true(BIO_printf(b, "-----BEGIN %s-----\n", pemtype)) in test_invalid() 74 || !TEST_true(BIO_printf(b, "-----END %s-----\n", pemtype)) in test_invalid()
|