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