Encrypt Message
Sample Code
import { encryptMessage } from "timecipher"; const message = "Hello, World!"; const timestamp = Math.floor(Date.now() / 1000); const encryptedMessage = await encryptMessage(message, timestamp); console.log("Encrypted Message:", encryptedMessage);