You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
738 B
18 lines
738 B
// Copyright Low Entry. All Rights Reserved.
|
|
|
|
#include "LowEntryEncryptionAesKey.h"
|
|
|
|
|
|
ULowEntryEncryptionAesKey::ULowEntryEncryptionAesKey(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {}
|
|
|
|
|
|
ULowEntryEncryptionAesKey* ULowEntryEncryptionAesKey::Create(const int32 rounds_, const bool encryptionWSet_, const TArray<TArray<int32>>& encryptionW_, const bool decryptionWSet_, const TArray<TArray<int32>>& decryptionW_)
|
|
{
|
|
ULowEntryEncryptionAesKey* instance = NewObject<ULowEntryEncryptionAesKey>();
|
|
instance->rounds = rounds_;
|
|
instance->encryptionWSet = encryptionWSet_;
|
|
instance->encryptionW = encryptionW_;
|
|
instance->decryptionWSet = decryptionWSet_;
|
|
instance->decryptionW = decryptionW_;
|
|
return instance;
|
|
}
|
|
|