Lines Matching full:encryption
68 // AES Encryption
72 // This function performs AES encryption in CBC chain mode. The input dIn buffer is encrypted into dOut.
189 // This function performs AES encryption in CFB chain mode. The dOut buffer receives the values
190 // encrypted dIn. The input iv is assumed to be the size of an encryption block (16 bytes). The iv buffer will
217 // Create AES encryption key schedule
244 // The input iv is assumed to be the size of an encryption block (16 bytes). The iv buffer will be modified to
273 // Create AES encryption key schedule
299 // This function performs AES encryption/decryption in CTR chain mode. The dIn buffer is encrypted into
328 // Create AES encryption schedule
349 // AES encryption in ECB mode. The data buffer is modified to contain the cipher text.
434 // This function performs AES encryption/decryption in OFB chain mode. The dIn buffer is modified to
437 // will be the nth encryption of the IV, where n is the number of blocks (full or partial) in the data stream.
485 // SM4 Encryption
489 // This function performs SM4 encryption in CBC chain mode. The input dIn buffer is encrypted into dOut.
606 // This function performs SM4 encryption in CFB chain mode. The dOut buffer receives the values
607 // encrypted dIn. The input iv is assumed to be the size of an encryption block (16 bytes). The iv buffer will
634 // Create SM4 encryption key schedule
657 // The input iv is assumed to be the size of an encryption block (16 bytes). The iv buffer will be modified to
686 // Create SM4 encryption key schedule
712 // This function performs SM4 encryption/decryption in CTR chain mode. The dIn buffer is encrypted into
741 // Create SM4 encryption schedule
762 // SM4 encryption in ECB mode. The data buffer is modified to contain the cipher text.
850 // This function performs SM4 encryption/decryption in OFB chain mode. The dIn buffer is modified to
853 // will be the nth encryption of the IV, where n is the number of blocks (full or partial) in the data stream.