# luabcrypt **Repository Path**: mirrors_leafo/luabcrypt ## Basic Information - **Project Name**: luabcrypt - **Description**: A bcrypt library for Lua - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2026-04-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README A Lua wrapper for the OpenBSD implementation of bcrypt. Note that it will run on other operating systems. Requirements ------------ luabcrypt requires OpenSSL (for salt generation) and Lua to compile. Usage ----- require( "bcrypt" ) local salt = bcrypt.salt( 5 ) local digest = bcrypt.digest( "password", salt ) assert( bcrypt.verify( "password", digest ) )