Lines Matching refs:opflag
43 * Do the operation(s) specified by opflag.
48 int opflag)
55 if (!(opflag & OP_INIT)) {
71 } else if (opflag & OP_INIT) {
75 if (opflag & OP_INIT) {
81 if (opflag & OP_SINGLE) {
85 if (opflag & OP_UPDATE) {
91 if (opflag & OP_FINAL) {
101 * opflag specifies whether this is a sign or verify.
105 CK_BYTE_PTR kval, CK_ULONG klen, int opflag)
123 } else if (opflag & OP_INIT) {
124 free_soft_ctx(session_p, opflag);
139 key_p, opflag & OP_SIGN);
145 * opflag specifies whether this is a sign or verify.
148 do_soft_hmac_update(void **s, CK_BYTE_PTR pData, CK_ULONG ulDataLen, int opflag)
158 pData, ulDataLen, opflag & OP_SIGN));
162 * opflag specifies whether this is a final or single.
166 CK_BYTE_PTR pSignature, CK_ULONG_PTR pulSignatureLen, int opflag)
173 if (session_p == NULL || !(opflag & OP_SINGLE || opflag & OP_FINAL)) {
188 * opflag specifies whether this is a final or single.
192 CK_BYTE_PTR pSignature, CK_ULONG ulSignatureLen, int opflag)
201 if (session_p == NULL || !(opflag & OP_SINGLE || opflag & OP_FINAL)) {
228 free_soft_ctx(void *s, int opflag)
236 if (opflag & OP_SIGN) {
243 } else if (opflag & OP_VERIFY) {