Loading include/crypto/public_key.h +1 −13 Original line number Diff line number Diff line Loading @@ -14,7 +14,6 @@ #ifndef _LINUX_PUBLIC_KEY_H #define _LINUX_PUBLIC_KEY_H #include <linux/mpi.h> #include <crypto/hash_info.h> enum pkey_algo { Loading Loading @@ -74,19 +73,8 @@ struct public_key_signature { u32 s_size; /* Number of bytes in signature */ u8 *digest; u8 digest_size; /* Number of bytes in digest */ u8 nr_mpi; /* Occupancy of mpi[] */ enum pkey_algo pkey_algo : 8; enum hash_algo pkey_hash_algo : 8; union { MPI mpi[2]; struct { MPI s; /* m^d mod n */ } rsa; struct { MPI r; MPI s; } dsa; }; }; extern struct asymmetric_key_subtype public_key_subtype; Loading Loading
include/crypto/public_key.h +1 −13 Original line number Diff line number Diff line Loading @@ -14,7 +14,6 @@ #ifndef _LINUX_PUBLIC_KEY_H #define _LINUX_PUBLIC_KEY_H #include <linux/mpi.h> #include <crypto/hash_info.h> enum pkey_algo { Loading Loading @@ -74,19 +73,8 @@ struct public_key_signature { u32 s_size; /* Number of bytes in signature */ u8 *digest; u8 digest_size; /* Number of bytes in digest */ u8 nr_mpi; /* Occupancy of mpi[] */ enum pkey_algo pkey_algo : 8; enum hash_algo pkey_hash_algo : 8; union { MPI mpi[2]; struct { MPI s; /* m^d mod n */ } rsa; struct { MPI r; MPI s; } dsa; }; }; extern struct asymmetric_key_subtype public_key_subtype; Loading