Skip to content

Commit

Permalink
More URLS
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Jun 11, 2022
1 parent a9b7e57 commit 987ff16
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions R/hashing.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#'
#' The generic \code{hash} function is recommended for most applications. It uses
#' dynamic length
#' \href{https://download.libsodium.org/doc/hashing/generic_hashing}{BLAKE2b}
#' \href{https://libsodium.gitbook.io/doc/hashing/generic_hashing}{BLAKE2b}
#' where output size can be any value between 16 bytes (128bit) and 64 bytes (512bit).
#'
#' The \link{scrypt} hash function is designed to be CPU and memory expensive to protect
Expand All @@ -17,7 +17,7 @@
#' state of the art in the design of memory-hard functions
#'
#' The \code{shorthash} function is a special 8 byte (64 bit) hash based on
#' \href{https://download.libsodium.org/doc/hashing/short-input_hashing}{SipHash-2-4}.
#' \href{https://libsodium.gitbook.io/doc/hashing/short-input_hashing}{SipHash-2-4}.
#' The output of this function is only 64 bits (8 bytes). It is useful for in e.g.
#' Hash tables, but it should not be considered collision-resistant.
#'
Expand All @@ -29,7 +29,7 @@
#' @rdname hash
#' @name Hash functions
#' @aliases hashing
#' @references \url{https://download.libsodium.org/doc/hashing/generic_hashing.html}
#' @references \url{https://libsodium.gitbook.io/doc/hashing/generic_hashing}
#' @useDynLib sodium R_crypto_generichash
#' @param buf data to be hashed
#' @param key key for HMAC hashing. Optional, except for in \code{shorthash}.
Expand Down
6 changes: 3 additions & 3 deletions man/hash.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 987ff16

Please sign in to comment.