I have the following password with a prescribed format: it starts with a fixed value of 111, followed by 2 random lower case letters and then lastly a random digit:
"111""2 Random lowercase letters""random digit"
Is my below calculation correct?
fixed value 111 -> log2(1) = 0 bits
2 random lowercase letters -> log2(26)*2 = 9.4 bits
random digit -> log2(10) = 3.3 bits
Total entropy of the password would be 0 + 9.4 + 3.3 bits = 12.7 bits