2

RSA を使用して PHP で暗号化された文字列を C# で復号化しようとしていますが、私の人生では正しく理解できません。問題を .NET と PHP の 2 つのサンプル テスト アプリに要約しました。

C# の場合:

class Program
  {
    static void Main(string[] args)
    {

      RSACryptoServiceProvider provider = new RSACryptoServiceProvider();
      string fileName = @"C:\privateKey";
      if (File.Exists(fileName))
      {
        provider.FromXmlString(File.ReadAllText(fileName));  
      }
      else
      {
      File.WriteAllText(fileName, provider.ToXmlString(true));
      }
      if(args.Length > 0)
      {
       string decrypted = Encoding.UTF8.GetString(provider.Decrypt(Convert.FromBase64String(args[0]), false));
        Console.WriteLine("decrypted: {0}", decrypted);
      }
      else
      {
        Console.WriteLine(provider.ToXmlString(false));
      }
      Console.ReadLine();
    }
  }

これを初めて実行すると、出力されます(適切にフォーマットされています):

<RSAKeyValue>
  <Modulus>
    2P8G+ospDboN87+FIWSzFA9E1QVXCDy4bO9YZPe1MTcxO7VhlBYmLy1J7b
    rSheaTa8RamrdeXe2Ev0y5O7zyxo/Bxw4W2UfnVAAFK+bgb8f0FicnSosAlGC95m5Goid9wWPf/QtqDa
    NxSMBBjULA1WKzA7+3HQncAenODYypOiE=
  </Modulus>
  <Exponent>AQAB</Exponent>
</RSAKeyValue>

キーが実行間で正しく保存およびロードされることを確認しました。

次に、Crypt_RSA Packageを使用して PHP でこれを行います。

include('Crypt/RSA.php');
$keyXML = <<<EOS
<RSAKeyValue>
  <Modulus>2P8G+ospDboN87+FIWSzFA9E1QVXCDy4bO9YZPe1MTcxO7VhlBYmLy1J7brSheaTa8RamrdeXe2Ev0y5O7zyxo/Bxw4W2UfnVAAFK+bgb8f0FicnSosAlGC95m5Goid9wWPf/QtqDaNxSMBBjULA1WKzA7+3HQncAenODYypOiE=</Modulus>
  <Exponent>AQAB</Exponent>
</RSAKeyValue>
EOS;
$doc = DOMDocument::loadXML($keyXML);
$modulus = $doc->getElementsByTagName("Modulus")->item(0)->nodeValue;
$exponent = $doc->getElementsByTagName("Exponent")->item(0)->nodeValue;
$key = Crypt_RSA_Key::factory(base64_decode($modulus), base64_decode($exponent), 'public'); 

$crypt = new Crypt_RSA();

echo $crypt->encrypt("hello", $key)

これにより、復号化された文字列が出力されます。

CBGFdK+NXq39ZigXkW6JChHHCCUTzHzjsEPqdoaNJtZgTCRQfIIR6IU4m5LOHGidLaLWN7cIM9ImNdSsAsMH9awkZ7uW0KXdqQjhVGeXzmC6EuSHqrSzYiIZp+1F5Rxhg/JFD/Or3eQ+UIHm/4YtNTyys6S3maClitk5KV68lhs=

最後に、これを入力として C# アプリを再度実行すると、Decrypt メソッドを呼び出すと次の例外が発生します。

System.Security.Cryptography.CryptographicException was unhandled
  Message=Bad Data.
  Source=mscorlib
  StackTrace:
       at System.Security.Cryptography.CryptographicException.ThrowCryptographicException(Int32 hr)
       at System.Security.Cryptography.RSACryptoServiceProvider.DecryptKey(SafeKeyHandle pKeyContext, Byte[] pbEncryptedKey, Int32 cbEncryptedKey, Boolean fOAEP, ObjectHandleOnStack ohRetDecryptedKey)
       at System.Security.Cryptography.RSACryptoServiceProvider.Decrypt(Byte[] rgb, Boolean fOAEP)
       at ConsoleApplication1.Program.Main(String[] args) in C:\development\FundCentric\src\Utilities\ConsoleApplication1\ConsoleApplication1\Program.cs:line 27
       at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
       at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
       at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
       at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean ignoreSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Threading.ThreadHelper.ThreadStart()
  InnerException:

率直に言って、私はもう他に何を試せるか分からないところまで来ています。何がうまくいかない可能性があるか、他に何ができるかについての提案は大歓迎です。

4

1 に答える 1

1

既知の問題。ブロック内のバイト順を元に戻します。

于 2011-03-29T14:35:06.283 に答える