mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
347bd1be77
This adds an AES-GCM 256bit encryption layer for storage for sensitive items. This is only TOTP secrets for the time being but this may be expanded later. This will require a configuration change as per https://www.authelia.com/docs/configuration/migration.html#4330. Closes #682
23 lines
603 B
Go
23 lines
603 B
Go
package storage
|
|
|
|
import (
|
|
_ "github.com/mattn/go-sqlite3" // Load the SQLite Driver used in the connection string.
|
|
)
|
|
|
|
// SQLiteProvider is a SQLite3 provider.
|
|
type SQLiteProvider struct {
|
|
SQLProvider
|
|
}
|
|
|
|
// NewSQLiteProvider constructs a SQLite provider.
|
|
func NewSQLiteProvider(path, encryptionKey string) (provider *SQLiteProvider) {
|
|
provider = &SQLiteProvider{
|
|
SQLProvider: NewSQLProvider(providerSQLite, "sqlite3", path, encryptionKey),
|
|
}
|
|
|
|
// All providers have differing SELECT existing table statements.
|
|
provider.sqlSelectExistingTables = querySQLiteSelectExistingTables
|
|
|
|
return provider
|
|
}
|