Lines Matching refs:cert
62 resource openssl_get_publickey(mixed cert)
101 resource openssl_read_x509(mixed cert)
103 Parses the cert and returns a resource that can be used with the
110 Note that this function does not accept the extended cert specification
256 $fp = fopen("/src/openssl-0.9.6/demos/maurice/cert.pem", "r");
257 $cert = fread($fp, 8192);
260 $pk1 = openssl_get_publickey($cert);
264 $fp = fopen("/src/openssl-0.9.6/demos/sign/cert.pem", "r");
265 $cert = fread($fp, 8192);
267 $pk2 = openssl_get_publickey($cert);
310 $fp = fopen("/src/openssl-0.9.6/demos/sign/cert.pem", "r");
311 $cert = fread($fp, 8192);
315 $pubkey = openssl_get_publickey($cert);