Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
cddb2800
Commit
cddb2800
authored
Oct 28, 2002
by
David S. Miller
Committed by
James Morris
Oct 28, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[CRYPTO]: Clean up header file usage.
parent
4c3dd160
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
21 deletions
+6
-21
crypto/api.c
crypto/api.c
+1
-3
crypto/autoload.c
crypto/autoload.c
+1
-4
crypto/cipher.c
crypto/cipher.c
+1
-4
crypto/compress.c
crypto/compress.c
+1
-3
crypto/digest.c
crypto/digest.c
+1
-4
crypto/md4.c
crypto/md4.c
+1
-3
No files found.
crypto/api.c
View file @
cddb2800
...
...
@@ -14,12 +14,10 @@
*
*/
#include <linux/init.h>
#include <linux/
module
.h>
#include <linux/
crypto
.h>
#include <linux/rwsem.h>
#include <linux/list.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/crypto.h>
#include "internal.h"
static
LIST_HEAD
(
crypto_alg_list
);
...
...
crypto/autoload.c
View file @
cddb2800
...
...
@@ -12,12 +12,9 @@
*
*/
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/list.h>
#include <linux/crypto.h>
#include <linux/string.h>
#include <linux/module.h>
#include <linux/kmod.h>
#include <linux/crypto.h>
#include "internal.h"
/*
...
...
crypto/cipher.c
View file @
cddb2800
...
...
@@ -12,15 +12,12 @@
*
*/
#include <linux/kernel.h>
#include <linux/
types
.h>
#include <linux/
crypto
.h>
#include <linux/errno.h>
#include <linux/list.h>
#include <linux/module.h>
#include <linux/mm.h>
#include <linux/slab.h>
#include <linux/highmem.h>
#include <asm/scatterlist.h>
#include <linux/crypto.h>
#include "internal.h"
typedef
void
(
cryptfn_t
)(
void
*
,
u8
*
,
u8
*
);
...
...
crypto/compress.c
View file @
cddb2800
...
...
@@ -12,12 +12,10 @@
*
*/
#include <linux/types.h>
#include <linux/
list
.h>
#include <linux/
crypto
.h>
#include <linux/errno.h>
#include <linux/module.h>
#include <asm/scatterlist.h>
#include <linux/string.h>
#include <linux/crypto.h>
#include "internal.h"
/*
...
...
crypto/digest.c
View file @
cddb2800
...
...
@@ -14,13 +14,10 @@
* any later version.
*
*/
#include <linux/types.h>
#include <linux/list.h>
#include <linux/module.h>
#include <linux/crypto.h>
#include <linux/mm.h>
#include <linux/highmem.h>
#include <asm/scatterlist.h>
#include <linux/crypto.h>
#include "internal.h"
static
void
init
(
struct
crypto_tfm
*
tfm
)
...
...
crypto/md4.c
View file @
cddb2800
...
...
@@ -21,11 +21,9 @@
*
*/
#include <linux/init.h>
#include <linux/
module
.h>
#include <linux/
crypto
.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/string.h>
#include <linux/crypto.h>
#include <asm/byteorder.h>
#define MD4_DIGEST_SIZE 16
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment