Example #1
0
/* see sph_cubehash.h */
void
sph_cubehash512_init(void *cc)
{
	cubehash_init((sph_cubehash_context *)cc, IV512);
}
Example #2
0
/* see sph_cubehash.h */
void
sph_cubehash256_init(void *cc)
{
	cubehash_init((sph_cubehash_context *)cc, IV256);
}
Example #3
0
/* see sph_cubehash.h */
void
sph_cubehash384_init(void *cc)
{
	cubehash_init((sph_cubehash_context *)cc, IV384);
}
Example #4
0
void cubehash512_init(cubehash_ctx_t *ctx){
	cubehash_init(16, 32, 512, ctx);
}
Example #5
0
/* see sph_cubehash.h */
void
sph_cubehash224_init(void *cc)
{
	cubehash_init((sph_cubehash_context *)cc, IV224);
}
Example #6
0
void cubehash256_init(cubehash_ctx_t *ctx){
	cubehash_init(16, 32, 256, ctx);
}
Example #7
0
void cubehash384_init(cubehash_ctx_t *ctx){
	cubehash_init(16, 32, 384, ctx);
}
Example #8
0
void cubehash224_init(cubehash_ctx_t *ctx){
	cubehash_init(16, 32, 224, ctx);
}
Example #9
0
/* see sph_cubehash.h */
void
sph_cubehash512_init(void *cc)
{
	cubehash_init(cc, IV512);
}
Example #10
0
/* see sph_cubehash.h */
void
sph_cubehash384_init(void *cc)
{
	cubehash_init(cc, IV384);
}
Example #11
0
/* see sph_cubehash.h */
void
sph_cubehash256_init(void *cc)
{
	cubehash_init(cc, IV256);
}
Example #12
0
/* see sph_cubehash.h */
void
sph_cubehash224_init(void *cc)
{
	cubehash_init(cc, IV224);
}