Initial experiments in 'formal verification' of authorization tooling. Current state is not to be trusted, but we are not in a security critical situation, so that is fine. Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
20 lines
652 B
Rust
20 lines
652 B
Rust
pub mod types;
|
|
pub mod messages;
|
|
pub mod chunking;
|
|
pub mod storage;
|
|
pub mod actors;
|
|
pub mod auth;
|
|
pub mod cli;
|
|
pub mod metrics;
|
|
#[cfg(feature = "node")]
|
|
pub mod api;
|
|
#[cfg(feature = "node")]
|
|
pub mod ui_html;
|
|
#[cfg(kani)]
|
|
mod kani_auth;
|
|
|
|
pub use types::{ChunkRef, ContentHash, DatastoreConfig, ObjectEntry, ObjectManifest};
|
|
pub use messages::{BlobStoreMsg, DatastoreNodeMsg, DatastoreResponse, MetadataMsg, TransferMsg};
|
|
pub use chunking::{chunk_blob, reassemble_blob, verify_integrity, ChunkingError};
|
|
pub use storage::{StorageBackend, FilesystemBackend, InMemoryBackend};
|
|
pub use actors::{BlobStoreActor, DatastoreNode, MetadataActor, TransferActor};
|