On Fri, Oct 11, 2019 at 09:38:47PM -0700, Eric Biggers wrote: > This series converts the glue code for the SPARC64 crypto opcodes > implementations of AES, Camellia, DES, and 3DES modes from the > deprecated "blkcipher" API to the "skcipher" API. This is needed in > order for the blkcipher API to be removed. Not knowing much about the API: do you have an explanation of what the difference is and why it matters? > arch/sparc/crypto/aes_glue.c | 310 +++++++++---------- > arch/sparc/crypto/camellia_glue.c | 217 ++++++------- > arch/sparc/crypto/des_glue.c | 499 ++++++++++++++---------------- > crypto/Kconfig | 5 +- > 4 files changed, 468 insertions(+), 563 deletions(-) At least it removes more code than it adds, which always is a good thing.