検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 13 for plaintext (0.025 sec.)
指定されたテキストを復号し、検証する 12879
« gnupg_decrypt gnupg_deletekey » PHP Manual GnuPG 関数 指定されたテキストを復号し、検証する gnu ... y ( resource $identifier , string $text , string &$plaintext ): array 指定したテキストを復号・検証し、署名の情報 ... ールで得られた gnupg ID。 text 復号したいテキスト。 plaintext plaintext には復号したテキストが格納されます。 戻り ... 合、この関数は署名の情報を返し、復号されたテキストを plaintext に保存します。 失敗した場合、この関数は false を返 ... 例 例1 手続き型の gnupg_decryptverify() の例 <?php $plaintext = "" ; $res = gnupg_init (); gnupg_adddecryptkey ( ...
https://man.plustar.jp/php/function.gnupg-decryptverify.html - [similar]
署名済みテキストを検証する 11120
« gnupg_sign wkhtmltox » PHP Manual GnuPG 関数 署名済みテキストを検証する gnupg_verify (PECL gnu ... string $signed_text , string $signature , string &$plaintext = ? ): array 指定した signed_text を検証し、署名に ... トを検証するには、 signature に false を設定します。 plaintext 平文テキスト。 このオプションのパラメータを渡すと、 ... ます。 例 例1 手続き型の gnupg_verify() の例 <?php $plaintext = "" ; $res = gnupg_init (); // clearsigned $info ... = gnupg_verify ( $res , $signed_text , false , $plaintext ); print_r ( $info ); // detached signature $info ...
https://man.plustar.jp/php/function.gnupg-verify.html - [similar]
データを暗号化する 10117
« openssl_digest openssl_error_string » PHP Manual OpenSSL 関数 データを暗号化する openssl_encry ... ically safe way, like openssl_random_pseudo_bytes $plaintext = "message to be encrypted" ; $cipher = "aes-128-g ... bytes ( $ivlen ); $ciphertext = openssl_encrypt ( $plaintext , $cipher , $key , $options = 0 , $iv , $tag ); // ... pher, $iv, and $tag for decryption later $original_plaintext = openssl_decrypt ( $ciphertext , $cipher , $key , ... $options = 0 , $iv , $tag ); echo $original_plaintext . "\n" ; } ?> 例2 PHP 7.1 より前のバージョンで、AE ...
https://man.plustar.jp/php/function.openssl-encrypt.html - [similar]
指定したテキストに署名する 9308
« gnupg_setsignmode gnupg_verify » PHP Manual GnuPG 関数 指定したテキストに署名する gnupg_sign ( ... る 説明 gnupg_sign ( resource $identifier , string $plaintext ): string 事前に gnupg_addsignkey で設定したキーを ... 使用して plaintext に署名し、 gnupg_setsignmode の設定に応じて署名済み ... nit() あるいは gnupg のコールで得られた gnupg ID。 plaintext 署名したい平文テキスト。 戻り値 成功した場合、この ... ?> 関連キーワード: 署名 , テキスト , 指定 , 関数 , plaintext , setsignmode , identifier , string , 設定 , init ...
https://man.plustar.jp/php/function.gnupg-sign.html - [similar]
匿名の公開鍵暗号による暗号化 9308
« sodium_crypto_box_seal_open sodium_crypto_box_secretkey » PHP Manual Sodium 関数 匿名の公開鍵暗 ... m_crypto_box_publickey ( $keypair ); // Obfuscated plaintext to make the example more fun $plaintext_b64 = "V3J ... FyZSBpbiBQSFAgY2FuIGJlIGEgZGVsaWdodCE=" ; $decoded_plaintext = sodium_base642bin ( $plaintext_b64 , SODIUM_BASE ... NAL ); $sealed = sodium_crypto_box_seal ( $decoded_plaintext , $public_key ); var_dump ( base64_encode ( $seale ...
https://man.plustar.jp/php/function.sodium-crypto-box-seal.html - [similar]
指定したテキストを暗号化し、署名する 9167
« gnupg_encrypt gnupg_export » PHP Manual GnuPG 関数 指定したテキストを暗号化し、署名する gnupg_ ... gnupg_encryptsign ( resource $identifier , string $plaintext ): string 事前に gnupg_addsignkey および gnupg_add ... encryptkey で設定したキーを使用し、指定した plaintext を暗号化・署名します。暗号化・署名済みのテキストを ... nit() あるいは gnupg のコールで得られた gnupg ID。 plaintext 暗号化したいテキスト。 戻り値 成功した場合、この関 ... ード: 署名 , テキスト , 暗号 , 指定 , encryptsign , plaintext , 関数 , identifier , string , キー ...
https://man.plustar.jp/php/function.gnupg-encryptsign.html - [similar]
指定したテキストを暗号化する 8569
« gnupg_deletekey gnupg_encryptsign » PHP Manual GnuPG 関数 指定したテキストを暗号化する gnupg_e ... 説明 gnupg_encrypt ( resource $identifier , string $plaintext ): string 事前に gnupg_addencryptkey で設定したキー ... nit() あるいは gnupg のコールで得られた gnupg ID。 plaintext 暗号化したいテキスト。 戻り値 成功した場合、この関 ... スト , 指定 , encrypt , 関数 , identifier , string , plaintext , resource , encryptsign ...
https://man.plustar.jp/php/function.gnupg-encrypt.html - [similar]
指定したパラメータでプレーンテキストを暗号化する 8093
« mcrypt_enc_self_test mcrypt_generic_deinit » PHP Manual Mcrypt 関数 指定したパラメータでプレー ... ( $key ); echo "Key size: " . $key_size . "\n" ; $plaintext = "This string was AES-256 / CBC / ZeroBytePadding ... t = mcrypt_encrypt ( MCRYPT_RIJNDAEL_128 , $key , $plaintext , MCRYPT_MODE_CBC , $iv ); # prepend the IV for it ... ); # may remove 00h valued characters from end of plain text $plaintext_dec = mcrypt_decrypt ( MCRYPT_RIJNDAEL ... iphertext_dec , MCRYPT_MODE_CBC , $iv_dec ); echo $plaintext_dec . "\n" ; ?> 上の例の出力は以下となります。 Key ...
https://man.plustar.jp/php/function.mcrypt-encrypt.html - [similar]
認証付きの共有鍵による復号 8093
« sodium_crypto_secretbox_keygen sodium_crypto_secretbox » PHP Manual Sodium 関数 認証付きの共有 ... e and key are required to decrypt the $ciphertext $plaintext = sodium_crypto_secretbox_open ( $ciphertext , $no ... nce , $key ); if ( $plaintext !== false ) { echo $plaintext . PHP_EOL ; } ?> 上の ...
https://man.plustar.jp/php/function.sodium-crypto-secretbox-open.html - [similar]
認証付きの共有鍵による暗号化 7478
« sodium_crypto_secretbox_open sodium_crypto_secretstream_xchacha20poly1305_init_pull » PHP Manu ... dom_bytes ( SODIUM_CRYPTO_SECRETBOX_NONCEBYTES ); $plaintext = "message to be encrypted" ; $ciphertext = sodium ... _crypto_secretbox ( $plaintext , $nonce , $key ); var_dump ( bin2hex ( $ciphertex ...
https://man.plustar.jp/php/function.sodium-crypto-secretbox.html - [similar]
PREV 1 2 NEXT