Lines Matching full:operation
25 #include "operation.h"
34 class RsaOperation : public Operation {
38 : Operation(purpose), rsa_key_(key), padding_(padding), digest_(digest),
86 * RSA private key signing operation.
108 * RSA public key verification operation.
147 * RSA public key encryption operation.
159 * RSA private key decryption operation.
171 * Abstract base for all RSA operation factories. This class exists mainly to centralize some code
172 * common to all RSA operation factories.
179 Operation* CreateOperation(const Key& key, const AuthorizationSet& begin_params,
204 * Abstract base for en/de-crypting RSA operation factories. This class does most of the work of
205 * creating such operations, delegating only the actual operation instantiation.