Implement generalised RSA public exponents for verified boot
[platform/kernel/u-boot.git] / include / u-boot / rsa.h
index 325751a..fd08a61 100644 (file)
@@ -27,6 +27,7 @@ struct rsa_public_key {
        uint32_t n0inv;         /* -1 / modulus[0] mod 2^32 */
        uint32_t *modulus;      /* modulus as little endian array */
        uint32_t *rr;           /* R^2 as little endian array */
+       uint64_t exponent;      /* public exponent */
 };
 
 #if IMAGE_ENABLE_SIGN