gpt4 book ai didi

vnc - 如何生成 VNC 密码?

转载 作者:行者123 更新时间:2023-12-04 13:05:03 24 4
gpt4 key购买 nike

嗨,需要使用任何脚本(最好是 php 但任何 perl 都可以)生成 vnc 密码。

问题是“vncpasswd”需要交互式用户操作(提示输入密码和密码验证)。

有没有办法在没有提示的情况下生成它?

最佳答案

来自 here .

#!/bin/perl

use Crypt::CBC;

my $key = pack("C8", 23, 82, 107, 6, 35, 78, 88, 7);
$cipher = Crypt::CBC->new({
'key'=>$key, 'cipher'=>'DES', 'prepend_iv'=>0, 'regenerate_key'=>0
});

$ciphertext = $cipher->encrypt("This data is hush hush");
$plaintext = $cipher->decrypt($ciphertext);

print "Encrypted: $ciphertext\n";
print "Decrypted: $plaintext\n";

关于vnc - 如何生成 VNC 密码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1607830/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com