diff options
Diffstat (limited to 'common/image-sig.c')
| -rw-r--r-- | common/image-sig.c | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/common/image-sig.c b/common/image-sig.c index 9b222daa0..9928bfcec 100644 --- a/common/image-sig.c +++ b/common/image-sig.c @@ -27,8 +27,15 @@ DECLARE_GLOBAL_DATA_PTR;  #endif /* !USE_HOSTCC*/  #include <errno.h>  #include <image.h> +#include <rsa.h>  struct image_sig_algo image_sig_algos[] = { +	{ +		"sha1,rsa2048", +		rsa_sign, +		rsa_add_verify_data, +		rsa_verify, +	}  };  struct image_sig_algo *image_get_sig_algo(const char *name) |