From 91e6f32894bb7d9425008925a6a5f2e4179be8dc Mon Sep 17 00:00:00 2001 From: Miguel Oliveira Date: Tue, 18 Jul 2023 21:12:20 -0300 Subject: [PATCH] Fix "cryptolib" typo --- ccryptolib/util.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccryptolib/util.lua b/ccryptolib/util.lua index 0f2df8e..c4bf192 100644 --- a/ccryptolib/util.lua +++ b/ccryptolib/util.lua @@ -1,7 +1,7 @@ --- General utilities for handling byte strings. local expect = require "cc.expect".expect -local random = require "cryptolib.random" +local random = require "ccryptolib.random" local poly1305 = require "ccryptolib.poly1305" --- Returns the hexadecimal version of a string.