.NET等同于Java Crypto的东西

时间:2010-07-17 14:38:18

标签: java .net cryptography

有人能告诉我以下Java方法的等效.NET类/方法是什么:

decryptCipher = Cipher.getInstance("DES/ECB/PKCS5Padding");
decryptCipher.init(2, getKey(0));
decryptCipher.doFinal(data);

其中getKey()返回SecretKeySpec类型的对象(数据为虚拟):

public static Key getKey(int cipher) {
    if (cipher == 0) {
      return new SecretKeySpec(new byte[] { 1, 1, 1, 1, 1, 1, 1, 1 }, "DES");
    }
    return new SecretKeySpec(new byte[] { 2, 2, 2, 2, 2, 2, 2, 2 }, "DES");
  }

非常感谢

1 个答案:

答案 0 :(得分:1)