diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-02-19 23:38:44 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-02-19 23:38:44 +0100 |
commit | 28fe7502c12d0bcaa6a0b0932c328759009a70f2 (patch) | |
tree | 700222edf2fedae7f75d99c03bfe88306e8c012c | |
parent | 119103e0e156be1b4a9cae5b6e5855b561292caa (diff) | |
download | cryptodev-linux-28fe7502c12d0bcaa6a0b0932c328759009a70f2.tar.gz cryptodev-linux-28fe7502c12d0bcaa6a0b0932c328759009a70f2.tar.xz cryptodev-linux-28fe7502c12d0bcaa6a0b0932c328759009a70f2.zip |
Applied Michael's patch for 3des.
-rw-r--r-- | cryptodev_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptodev_main.c b/cryptodev_main.c index c065065..bdf7017 100644 --- a/cryptodev_main.c +++ b/cryptodev_main.c @@ -133,7 +133,7 @@ crypto_create_session(struct fcrypt *fcr, struct session_op *sop) alg_name = "cbc(des)"; break; case CRYPTO_3DES_CBC: - alg_name = "cbc(3des_ede)"; + alg_name = "cbc(des3_ede)"; break; case CRYPTO_BLF_CBC: alg_name = "cbc(blowfish)"; |