public static EncryptionServicesBuilder AddSha512(this EncryptionServicesBuilder builder,
                                                   Action <Sha512DataHasherOptions> configure = null)
 {
     return(builder
            .AddDataHasher <Sha512DataHasher, Sha512DataHasherOptions>(configure));
 }
 public static EncryptionServicesBuilder AddAes256(this EncryptionServicesBuilder builder,
                                                   Action <Aes256DataEncryptorOptions> configure = null)
 {
     return(builder
            .AddDataEncryptor <Aes256DataEncryptor, Aes256DataEncryptorOptions>(configure));
 }