Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-04 | stupidgcm: use __builtin_trap() | Jakob Unterwurzacher | |
[...]/stupidgcm/locking.go:16:2: warning: indirection of non-volatile null pointer will be deleted, not trap [-Wnull-dereference] [...]/stupidgcm/locking.go:16:2: note: consider using __builtin_trap() or qualifying pointer with 'volatile' https://github.com/rfjakob/gocryptfs/issues/15 | |||
2016-05-05 | stupidgcm: set dummy locking callback.v0.10-rc2 | Jakob Unterwurzacher | |
In general, OpenSSL is only threadsafe if you provide a locking function through CRYPTO_set_locking_callback. However, the GCM operations that stupidgcm uses never call that function. To guard against that ever changing, set a dummy locking callback that crashes the app. |