search for: outerxor

Displaying 1 result from an estimated 1 matches for "outerxor".

Did you mean: out_error
2010 Oct 19
0
R script help needed for RFC 2104 HMAC algorithm
...hex, dataHex) cmb <- paste(cmb, collapse='') InnerHash <- digest(cmb, algo="md5") opad_bin <- cbind(opad, sapply( strsplit(opad,'') , function(x) paste( bin[x], collapse='' ) ) ) opad_binnum <- sapply( strsplit(opad_bin[,2],'') , as.numeric) OuterXOR <- as.numeric(xor(K_binnum, opad_binnum)) OuterXOR <- matrix(OuterXOR, 4, 128) OuterXOR <- t(OuterXOR) OuterXORbin <- apply(OuterXOR, 1, paste, collapse='') OuterXORhex <- cbind(OuterXORbin, sapply(OuterXORbin, function(x) paste(hex[x], collapse='') )) OuterXORhex &l...