我用过:
<?php
include('Crypt/RSA.php');
$xml = '<RSAParameters xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Exponent>AQAB</Exponent>
<Modulus>sMFsHSyxAP5N85yvx/XDs9acJa30qwBjoOdDKvNOHJUYBpspwatkdtErCqM2W6tXH9rbvhIn8/nqW4OqAdLinlgkEJoQ/qnzKjYJhHl4YzKFL6Wp+iFRH6ar6ZWOE87LeNQ0nHwlXKoWkJQKV8NB38XRw6aLvNTj8Po2yaFDbQFztsJ+ILkumRh7Leu77IV+124Swc6JqLRt5z2FnDX869dRi2fqcnFa1EHEBsPEndVd2HSeJUncTQiWJ9SNRU+WLltVVewYiGheqr1ABab++3XM5qrB6fWn/RN9Fcg5nM8fachAFSX2YRrEsg7mcbNALRes6OEdpI0LBdX8Wdw6oQ==</Modulus>
</RSAParameters>';
$rsa = new Crypt_RSA();
$rsa->loadKey($xml);
$rsa->setEncryptionMode(CRYPT_RSA_ENCRYPTION_PKCS1);
$encryptedPassword = $rsa->encrypt('password');
echo base64_encode($encryptedPassword);
在Linux中完美运行但现在我无法在使用cygwin的Windows中运行它。它给出了一个错误:
缺少`-exec'的参数
甚至使用过:
<?xml version="1.0" encoding="utf-16"?>
但无法构建html文件。
我甚至尝试过:
{{1}}
但是出错了:
跳过目录
答案 0 :(得分:0)
你的逃脱似乎逃脱了错误的事情:
\\;
收益\;
;
为shell本身生成一个令牌\;
会产生;
(使用此一个)所以你的命令是:
find ./components -iname "*.html" -exec rsync -R '{}' ./build/ \;