File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -3250,9 +3250,13 @@ const Cipher Cipher::AES_256_GCM = Cipher::FromNid(NID_aes_256_gcm);
32503250const Cipher Cipher::AES_128_KW = Cipher::FromNid (NID_id_aes128_wrap);
32513251const Cipher Cipher::AES_192_KW = Cipher::FromNid (NID_id_aes192_wrap);
32523252const Cipher Cipher::AES_256_KW = Cipher::FromNid (NID_id_aes256_wrap);
3253+
3254+ #ifndef OPENSSL_IS_BORINGSSL
32533255const Cipher Cipher::AES_128_OCB = Cipher::FromNid (NID_aes_128_ocb);
32543256const Cipher Cipher::AES_192_OCB = Cipher::FromNid (NID_aes_192_ocb);
32553257const Cipher Cipher::AES_256_OCB = Cipher::FromNid (NID_aes_256_ocb);
3258+ #endif
3259+
32563260const Cipher Cipher::CHACHA20_POLY1305 = Cipher::FromNid (NID_chacha20_poly1305);
32573261
32583262bool Cipher::isGcmMode () const {
You can’t perform that action at this time.
0 commit comments