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