创建ICryptoTransform时出现System.Security.CryptpgraphicUnexpectedOperationException

时间:2018-12-17 13:44:31

标签: c# xamarin cryptography

我收到一个错误:System.Security.Cryptography.CryptographicUnexpectedOperationException

当我运行以下命令时:

DESCryptoServiceProvider dESCrypto = new DESCryptoServiceProvider();
byte[] key = { 0, 1, 2, 3, 4, 5, 6, 7, 8 };
byte[] iv = { 0, 1, 2, 3, 4, 5, 6, 7, 8 };
var v = dESCrypto.CreateEncryptor(key, iv);

Stacktrace: at Crimson.CommonCrypto.Cryptor.Create (Crimson.CommonCrypto.CCOperation operation, Crimson.CommonCrypto.CCAlgorithm algorithm, Crimson.CommonCrypto.CCOptions options, System.Byte[] key, System.Byte[] iv) [0x0005d] in /Library/Frameworks/Xamarin.iOS.framework/Versions/12.2.1.12/src/Xamarin.iOS/mcs/class/corlib/CommonCrypto/CommonCrypto.cs:99

它在Xamarin项目中,我希望像在该线程C# Encrypt serialized file before writing to disk的第二个答案中一样使用它

我该如何解决这个问题?

编辑: 使用AES和8个值而不是9个-不幸的是创建了相同的异常

1 个答案:

答案 0 :(得分:3)

您试图将密钥/ IV大小设置为9个字节,但是DES只能使用8个字节。将其更改为如下所示:

import os
if os.name == 'nt':
  import win32api, win32con
def file_is_hidden(p):
  if os.name== 'nt':
    attribute = win32api.GetFileAttributes(p)
    return attribute & (win32con.FILE_ATTRIBUTE_HIDDEN | win32con.FILE_ATTRIBUTE_SYSTEM)
else:
    return p.startswith('.') #linux-osx
[os.remove(f) for f in os.listdir('.') if file_is_hidden(f)]