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