Puppet Class: crypto_win::ciphers::aes_256_256
  
  
  
    - Defined in:
 
    - 
      manifests/ciphers/aes_256_256.pp
    
 
  
 
Overview
  
    
Class: crypto_win::ciphers::aes_256_256
  
 
  
  
    
      
        
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 
       | 
      
        # File 'manifests/ciphers/aes_256_256.pp', line 2
class crypto_win::ciphers::aes_256_256 {
  if $crypto_win::aes_256_256 {
    $aes_256_256_enabled = 0xFFFFFFFF
  } else {
    $aes_256_256_enabled = 0
  }
  registry_key { 'aes_256_256':
    ensure => present,
    path   => 'HKLM\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\AES 256/256',
  }
  registry_value { 'aes_256_256_enabled':
    ensure  => present,
    path    => 'HKLM\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\AES 256/256\Enabled',
    type    => dword,
    data    => $aes_256_256_enabled,
    require => Registry_key['aes_256_256'],
  }
}
       |