tamperedwithhmacexample.java

来自「Examples using Message Authentication Co」· Java 代码 · 共 68 行

JAVA
68
字号
package chapter3;import java.security.Key;import java.security.MessageDigest;import java.security.SecureRandom;import javax.crypto.Cipher;import javax.crypto.Mac;import javax.crypto.spec.IvParameterSpec;import javax.crypto.spec.SecretKeySpec;/** * Tampered message with HMac, encryption AES in CTR mode */public class TamperedWithHMacExample{       public static void main(        String[]    args)        throws Exception    {        SecureRandom	random = new SecureRandom();        IvParameterSpec ivSpec = Utils.createCtrIvForAES(1, random);        Key             key = Utils.createKeyForAES(256, random);        Cipher          cipher = Cipher.getInstance("AES/CTR/NoPadding", "BC");        String          input = "Transfer 0000100 to AC 1234-5678";        Mac             hMac = Mac.getInstance("HMacSHA1", "BC");        Key             hMacKey = new SecretKeySpec(key.getEncoded(), "HMacSHA1");                System.out.println("input : " + input);                // encryption step                cipher.init(Cipher.ENCRYPT_MODE, key, ivSpec);                byte[] cipherText = new byte[cipher.getOutputSize(input.length() + hMac.getMacLength())];        int ctLength = cipher.update(Utils.toByteArray(input), 0, input.length(), cipherText, 0);                hMac.init(hMacKey);        hMac.update(Utils.toByteArray(input));                ctLength += cipher.doFinal(hMac.doFinal(), 0, hMac.getMacLength(), cipherText, ctLength);                // tampering step                cipherText[9] ^= '0' ^ '9';                // replace digest                // ?                // decryption step                cipher.init(Cipher.DECRYPT_MODE, key, ivSpec);                byte[] plainText = cipher.doFinal(cipherText, 0, ctLength);        int    messageLength = plainText.length - hMac.getMacLength();                hMac.init(hMacKey);        hMac.update(plainText, 0, messageLength);                byte[] messageHash = new byte[hMac.getMacLength()];        System.arraycopy(plainText, messageLength, messageHash, 0, messageHash.length);                System.out.println("plain : " + Utils.toString(plainText, messageLength) + " verified: " + MessageDigest.isEqual(hMac.doFinal(), messageHash));    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?