|
|
|
|
|
by sec400
1888 days ago
|
|
On the included estimations of the frequency that this occurs. I scraped a collection of (mainly developer) public keys for a previous project and got the following numbers. sqlite> select count(*) from keys;
1627715
Quite a difference between the ratio of 2047/2048 bit keys and 1023/1024 bit keys. sqlite> select count(*) from keys where strength = "2048";
936441
sqlite> select count(*) from keys where strength = "2047";
466
sqlite> select count(*) from keys where strength = "1024";
39068
sqlite> select count(*) from keys where strength = "1023";
5908
Interestingly also: sqlite> select count(*) from keys where strength = "2049";
13
sqlite> select count(*) from keys where strength = "2050";
5
sqlite> select count(*) from keys where strength = "2051";
1
sqlite> select count(*) from keys where strength = "2052";
0
|
|