Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ripemd160(3) [osx man page]

ripemd(3)							      OpenSSL								 ripemd(3)

NAME
RIPEMD160, RIPEMD160_Init, RIPEMD160_Update, RIPEMD160_Final - RIPEMD-160 hash function SYNOPSIS
#include <openssl/ripemd.h> unsigned char *RIPEMD160(const unsigned char *d, unsigned long n, unsigned char *md); int RIPEMD160_Init(RIPEMD160_CTX *c); int RIPEMD160_Update(RIPEMD_CTX *c, const void *data, unsigned long len); int RIPEMD160_Final(unsigned char *md, RIPEMD160_CTX *c); DESCRIPTION
RIPEMD-160 is a cryptographic hash function with a 160 bit output. RIPEMD160() computes the RIPEMD-160 message digest of the n bytes at d and places it in md (which must have space for RIPEMD160_DIGEST_LENGTH == 20 bytes of output). If md is NULL, the digest is placed in a static array. The following functions may be used if the message is not completely stored in memory: RIPEMD160_Init() initializes a RIPEMD160_CTX structure. RIPEMD160_Update() can be called repeatedly with chunks of the message to be hashed (len bytes at data). RIPEMD160_Final() places the message digest in md, which must have space for RIPEMD160_DIGEST_LENGTH == 20 bytes of output, and erases the RIPEMD160_CTX. Applications should use the higher level functions EVP_DigestInit(3) etc. instead of calling the hash functions directly. RETURN VALUES
RIPEMD160() returns a pointer to the hash value. RIPEMD160_Init(), RIPEMD160_Update() and RIPEMD160_Final() return 1 for success, 0 otherwise. CONFORMING TO
ISO/IEC 10118-3 (draft) (??) SEE ALSO
sha(3), hmac(3), EVP_DigestInit(3) HISTORY
RIPEMD160(), RIPEMD160_Init(), RIPEMD160_Update() and RIPEMD160_Final() are available since SSLeay 0.9.0. 50 2013-03-05 ripemd(3)

Check Out this Related Man Page

ripemd(3)							      OpenSSL								 ripemd(3)

NAME
RIPEMD160, RIPEMD160_Init, RIPEMD160_Update, RIPEMD160_Final - RIPEMD-160 hash function SYNOPSIS
#include <openssl/ripemd.h> unsigned char *RIPEMD160(const unsigned char *d, unsigned long n, unsigned char *md); int RIPEMD160_Init(RIPEMD160_CTX *c); int RIPEMD160_Update(RIPEMD_CTX *c, const void *data, unsigned long len); int RIPEMD160_Final(unsigned char *md, RIPEMD160_CTX *c); DESCRIPTION
RIPEMD-160 is a cryptographic hash function with a 160 bit output. RIPEMD160() computes the RIPEMD-160 message digest of the n bytes at d and places it in md (which must have space for RIPEMD160_DIGEST_LENGTH == 20 bytes of output). If md is NULL, the digest is placed in a static array. The following functions may be used if the message is not completely stored in memory: RIPEMD160_Init() initializes a RIPEMD160_CTX structure. RIPEMD160_Update() can be called repeatedly with chunks of the message to be hashed (len bytes at data). RIPEMD160_Final() places the message digest in md, which must have space for RIPEMD160_DIGEST_LENGTH == 20 bytes of output, and erases the RIPEMD160_CTX. Applications should use the higher level functions EVP_DigestInit(3) etc. instead of calling the hash functions directly. RETURN VALUES
RIPEMD160() returns a pointer to the hash value. RIPEMD160_Init(), RIPEMD160_Update() and RIPEMD160_Final() return 1 for success, 0 otherwise. CONFORMING TO
ISO/IEC 10118-3 (draft) (??) SEE ALSO
sha(3), hmac(3), EVP_DigestInit(3) HISTORY
RIPEMD160(), RIPEMD160_Init(), RIPEMD160_Update() and RIPEMD160_Final() are available since SSLeay 0.9.0. 1.0.1e 2013-02-11 ripemd(3)
Man Page

4 More Discussions You Might Find Interesting

1. Email Antispam Techniques and Email Filtering

(Received):. (66.55.160\.|66.55.161\.)

Can you suggest a way of rewriting rule below that would ensure that the class C "66.55.160" is blocked but "166.55.160.*" would pass? :0 * ^(Received):.*(66.55.160\.|66.55.161\.|66.55.162\.|66.55.163\.|66.55.164\.|66.55.165\.|66.55.166\.|66.55.167\ .) { LOG="(ISKIMARO vendare 1) " ... (0 Replies)
Discussion started by: jones
0 Replies

2. UNIX for Dummies Questions & Answers

Using DD

Hi, I've got a file of one line and I want to cut it in n lines of 160 caracters each. For this I use the following command dd if=myfile of=result cbs=160 conv=unblock It work's fine but the spaces at the end of the line are truncated. Do you have any idea ? Thanks (4 Replies)
Discussion started by: Djergom
4 Replies

3. Linux

winxp+ fc3= bsod

im sorry if this topics been repeated at many places on the net but i just couldnt find my answers . someone help me out fast! here is the situation in brief! 1. i have a 160 gb hdd. windows xp without service pack 1 does not have 48-bit LBA enabled and so it can recognize only 137 gb when it... (2 Replies)
Discussion started by: j0hn_galt
2 Replies

4. Shell Programming and Scripting

KSH or Awk first and last line based on column 2

Example: 10.160.101.160,0707073711,22.203.203.200 10.160.101.160,0707075132,22.203.210.249 10.160.101.160,0707085436,22.203.210.249 10.160.101.160,0707091712,22.203.221.176 10.160.101.160,0707091811,22.203.221.176 10.160.101.160,0707091845,22.203.221.176... (1 Reply)
Discussion started by: BrownBob
1 Replies