Query: openssl_spki_verify
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
OPENSSL_SPKI_VERIFY(3) 1 OPENSSL_SPKI_VERIFY(3) openssl_spki_verify - Verifies a signed public key and challengeSYNOPSISstring openssl_spki_verify (string &$spkac)DESCRIPTIONValidates the supplied signed public key and challengePARAMETERSo $spkac - Expects a valid signed public key and challengeRETURN VALUESReturns a boolean on success or failure.ERRORS/EXCEPTIONS Emits an E_WARNING level error if an invalid argument is passed via the $spkac parameter.EXAMPLESExample #1 openssl_spki_verify(3) example Validates an existing signed public key and challenge <?php $pkey = openssl_pkey_new('secret password'); $spkac = openssl_spki_new($pkey, 'challenge string'); if (openssl_spki_verify(preg_replace('/SPKAC=/', '', $spkac))) { echo $spkac; } else { echo "SPKAC validation failed"; } ?> Example #2 openssl_spki_verify(3) example from <keygen> Validates an existing signed public key and challenge issued from the <keygen> element <?php if (openssl_spki_verify(preg_replace('/SPKAC=/', '', $_POST['spkac']))) { echo $spkac; } else { echo "SPKAC validation failed"; } ?> <keygen name="spkac" challenge="challenge string" keytype="RSA">SEE ALSOopenssl_spki_new(3), openssl_spki_export_challenge(3), openssl_spki_export(3), openssl_md_method(3), openssl_csr_new(3), openssl_csr_sign(3). PHP Documentation Group OPENSSL_SPKI_VERIFY(3)
Related Man Pages |
---|
spkac(1) - redhat |
spkac(1) - osx |
spkac(1ssl) - debian |
spkac(1) - opendarwin |
openssl_spki_new(3) - php |
Similar Topics in the Unix Linux Community |
---|
safeword challenge |
Substring and Join |
Can we echo something for "down key" |
Ssh-keygen (Saving the key failed:) |
How to write in multiple output files in perl? |