2
votes
Statistical Analysis of Server Logs - Correctness of Extrapolation
I'm not sure exactly what measurements we are talking about, but for now let's assume that you want something like the average score. No adjustment is necessary for estimating the mean score of the …
0
votes
Pathfinding on arbitrary non-rectangular bodies
A* search should work just fine in this application. It requires a function which does not overestimate the distance between two points, but the straight-line distance will never be an overestimate …
1
vote
Determine place values for any base
With 1-based place indexing the formula is:
placeval = floor(number / (base^(place-1))) mod base
In Python:
def FindInPlace(number, base, place):
return number// …
2
votes
Misunderstanding MixColumns step
The multiplication in MixColumns is indeed reversible, and it is not modulo 256. samiam.org/mix-column.html has a good explanation of …
0
votes
Calculate maximum size for encypted data
Jeff's answer is almost correct, except that PKCS7 will always add padding to the message, even if the message exactly fits inside an integral number of blocks. Also, don't forget that if using a r …
