aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/camellia/camellia.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/camellia/camellia.h')
-rw-r--r--src/block/camellia/camellia.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/block/camellia/camellia.h b/src/block/camellia/camellia.h
index 9ce305983..4db115f2c 100644
--- a/src/block/camellia/camellia.h
+++ b/src/block/camellia/camellia.h
@@ -27,7 +27,7 @@ class BOTAN_DLL Camellia_128 : public Block_Cipher_Fixed_Params<16, 16>
private:
void key_schedule(const byte key[], size_t length);
- SecureVector<u64bit> SK;
+ secure_vector<u64bit> SK;
};
/**
@@ -45,7 +45,7 @@ class BOTAN_DLL Camellia_192 : public Block_Cipher_Fixed_Params<16, 24>
private:
void key_schedule(const byte key[], size_t length);
- SecureVector<u64bit> SK;
+ secure_vector<u64bit> SK;
};
/**
@@ -63,7 +63,7 @@ class BOTAN_DLL Camellia_256 : public Block_Cipher_Fixed_Params<16, 32>
private:
void key_schedule(const byte key[], size_t length);
- SecureVector<u64bit> SK;
+ secure_vector<u64bit> SK;
};
}