Implement comprehensive audit and security infrastructure: - Immutable audit logs with platform-specific backends (Linux/Other) - Sealed log entries with tamper-evident checksums - Audit alert system for real-time security notifications - Log rotation with retention policies - Checkpoint-based audit verification Add multi-tenant security features: - Tenant manager with quota enforcement - Middleware for tenant authentication/authorization - Per-tenant cryptographic key isolation - Supply chain security for container verification - Cross-platform secure file utilities (Unix/Windows) Add test coverage: - Unit tests for audit alerts and sealed logs - Platform-specific audit backend tests
10 lines
221 B
Go
10 lines
221 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package fileutil
|
|
|
|
import "syscall"
|
|
|
|
// o_NOFOLLOW prevents open from following symlinks.
|
|
// Available on Linux, macOS, and other Unix systems.
|
|
const o_NOFOLLOW = syscall.O_NOFOLLOW
|