String.isalpha#
- usencrypt.cipher.String.isalpha(self, end_on_nul=True) usencrypt.cipher._boolean.Boolean #
Checks whether the encrypted string \(E(x)\) contains only encrypted alphabetical ASCII characters.
- Parameters
end_on_null (
bool
) – Indicates whether to terminate when a pad is encountered. Defaults toTrue
.- Returns
An encrypted boolean indicating whether the given
self
is made of only encrypted alphabetical ASCII characters.- Return type
- Examples
>>> import usencrypt as ue >>> ue_a = ue.encrypt('abc') >>> result = ue_a.isalpha() >>> result (0x7ffbb5a90610) Boolean: 0x7e3964559d0de52c9457a893b72af02ad81fc469548199ee335dbed53b9fe940 >>> ue.decrypt(result) True