https://github.com/dchest/pyblake2
Raw File
Tip revision: 646d0a55da24196c5312b35573598cd18f8137b1 authored by Dmitry Chestnykh on 14 September 2020, 14:32:33 UTC
EOL
Tip revision: 646d0a5
blake2b_impl.c
#include "pyblake2_impl_common.h"

#ifdef USE_OPTIMIZED_IMPL
#include "impl/blake2b.c"
#else
#include "impl/blake2b-ref.c"
#endif
back to top