librustysigs 0.1.1

Rusty Signatures: A Secure Code Signing System
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use chrono::prelude::*;

/// # Certificate Timestamping
/// 
/// The easy functionality for retrieving timestamps
pub struct CertTimestamping;

impl CertTimestamping {
    /// UTC Now
    pub fn now() {
        let utc: DateTime<Utc> = Utc::now();
    }
    /// Today
    pub fn today() {
        let utc: Date<Utc> = Utc::today();
    }
}