patchify 0.2.2

Support for running applications to automatically update themselves
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Common shared utility functionality for tests and examples.

//		Packages																										

use rand::rngs::OsRng;
use rubedo::crypto::SigningKey;



//		Functions																										

//		generate_new_private_key												
/// Generate a new private key for use in signing.
pub fn generate_new_private_key() -> SigningKey {
	SigningKey::generate(&mut OsRng)
}