Lines Matching defs:keyBytes
86 * [identical to Skein_256_Init() when keyBytes == 0 &&
91 const uint8_t *key, size_t keyBytes)
99 Skein_Assert(keyBytes == 0 || key != NULL, SKEIN_FAIL);
102 if (keyBytes == 0) { /* is there a key? */
116 (void) Skein_256_Update(ctx, key, keyBytes);
143 Skein_Show_Key(256, &ctx->h, key, keyBytes);
323 * [identical to Skein_512_Init() when keyBytes == 0 &&
328 const uint8_t *key, size_t keyBytes)
336 Skein_Assert(keyBytes == 0 || key != NULL, SKEIN_FAIL);
339 if (keyBytes == 0) { /* is there a key? */
352 (void) Skein_512_Update(ctx, key, keyBytes); /* hash the key */
379 Skein_Show_Key(512, &ctx->h, key, keyBytes);
556 * [identical to Skein1024_Init() when keyBytes == 0 &&
561 const uint8_t *key, size_t keyBytes)
569 Skein_Assert(keyBytes == 0 || key != NULL, SKEIN_FAIL);
572 if (keyBytes == 0) { /* is there a key? */
584 (void) Skein1024_Update(ctx, key, keyBytes); /* hash the key */
612 Skein_Show_Key(1024, &ctx->h, key, keyBytes);