Changeset 95219 in vbox for trunk/src/libs/openssl-3.0.3/crypto/camellia
- Timestamp:
- Jun 8, 2022 7:43:44 AM (3 years ago)
- Location:
- trunk/src/libs/openssl-3.0.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/openssl-3.0.3
- Property svn:mergeinfo
-
old new 14 14 /vendor/openssl/3.0.1:150323-150324 15 15 /vendor/openssl/3.0.2:150728-150729 16 /vendor/openssl/current:147554-150727 16 /vendor/openssl/3.0.3:151497-151729 17 /vendor/openssl/current:147554-151496
-
- Property svn:mergeinfo
-
trunk/src/libs/openssl-3.0.3/crypto/camellia/camellia.c
r94082 r95219 1 1 /* 2 * Copyright 2006-202 0The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2006-2022 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 4 * Licensed under the Apache License 2.0 (the "License"). You may not use … … 500 500 } 501 501 502 void Camellia_DecryptBlock(int keyBitLength, const u8 plaintext[],503 const KEY_TABLE_TYPE keyTable, u8 ciphertext[])502 void Camellia_DecryptBlock(int keyBitLength, const u8 ciphertext[], 503 const KEY_TABLE_TYPE keyTable, u8 plaintext[]) 504 504 { 505 505 Camellia_DecryptBlock_Rounds(keyBitLength == 128 ? 3 : 4, 506 plaintext, keyTable, ciphertext);506 ciphertext, keyTable, plaintext); 507 507 }
Note:
See TracChangeset
for help on using the changeset viewer.