Remove SHA224

This commit is contained in:
Arnaud Fontaine 2019-06-14 18:15:32 +02:00
parent a9e52ab31b
commit eebca4b69e
2 changed files with 1 additions and 11 deletions

View File

@ -184,14 +184,6 @@ public final class Constants {
}
protected static final byte[] DSI_SHA224_HEADER = {
(byte)0x30, (byte)0x2D,
(byte)0x30, (byte)0x0D,
(byte)0x06, (byte)0x09, (byte)0x60, (byte)0x86, (byte)0x48, (byte)0x01, (byte)0x65, (byte)0x03, (byte)0x04, (byte)0x02, (byte)0x04,
(byte)0x05, (byte)0x00,
(byte)0x04, (byte)0x1C
};
protected static final byte[] DSI_SHA256_HEADER = {
(byte)0x30, (byte)0x31,
(byte)0x30, (byte)0x0D,

View File

@ -449,9 +449,7 @@ public final class PGPKey {
if(isRsa()) {
if(!forAuth) {
if(lc == (short)(2 + Constants.DSI_SHA224_HEADER[1])) {
sha_header = Constants.DSI_SHA224_HEADER;
} else if(lc == (short)(2 + Constants.DSI_SHA256_HEADER[1])) {
if(lc == (short)(2 + Constants.DSI_SHA256_HEADER[1])) {
sha_header = Constants.DSI_SHA256_HEADER;
} else if(lc == (short)(2 + Constants.DSI_SHA384_HEADER[1])) {
sha_header = Constants.DSI_SHA384_HEADER;