HomeSort by: relevance | last modified time | path
    Searched defs:blake2s_update (Results 1 - 6 of 6) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/evp/
legacy_blake2.c 32 #define blake2s_update ossl_blake2s_update macro
legacy_blake2.c 32 #define blake2s_update ossl_blake2s_update macro
  /src/external/bsd/libarchive/dist/libarchive/
archive_blake2s_ref.c 144 blake2s_update( S, block, BLAKE2S_BLOCKBYTES );
216 int blake2s_update( blake2s_state *S, const void *pin, size_t inlen ) function
291 blake2s_update( S, ( const uint8_t * )in, inlen );
344 if ( (err = blake2s_update(&S, p, step)) < 0 ) {
350 if ( (err = blake2s_update(&S, p, mlen)) < 0) {
archive_blake2s_ref.c 144 blake2s_update( S, block, BLAKE2S_BLOCKBYTES );
216 int blake2s_update( blake2s_state *S, const void *pin, size_t inlen ) function
291 blake2s_update( S, ( const uint8_t * )in, inlen );
344 if ( (err = blake2s_update(&S, p, step)) < 0 ) {
350 if ( (err = blake2s_update(&S, p, mlen)) < 0) {
  /src/sys/crypto/blake2/
blake2s.c 188 blake2s_update(B, key, keylen);
189 blake2s_update(B, zero_block, 64 - keylen);
194 blake2s_update(struct blake2s *B, const void *buf, size_t len) function
271 blake2s_update(&ctx, in, inlen);
313 blake2s_update(&ctx, d, dlen[di]);
317 blake2s_update(&ctx, d, dlen[di]);
blake2s.c 188 blake2s_update(B, key, keylen);
189 blake2s_update(B, zero_block, 64 - keylen);
194 blake2s_update(struct blake2s *B, const void *buf, size_t len) function
271 blake2s_update(&ctx, in, inlen);
313 blake2s_update(&ctx, d, dlen[di]);
317 blake2s_update(&ctx, d, dlen[di]);

Completed in 109 milliseconds