T
TJ
Hi,
I have a data has been encrypted by RSACryptoServiceProvider.
I know that this data has been encrypted by passing true in fOAEP paramenter
in Encrypt method.
fOAEP
Type: System..::.Boolean
true to perform direct RSA encryption using OAEP padding (only available on
a computer running Microsoft Windows XP or later); otherwise, false to use
PKCS#1 v1.5 padding.
As you see, true means that it is only available for XP or later.
I have private key, but I don't have source code to access this encryption
part.
I need to access this encrypted data from our mobile solution which is .NET
Compact Framework 2.0.
In Decrypt method, of course, I need to pass same true value to the fOAEP
paramter in order to get the decrypted data, however, true can't be passed
since this is Pocket PC platform, which is Compact Framework 2.0...
Is there anyway I can get the decrypted data from CF 2.0?
Only one way I can think of is to create a web service/server component
whatever sitting on the desktop, then the PocketPC needs to get the decrypted
data from that service... However, if possible, I would like to avoid to
create extra layer...
Any idea?
Thanks
I have a data has been encrypted by RSACryptoServiceProvider.
I know that this data has been encrypted by passing true in fOAEP paramenter
in Encrypt method.
fOAEP
Type: System..::.Boolean
true to perform direct RSA encryption using OAEP padding (only available on
a computer running Microsoft Windows XP or later); otherwise, false to use
PKCS#1 v1.5 padding.
As you see, true means that it is only available for XP or later.
I have private key, but I don't have source code to access this encryption
part.
I need to access this encrypted data from our mobile solution which is .NET
Compact Framework 2.0.
In Decrypt method, of course, I need to pass same true value to the fOAEP
paramter in order to get the decrypted data, however, true can't be passed
since this is Pocket PC platform, which is Compact Framework 2.0...
Is there anyway I can get the decrypted data from CF 2.0?
Only one way I can think of is to create a web service/server component
whatever sitting on the desktop, then the PocketPC needs to get the decrypted
data from that service... However, if possible, I would like to avoid to
create extra layer...
Any idea?
Thanks