diff options
Diffstat (limited to 'g10/misc.c')
-rw-r--r-- | g10/misc.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/g10/misc.c b/g10/misc.c index 60ecf96ea..2c5c6cca3 100644 --- a/g10/misc.c +++ b/g10/misc.c @@ -295,17 +295,6 @@ checksum_mpi( MPI a ) return csum; } -u32 -buffer_to_u32( const byte *buffer ) -{ - unsigned long a; - a = *buffer << 24; - a |= buffer[1] << 16; - a |= buffer[2] << 8; - a |= buffer[3]; - return a; -} - void print_pubkey_algo_note( int algo ) { |