Module: Roll::Package::Security

Includes:
Attributes
Included in:
Roll::Package
Defined in:
lib/roll/package.rb

Overview

Security Information

Instance Attribute Summary collapse

Method Summary

Methods included from Attributes

included, #valid?, #validate

Instance Attribute Details

#digestObject

Encryption digest type used.

(md5, sha1, sha128, sha256, sha512).


246
247
248
# File 'lib/roll/package.rb', line 246

def digest
  @digest
end

#private_keyObject

Private key file associated with this library. This is useful for security purposes especially remote loading. [_privkey.pem]



254
255
256
# File 'lib/roll/package.rb', line 254

def private_key
  @private_key
end

#public_keyObject

Public key file associated with this library. This is useful for security purposes especially remote loading. [pubkey.pem]



250
251
252
# File 'lib/roll/package.rb', line 250

def public_key
  @public_key
end