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
This commit is contained in:
Michael McCune 2015-04-29 16:56:00 -04:00
parent 5fea4ffb80
commit 196044e18f

View File

@ -14,10 +14,10 @@
# under the License. # under the License.
""" """
Base Key and SymmetricKey Classes Base Key Class
This module defines the Key and SymmetricKey classes. The Key class is the base This module defines the Key class. The Key class is the base class to
class to represent all encryption keys. The basis for this class was copied represent all encryption keys. The basis for this class was copied
from Java. from Java.
""" """