Puppet Class: crypto_win::ciphers::threedes_168

Defined in:
manifests/ciphers/threedes_168.pp

Overview

Class: crypto_win::ciphers::threedes_168



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'manifests/ciphers/threedes_168.pp', line 2

class crypto_win::ciphers::threedes_168 {

  if $crypto_win::threedes_168 {
    $threedes_168_enabled = 0xFFFFFFFF
  } else {
    $threedes_168_enabled = 0
  }

  registry_key { 'threedes_168':
    ensure => present,
    path   => 'HKLM\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\Triple DES 168',
  }
  registry_value { 'threedes_168_enabled':
    ensure  => present,
    path    => 'HKLM\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\Triple DES 168\Enabled',
    type    => dword,
    data    => $threedes_168_enabled,
    require => Registry_key['threedes_168'],
  }

}