1
0
mirror of https://github.com/Daichimarukana/uwuzu.git synced 2026-06-05 03:24:41 +00:00

uwuzu v1.3.6 new_planet

This commit is contained in:
Daichimarukana
2024-04-24 00:17:27 +09:00
parent c59f9a3366
commit 9c39e54191
94 changed files with 7116 additions and 1464 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
$key_pair = openssl_pkey_new(array(
'private_key_bits' => 2048, // 秘密鍵のビット数
'private_key_type' => OPENSSL_KEYTYPE_RSA // RSA秘密鍵を生成
));
// 秘密鍵を取得する
openssl_pkey_export($key_pair, $private_key);
echo $private_key;
?>