Lines Matching refs:key
2 OpenSSL private key functions
6 if (!@openssl_pkey_new()) die("skip cannot create private key");
10 echo "Creating private key\n";
24 die("failed to create private key");
31 echo "Export key to file\n";
35 echo "Load key from file - array syntax\n";
40 die("failed to load key using array syntax");
44 echo "Load key using direct syntax\n";
49 die("failed to load key using direct syntax");
53 echo "Load key manually and use string syntax\n";
59 die("failed to load key using string syntax");
69 Creating private key
70 Export key to file
71 Load key from file - array syntax
72 Load key using direct syntax
73 Load key manually and use string syntax