Sha256: 38750722d1737083fa8caedfccd3bce574080e35692010d2f91dd303b154af69

Contents?: true

Size: 1.34 KB

Versions: 14

Compression:

Stored size: 1.34 KB

Contents

/*
 * Copyright 2005-2016 The OpenSSL Project Authors. All Rights Reserved.
 *
 * Licensed under the OpenSSL license (the "License").  You may not use
 * this file except in compliance with the License.  You can obtain a copy
 * in the file LICENSE in the source distribution or at
 * https://www.openssl.org/source/license.html
 */

#ifndef HEADER_WHRLPOOL_H
# define HEADER_WHRLPOOL_H

#include <openssl/opensslconf.h>

# ifndef OPENSSL_NO_WHIRLPOOL
# include <openssl/e_os2.h>
# include <stddef.h>
# ifdef __cplusplus
extern "C" {
# endif

# define WHIRLPOOL_DIGEST_LENGTH (512/8)
# define WHIRLPOOL_BBLOCK        512
# define WHIRLPOOL_COUNTER       (256/8)

typedef struct {
    union {
        unsigned char c[WHIRLPOOL_DIGEST_LENGTH];
        /* double q is here to ensure 64-bit alignment */
        double q[WHIRLPOOL_DIGEST_LENGTH / sizeof(double)];
    } H;
    unsigned char data[WHIRLPOOL_BBLOCK / 8];
    unsigned int bitoff;
    size_t bitlen[WHIRLPOOL_COUNTER / sizeof(size_t)];
} WHIRLPOOL_CTX;

int WHIRLPOOL_Init(WHIRLPOOL_CTX *c);
int WHIRLPOOL_Update(WHIRLPOOL_CTX *c, const void *inp, size_t bytes);
void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c, const void *inp, size_t bits);
int WHIRLPOOL_Final(unsigned char *md, WHIRLPOOL_CTX *c);
unsigned char *WHIRLPOOL(const void *inp, size_t bytes, unsigned char *md);

# ifdef __cplusplus
}
# endif
# endif

#endif

Version data entries

14 entries across 14 versions & 3 rubygems

Version Path
rho-tau-extensions-7.6.0 libs/openssl.so-edge/ext/openssl-1-1-0-stable/include/openssl/whrlpool.h
rhodes-7.6.0 lib/extensions/openssl.so/ext/sources/include/openssl/whrlpool.h
rhodes-7.5.1 lib/extensions/openssl.so/ext/sources/include/openssl/whrlpool.h
rho-tau-extensions-7.4.1 libs/openssl.so-edge/ext/openssl-1-1-0-stable/include/openssl/whrlpool.h
rhodes-7.4.1 lib/extensions/openssl.so/ext/sources/include/openssl/whrlpool.h
rho-tau-extensions-7.1.17 libs/openssl.so-edge/ext/openssl-1-1-0-stable/include/openssl/whrlpool.h
rhodes-7.1.17 lib/extensions/openssl.so/ext/sources/include/openssl/whrlpool.h
rho-tau-extensions-6.2.0 libs/openssl.so-edge/ext/openssl-1-1-0-stable/include/openssl/whrlpool.h
rhodes-6.2.0 lib/extensions/openssl.so/ext/sources/include/openssl/whrlpool.h
rho-tau-extensions-6.0.11 libs/openssl.so-edge/ext/openssl-1-1-0-stable/include/openssl/whrlpool.h
rho-tau-extensions-6.0.0 libs/openssl.so-edge/ext/openssl-1-1-0-stable/include/openssl/whrlpool.h
rho-tau-extensions-5.5.18 libs/openssl.so-edge/ext/openssl-1-1-0-stable/include/openssl/whrlpool.h
rho-tau-extensions-5.5.17 libs/openssl.so-edge/ext/openssl-1-1-0-stable/include/openssl/whrlpool.h
ruby-compiler-0.1.1 vendor/openssl/include/openssl/whrlpool.h