HomeSort by: relevance | last modified time | path
    Searched refs:Encrypt (Results 1 - 9 of 9) sorted by relevancy

  /src/external/bsd/elftosb/dist/common/
RijndaelCBCMAC.cpp 43 //! It appears that some forms of CBC-MAC encrypt the final output block again in
56 cipher.init(Rijndael::CBC, Rijndael::Encrypt, m_key, Rijndael::Key16Bytes, m_mac);
rijndael.h 51 // rin.init(Rijndael::CBC,Rijndael::Encrypt,key,Rijndael::Key32Bytes);
89 enum Direction { Encrypt , Decrypt };
94 // You have to call init() before you can encrypt or decrypt stuff
117 // dir : Rijndael::Encrypt or Rijndael::Decrypt
155 void encrypt(const uint8_t a[16], uint8_t b[16]);
EncoreBootImage.cpp 182 // encrypt DEK with this key, write it out, and update image digest
184 cipher.init(Rijndael::CBC, Rijndael::Encrypt, *it, Rijndael::Key16Bytes, imageHeader.m_iv);
207 cipher.init(Rijndael::CBC, Rijndael::Encrypt, m_sessionKey, Rijndael::Key16Bytes, imageHeader.m_iv);
227 // re-init after encrypt to update IV
229 cipher.init(Rijndael::CBC, Rijndael::Encrypt, m_sessionKey, Rijndael::Key16Bytes, block);
241 cipher.init(Rijndael::CBC, Rijndael::Encrypt, m_sessionKey, Rijndael::Key16Bytes, imageHeader.m_iv);
262 // re-init after encrypt to update IV
264 cipher.init(Rijndael::CBC, Rijndael::Encrypt, m_sessionKey, Rijndael::Key16Bytes, block);
275 cipher.init(Rijndael::CBC, Rijndael::Encrypt, m_sessionKey, Rijndael::Key16Bytes, imageHeader.m_iv);
284 // Only encrypt the section contents if the entire boot image is encrypte
    [all...]
rijndael.cpp 984 if((dir != Encrypt) && (dir != Decrypt))return RIJNDAEL_UNSUPPORTED_DIRECTION;
1048 if(m_direction != Encrypt)return RIJNDAEL_BAD_DIRECTION;
1058 encrypt(input,outBuffer);
1068 encrypt(block,outBuffer);
1077 encrypt(block,outBuffer);
1098 encrypt(block,block);
1133 if(m_direction != Encrypt)return RIJNDAEL_NOT_INITIALIZED;
1144 encrypt(input, outBuffer);
1152 encrypt(block,outBuffer);
1162 encrypt(block, outBuffer)
1455 void Rijndael::encrypt(const uint8_t a[16], uint8_t b[16]) function in class:Rijndael
    [all...]
  /src/crypto/external/apache2/openssl/lib/libcrypto/arch/riscv64/
sm4-riscv64-zvksed.S 122 # Encrypt with all keys
167 # Encrypt with all keys
  /src/external/bsd/elftosb/dist/encryptgpk/
encryptgpk.cpp 309 // Encrypt the output data block.
311 cipher.init(Rijndael::CBC, Rijndael::Encrypt, cryptoKey, Rijndael::Key16Bytes, (uint8_t *)&kInitVector);
  /src/crypto/external/bsd/openssl/dist/crypto/aes/asm/
aesv8-armx.pl 27 # CBC encrypt case. On Cortex-A57 parallelizable mode performance
2217 # previously, then encrypt the composite block as last second
2262 // Encrypt the iv with key2, as the first XEX iv.
2349 // Firstly, encrypt the iv with key2, as the first iv of XEX.
2867 // Encrypt the composite block to get the last second encrypted text block
2938 // Encrypt the iv with key2, as the first XEX iv.
3021 // Encrypt the iv with key2, as the first XEX iv
  /src/crypto/external/bsd/openssh/dist/
sntrup761.c 1998 static void Encrypt(Fq *c, const small *r, const Fq *h) {
2080 Encrypt(c, r, h);
  /src/crypto/external/apache2/openssl/dist/crypto/aes/asm/
aesv8-armx.pl 27 # CBC encrypt case. On Cortex-A57 parallelizable mode performance
2994 # previously, then encrypt the composite block as last second
3040 // Encrypt the iv with key2, as the first XEX iv.
3127 // Firstly, encrypt the iv with key2, as the first iv of XEX.
3645 // Encrypt the composite block to get the last second encrypted text block
3717 // Encrypt the iv with key2, as the first XEX iv.
3800 // Encrypt the iv with key2, as the first XEX iv

Completed in 40 milliseconds