Reverse siz bytes from in into out (or in place if in is NULL).
Synopsis
Declared in <openssl/buffer.h>
void
BUF_reverse(
unsigned char* out,
unsigned char const* in,
size_t siz);
Parameters
Name |
Description |
out |
Destination buffer; may equal |
in |
Source bytes to reverse, or NULL to reverse |
siz |
Number of bytes to reverse. |
Created with MrDocs