diff options
author | Werner Koch <[email protected]> | 2018-02-27 12:57:24 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2018-02-27 12:57:57 +0000 |
commit | b703ba725dadca8298a0c69365225f9a7ff60ae2 (patch) | |
tree | 844dd1a022fa0b96953d89896701a5f427f6e866 | |
parent | gpg: Fix corner cases in AEAD encryption. (diff) | |
download | gnupg-b703ba725dadca8298a0c69365225f9a7ff60ae2.tar.gz gnupg-b703ba725dadca8298a0c69365225f9a7ff60ae2.zip |
gpg: Rename cipher.c to cipher-cfb.c
* g10/cipher.c: Rename to ...
* g10/cipher-cfb.c: this.
--
Signed-off-by: Werner Koch <[email protected]>
-rw-r--r-- | g10/Makefile.am | 2 | ||||
-rw-r--r-- | g10/cipher-cfb.c (renamed from g10/cipher.c) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/g10/Makefile.am b/g10/Makefile.am index cba65b22a..b8b92d702 100644 --- a/g10/Makefile.am +++ b/g10/Makefile.am @@ -131,7 +131,7 @@ gpg_sources = server.c \ passphrase.c \ decrypt.c \ decrypt-data.c \ - cipher.c \ + cipher-cfb.c \ cipher-aead.c \ encrypt.c \ sign.c \ diff --git a/g10/cipher.c b/g10/cipher-cfb.c index ad7399dec..79b21bd8a 100644 --- a/g10/cipher.c +++ b/g10/cipher-cfb.c @@ -1,4 +1,4 @@ -/* cipher.c - Enciphering filter for the old CFB mode. +/* cipher-cfb.c - Enciphering filter for the old CFB mode. * Copyright (C) 1998-2003, 2006, 2009 Free Software Foundation, Inc. * Copyright (C) 1998-2003, 2006, 2009, 2017 Werner koch * |