123456789101112131415161718192021222324 |
- #include <openssl/camellia.h>
- #include <openssl/modes.h>
- void Camellia_ofb128_encrypt(const unsigned char *in, unsigned char *out,
- size_t length, const CAMELLIA_KEY *key,
- unsigned char *ivec, int *num)
- {
- CRYPTO_ofb128_encrypt(in, out, length, key, ivec, num,
- (block128_f) Camellia_encrypt);
- }
|