Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
4k views

ISO 9797-1 Algorithm 1 [CBC-MAC] in C#

It seems that there're 6 variations to CBC-MAC algorithm. I've been trying to match the MAC algorithm on the PINPad 1000SE [which per manual is ISO 9797-1 Algorithm 1]. I got an excellent start from ...
2
votes
2answers
731 views

Using one key for Encryption and HMAC

I am wondering whether I can use a shared secret key established between two clients as the HMAC key too. I saw that there is a problem when it is used as a CBC-MAC but I haven't found any evidence ...
1
vote
3answers
159 views

How can I implement CBC-MAC with DES?

I should implement a MAC-CBC generation method in C# with some information about the cryptography algorithm. Here's what I have: I should use DES. The key is byte[] {11, 11, 11, 11, 11, 11, 11, 11} ...
0
votes
0answers
213 views

JAVA DES/CBC/PKCS5Padding how encryption translated into iPhone?

source: public static String encrypt(String src, String key) { try { Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding"); DESKeySpec dks = new DESKeySpec(key.substring(0, ...