Home
last modified time | relevance | path

Searched refs:cryptEnvelope (Results 1 – 8 of 8) sorted by relevance

/dports/security/cryptlib/cryptlib-3.4.3/test/
H A Denvelope.c566 CRYPT_ENVELOPE cryptEnvelope; in envelopeData() local
755 CRYPT_ENVELOPE cryptEnvelope; in envelopeDecompress() local
807 CRYPT_ENVELOPE cryptEnvelope; in envelopeCompress() local
938 CRYPT_ENVELOPE cryptEnvelope; in envelopeSessionCrypt() local
1135 CRYPT_ENVELOPE cryptEnvelope; in envelopeDecrypt() local
1158 CRYPT_ENVELOPE cryptEnvelope; in envelopeCrypt() local
1222 CRYPT_ENVELOPE cryptEnvelope; in envelopePasswordDecrypt() local
1247 CRYPT_ENVELOPE cryptEnvelope; in envelopePasswordCrypt() local
1387 CRYPT_ENVELOPE cryptEnvelope; in envelopeBoundaryTest() local
1570 CRYPT_ENVELOPE cryptEnvelope; in envelopePKCDecrypt() local
[all …]
H A Dstress.c613 CRYPT_ENVELOPE cryptEnvelope; in envelopeDataThread() local
624 status = cryptSetAttribute( cryptEnvelope, in envelopeDataThread()
638 status = cryptDestroyEnvelope( cryptEnvelope ); in envelopeDataThread()
700 CRYPT_ENVELOPE cryptEnvelope; in signTest() local
720 status = cryptSetAttribute( cryptEnvelope, in signTest()
727 status = cryptFlushData( cryptEnvelope ); in signTest()
736 status = cryptDestroyEnvelope( cryptEnvelope ); in signTest()
750 CRYPT_ENVELOPE cryptEnvelope; in encTest() local
775 status = cryptSetAttribute( cryptEnvelope, in encTest()
781 status = cryptFlushData( cryptEnvelope ); in encTest()
[all …]
H A Dtestlib.c596 CRYPT_ENVELOPE cryptEnvelope; in fuzzEnvelope() local
601 status = cryptCreateEnvelope( &cryptEnvelope, CRYPT_UNUSED, in fuzzEnvelope()
616 ( void ) cryptPushData( cryptEnvelope, buffer, length, &bytesIn ); in fuzzEnvelope()
617 cryptDestroyEnvelope( cryptEnvelope ); in fuzzEnvelope()
H A Dsreqresp.c1207 CRYPT_ENVELOPE cryptEnvelope; in testTSP() local
1212 &cryptEnvelope ); in testTSP()
1219 status = cryptPopData( cryptEnvelope, buffer, BUFFER_SIZE, in testTSP()
1229 cryptDestroyEnvelope( cryptEnvelope ); in testTSP()
/dports/security/p5-PerlCryptLib/PerlCryptLib-1.11/t/
H A D1.t17 my $cryptEnvelope = CRYPT_ENVELOPE;
30 ok( cryptCreateEnvelope($cryptEnvelope, CRYPT_UNUSED, CRYPT_FORMAT_CRYPTLIB) == CRYPT_OK , $action …
33 ok( cryptSetAttributeString($cryptEnvelope, CRYPT_ENVINFO_PASSWORD, PASSWORD, $passwordLength) == C…
35 ok( cryptSetAttribute($cryptEnvelope, CRYPT_ENVINFO_DATASIZE, $messageLength) == CRYPT_OK , $action…
38 ok( cryptPushData($cryptEnvelope, MESSAGE, $messageLength, $bytesCopied) == CRYPT_OK , $action );
41 ok( cryptFlushData($cryptEnvelope) == CRYPT_OK , $action );
44 ok( cryptPopData($cryptEnvelope, $envelopedData, BUFFERSIZE, $bytesRead) == CRYPT_OK , $action );
47 ok( cryptDestroyEnvelope($cryptEnvelope) == CRYPT_OK , $action );
/dports/security/cryptlib/cryptlib-3.4.3/bindings/
H A Dcryptkit.tcl537 DestroyEnvelope { cryptEnvelope }
/dports/security/cryptlib/cryptlib-3.4.3/
H A DREADME845 cryptCreateEnvelope( &cryptEnvelope, formatType );
850 cryptSetAttribute( cryptEnvelope, CRYPT_ATTRIBUTE_BUFFERSIZE, size );
866 cryptGetAttributeString( cryptEnvelope, CRYPT_ENVINFO_PRIVATEKEY_LABEL,
H A Dcryptapi.c2390 C_RET cryptDestroyEnvelope( C_IN CRYPT_ENVELOPE cryptEnvelope ) in cryptDestroyEnvelope() argument
2392 return( cryptDestroyObject( cryptEnvelope ) ); in cryptDestroyEnvelope()