diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-10-12 10:13:55 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-10-12 10:13:55 -0400 |
| commit | 5e40d331bd72447197f26525f21711c4a265b6a6 (patch) | |
| tree | cfbf5efba46b0c5c5b3c8149395f721eab839945 /lib | |
| parent | d0ca47575ab3b41bb7f0fe5feec13c6cddb2913a (diff) | |
| parent | 594081ee7145cc30a3977cb4e218f81213b63dc5 (diff) | |
Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security
Pull security subsystem updates from James Morris.
Mostly ima, selinux, smack and key handling updates.
* 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security: (65 commits)
integrity: do zero padding of the key id
KEYS: output last portion of fingerprint in /proc/keys
KEYS: strip 'id:' from ca_keyid
KEYS: use swapped SKID for performing partial matching
KEYS: Restore partial ID matching functionality for asymmetric keys
X.509: If available, use the raw subjKeyId to form the key description
KEYS: handle error code encoded in pointer
selinux: normalize audit log formatting
selinux: cleanup error reporting in selinux_nlmsg_perm()
KEYS: Check hex2bin()'s return when generating an asymmetric key ID
ima: detect violations for mmaped files
ima: fix race condition on ima_rdwr_violation_check and process_measurement
ima: added ima_policy_flag variable
ima: return an error code from ima_add_boot_aggregate()
ima: provide 'ima_appraise=log' kernel option
ima: move keyring initialization to ima_init()
PKCS#7: Handle PKCS#7 messages that contain no X.509 certs
PKCS#7: Better handling of unsupported crypto
KEYS: Overhaul key identification when searching for asymmetric keys
KEYS: Implement binary asymmetric key ID handling
...
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/hexdump.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/hexdump.c b/lib/hexdump.c index 8499c810909a..270773b91923 100644 --- a/lib/hexdump.c +++ b/lib/hexdump.c | |||
| @@ -59,6 +59,22 @@ int hex2bin(u8 *dst, const char *src, size_t count) | |||
| 59 | EXPORT_SYMBOL(hex2bin); | 59 | EXPORT_SYMBOL(hex2bin); |
| 60 | 60 | ||
| 61 | /** | 61 | /** |
| 62 | * bin2hex - convert binary data to an ascii hexadecimal string | ||
| 63 | * @dst: ascii hexadecimal result | ||
| 64 | * @src: binary data | ||
| 65 | * @count: binary data length | ||
| 66 | */ | ||
| 67 | char *bin2hex(char *dst, const void *src, size_t count) | ||
| 68 | { | ||
| 69 | const unsigned char *_src = src; | ||
| 70 | |||
| 71 | while (count--) | ||
| 72 | dst = hex_byte_pack(dst, *_src++); | ||
| 73 | return dst; | ||
| 74 | } | ||
| 75 | EXPORT_SYMBOL(bin2hex); | ||
| 76 | |||
| 77 | /** | ||
| 62 | * hex_dump_to_buffer - convert a blob of data to "hex ASCII" in memory | 78 | * hex_dump_to_buffer - convert a blob of data to "hex ASCII" in memory |
| 63 | * @buf: data blob to dump | 79 | * @buf: data blob to dump |
| 64 | * @len: number of bytes in the @buf | 80 | * @len: number of bytes in the @buf |
