Using libtomcrypt as module name

This commit is contained in:
Lvv.me 2021-12-25 22:55:36 +08:00
parent 7894aafa1c
commit efdaa06c81
No known key found for this signature in database
GPG key ID: 8843A4C0FE54B152
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
import XCTest
import TomCrypt
import libtomcrypt
/* These are test keys [see file test.key] that I use to test my import/export against */
var openssl_private_rsa: [UInt8] = [

View file

@ -1,4 +1,4 @@
module TomCrypt [extern_c] {
module libtomcrypt [extern_c] {
header "../src/headers/tomcrypt.h"
export *
}