Codebase list python-castellan / 196044e
Removing SymmetricKey docs from key module This change removes the SymmetricKey class references from the key module doc string. The SymmetricKey class resides in it's own module and the key module only contains the Key class. Change-Id: Ic93971584b6bdee5db0042ce8473225f2589a856 Michael McCune 8 years ago
1 changed file(s) with 3 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
1313 # under the License.
1414
1515 """
16 Base Key and SymmetricKey Classes
16 Base Key Class
1717
18 This module defines the Key and SymmetricKey classes. The Key class is the base
19 class to represent all encryption keys. The basis for this class was copied
18 This module defines the Key class. The Key class is the base class to
19 represent all encryption keys. The basis for this class was copied
2020 from Java.
2121 """
2222