Skip to content

Commit 746b9ef

Browse files
Arnd Bergmanntorvalds
authored andcommitted
x509: select CONFIG_CRYPTO_LIB_SHA256
The x509 public key code gained a dependency on the sha256 hash implementation, causing a rare link time failure in randconfig builds: arm-linux-gnueabi-ld: crypto/asymmetric_keys/x509_public_key.o: in function `x509_get_sig_params': x509_public_key.c:(.text.x509_get_sig_params+0x12): undefined reference to `sha256' arm-linux-gnueabi-ld: (sha256): Unknown destination type (ARM/Thumb) in crypto/asymmetric_keys/x509_public_key.o x509_public_key.c:(.text.x509_get_sig_params+0x12): dangerous relocation: unsupported relocation Select the necessary library code from Kconfig. Fixes: 2c62068 ("x509: Separately calculate sha256 for blacklist") Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: David Howells <dhowells@redhat.com> Reviewed-by: Eric Biggers <ebiggers@kernel.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent fd1d6b9 commit 746b9ef

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

crypto/asymmetric_keys/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ config X509_CERTIFICATE_PARSER
2727
tristate "X.509 certificate parser"
2828
depends on ASYMMETRIC_PUBLIC_KEY_SUBTYPE
2929
select ASN1
30+
select CRYPTO_LIB_SHA256
3031
select OID_REGISTRY
3132
help
3233
This option provides support for parsing X.509 format blobs for key

0 commit comments

Comments
 (0)