I want to encrypt and decrypt AES-GCM in C# language – but I am unable to decrypt

Please help me. I want to encrypt using AES-GCM algorithm in C# code.

Here is my code – however, it can not decrypt. I want to keep the decryption code intact.

How to solve this problem? Please help me.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>// Encryption code.
private static byte[] salt = new byte[16]; // Fix 1: consider salt
private static byte[] iv = new byte[12];
private const int iterations = 100000; // Fix 2: apply the same iteration count
public string Encrypt(string key, string data)
{
byte[] tag = new byte[16];
using (var rng = RandomNumberGenerator.Create())
{
rng.GetBytes(salt);
rng.GetBytes(iv);
}
byte[] dataBytes = Encoding.UTF8.GetBytes(data);
byte[] privateKey = DeriveKey(key);
using (AesGcm aes = new AesGcm(privateKey, tag.Length))
{
byte[] encrypted = new byte[dataBytes.Length];
aes.Encrypt(iv, dataBytes, encrypted, tag);
byte[] combinedBuffer = new byte[salt.Length + iv.Length + encrypted.Length];
Buffer.BlockCopy(salt, 0, combinedBuffer, 0, salt.Length); // Fix 1: consider salt
Buffer.BlockCopy(iv, 0, combinedBuffer, salt.Length, iv.Length);
Buffer.BlockCopy(encrypted, 0, combinedBuffer, salt.Length + iv.Length, encrypted.Length);
string base64Buff = BuffToBase64(combinedBuffer);
return base64Buff;
}
}
public static byte[] DeriveKey(string password)
{
byte[] passwordBytes = Encoding.UTF8.GetBytes(password);
using (var pbkdf2 = new Rfc2898DeriveBytes(passwordBytes, salt, iterations, HashAlgorithmName.SHA256))
{
byte[] key = pbkdf2.GetBytes(32); // Fix 3: use the same key size (256 bits)
return key;
}
}
public static string BuffToBase64(byte[] buff)
{
return Convert.ToBase64String(buff);
}
public static byte[] Base64ToBuff(string b64)
{
return Convert.FromBase64String(b64);
}
// Decryption code
public string Decrypt(string password, string encryptedString)
{
Span<byte> encryptedData = Convert.FromBase64String(encryptedString).AsSpan();
Span<byte> salt = encryptedData[..16];
Span<byte> nonce = encryptedData[16..(16 + 12)];
Span<byte> data = encryptedData[(16 + 12)..^16];
Span<byte> tag = encryptedData[^16..];
using Rfc2898DeriveBytes pbkdf2 = new(Encoding.UTF8.GetBytes(password), salt.ToArray(), 100000, HashAlgorithmName.SHA256);
using AesGcm aes = new(pbkdf2.GetBytes(32), tag.Length);
Span<byte> result = new byte[data.Length];
aes.Decrypt(nonce, data, tag, result);
return Encoding.UTF8.GetString(result);
}
// Run the program.
var r = new AesGcmEncryption().Encrypt("my passphrase", "abcd");
var r2 = new AesGcmEncryption().Decrypt("my passphrase", r);
Console.WriteLine(r);
Console.WriteLine(r2);
</code>
<code>// Encryption code. private static byte[] salt = new byte[16]; // Fix 1: consider salt private static byte[] iv = new byte[12]; private const int iterations = 100000; // Fix 2: apply the same iteration count public string Encrypt(string key, string data) { byte[] tag = new byte[16]; using (var rng = RandomNumberGenerator.Create()) { rng.GetBytes(salt); rng.GetBytes(iv); } byte[] dataBytes = Encoding.UTF8.GetBytes(data); byte[] privateKey = DeriveKey(key); using (AesGcm aes = new AesGcm(privateKey, tag.Length)) { byte[] encrypted = new byte[dataBytes.Length]; aes.Encrypt(iv, dataBytes, encrypted, tag); byte[] combinedBuffer = new byte[salt.Length + iv.Length + encrypted.Length]; Buffer.BlockCopy(salt, 0, combinedBuffer, 0, salt.Length); // Fix 1: consider salt Buffer.BlockCopy(iv, 0, combinedBuffer, salt.Length, iv.Length); Buffer.BlockCopy(encrypted, 0, combinedBuffer, salt.Length + iv.Length, encrypted.Length); string base64Buff = BuffToBase64(combinedBuffer); return base64Buff; } } public static byte[] DeriveKey(string password) { byte[] passwordBytes = Encoding.UTF8.GetBytes(password); using (var pbkdf2 = new Rfc2898DeriveBytes(passwordBytes, salt, iterations, HashAlgorithmName.SHA256)) { byte[] key = pbkdf2.GetBytes(32); // Fix 3: use the same key size (256 bits) return key; } } public static string BuffToBase64(byte[] buff) { return Convert.ToBase64String(buff); } public static byte[] Base64ToBuff(string b64) { return Convert.FromBase64String(b64); } // Decryption code public string Decrypt(string password, string encryptedString) { Span<byte> encryptedData = Convert.FromBase64String(encryptedString).AsSpan(); Span<byte> salt = encryptedData[..16]; Span<byte> nonce = encryptedData[16..(16 + 12)]; Span<byte> data = encryptedData[(16 + 12)..^16]; Span<byte> tag = encryptedData[^16..]; using Rfc2898DeriveBytes pbkdf2 = new(Encoding.UTF8.GetBytes(password), salt.ToArray(), 100000, HashAlgorithmName.SHA256); using AesGcm aes = new(pbkdf2.GetBytes(32), tag.Length); Span<byte> result = new byte[data.Length]; aes.Decrypt(nonce, data, tag, result); return Encoding.UTF8.GetString(result); } // Run the program. var r = new AesGcmEncryption().Encrypt("my passphrase", "abcd"); var r2 = new AesGcmEncryption().Decrypt("my passphrase", r); Console.WriteLine(r); Console.WriteLine(r2); </code>
// Encryption code.
private static byte[] salt = new byte[16]; // Fix 1: consider salt
private static byte[] iv = new byte[12];
private const int iterations = 100000; // Fix 2: apply the same iteration count 

public string Encrypt(string key, string data)
{
     byte[] tag = new byte[16];

     using (var rng = RandomNumberGenerator.Create())
     {
         rng.GetBytes(salt);
         rng.GetBytes(iv);
     }

     byte[] dataBytes = Encoding.UTF8.GetBytes(data);
     byte[] privateKey = DeriveKey(key);

     using (AesGcm aes = new AesGcm(privateKey, tag.Length))
     {
         byte[] encrypted = new byte[dataBytes.Length];
         aes.Encrypt(iv, dataBytes, encrypted, tag);

         byte[] combinedBuffer = new byte[salt.Length + iv.Length + encrypted.Length];
         Buffer.BlockCopy(salt, 0, combinedBuffer, 0, salt.Length); // Fix 1: consider salt
         Buffer.BlockCopy(iv, 0, combinedBuffer, salt.Length, iv.Length);
         Buffer.BlockCopy(encrypted, 0, combinedBuffer, salt.Length + iv.Length, encrypted.Length);

         string base64Buff = BuffToBase64(combinedBuffer);
         return base64Buff;
     }
}

public static byte[] DeriveKey(string password)
{
     byte[] passwordBytes = Encoding.UTF8.GetBytes(password);

     using (var pbkdf2 = new Rfc2898DeriveBytes(passwordBytes, salt, iterations, HashAlgorithmName.SHA256))
     {
         byte[] key = pbkdf2.GetBytes(32); // Fix 3: use the same key size (256 bits)
         return key;
     }
}

public static string BuffToBase64(byte[] buff)
{
    return Convert.ToBase64String(buff);
}

public static byte[] Base64ToBuff(string b64)
{
    return Convert.FromBase64String(b64);
}
 
// Decryption code
 
public string Decrypt(string password, string encryptedString)
{
    Span<byte> encryptedData = Convert.FromBase64String(encryptedString).AsSpan();
    Span<byte> salt = encryptedData[..16]; 
    Span<byte> nonce = encryptedData[16..(16 + 12)];
    Span<byte> data = encryptedData[(16 + 12)..^16];
    Span<byte> tag = encryptedData[^16..];

    using Rfc2898DeriveBytes pbkdf2 = new(Encoding.UTF8.GetBytes(password), salt.ToArray(), 100000, HashAlgorithmName.SHA256);
    using AesGcm aes = new(pbkdf2.GetBytes(32), tag.Length); 

    Span<byte> result = new byte[data.Length];
    aes.Decrypt(nonce, data, tag, result);
    return Encoding.UTF8.GetString(result);
}

// Run the program.
var r = new AesGcmEncryption().Encrypt("my passphrase", "abcd");
var r2 = new AesGcmEncryption().Decrypt("my passphrase", r);

Console.WriteLine(r);
Console.WriteLine(r2);

Error:

Specified argument was out of the range of valid values

I tried changing all the cases, by changing the code, and searched but no one wrote similar code.

0

You need to append the authentication tag to the combinedBuffer array, as it essential for the decryption.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>byte[] combinedBuffer = new byte[salt.Length + iv.Length + encrypted.Length + tag.Length];
// ..
Buffer.BlockCopy(tag, 0, combinedBuffer, salt.Length + iv.Length + encrypted.Length, tag.Length);
</code>
<code>byte[] combinedBuffer = new byte[salt.Length + iv.Length + encrypted.Length + tag.Length]; // .. Buffer.BlockCopy(tag, 0, combinedBuffer, salt.Length + iv.Length + encrypted.Length, tag.Length); </code>
byte[] combinedBuffer = new byte[salt.Length + iv.Length + encrypted.Length + tag.Length];

    // ..

Buffer.BlockCopy(tag, 0, combinedBuffer, salt.Length + iv.Length + encrypted.Length, tag.Length);

2

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

I want to encrypt and decrypt AES-GCM in C# language – but I am unable to decrypt

Please help me. I want to encrypt using AES-GCM algorithm in C# code.

Here is my code – however, it can not decrypt. I want to keep the decryption code intact.

How to solve this problem? Please help me.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>// Encryption code.
private static byte[] salt = new byte[16]; // Fix 1: consider salt
private static byte[] iv = new byte[12];
private const int iterations = 100000; // Fix 2: apply the same iteration count
public string Encrypt(string key, string data)
{
byte[] tag = new byte[16];
using (var rng = RandomNumberGenerator.Create())
{
rng.GetBytes(salt);
rng.GetBytes(iv);
}
byte[] dataBytes = Encoding.UTF8.GetBytes(data);
byte[] privateKey = DeriveKey(key);
using (AesGcm aes = new AesGcm(privateKey, tag.Length))
{
byte[] encrypted = new byte[dataBytes.Length];
aes.Encrypt(iv, dataBytes, encrypted, tag);
byte[] combinedBuffer = new byte[salt.Length + iv.Length + encrypted.Length];
Buffer.BlockCopy(salt, 0, combinedBuffer, 0, salt.Length); // Fix 1: consider salt
Buffer.BlockCopy(iv, 0, combinedBuffer, salt.Length, iv.Length);
Buffer.BlockCopy(encrypted, 0, combinedBuffer, salt.Length + iv.Length, encrypted.Length);
string base64Buff = BuffToBase64(combinedBuffer);
return base64Buff;
}
}
public static byte[] DeriveKey(string password)
{
byte[] passwordBytes = Encoding.UTF8.GetBytes(password);
using (var pbkdf2 = new Rfc2898DeriveBytes(passwordBytes, salt, iterations, HashAlgorithmName.SHA256))
{
byte[] key = pbkdf2.GetBytes(32); // Fix 3: use the same key size (256 bits)
return key;
}
}
public static string BuffToBase64(byte[] buff)
{
return Convert.ToBase64String(buff);
}
public static byte[] Base64ToBuff(string b64)
{
return Convert.FromBase64String(b64);
}
// Decryption code
public string Decrypt(string password, string encryptedString)
{
Span<byte> encryptedData = Convert.FromBase64String(encryptedString).AsSpan();
Span<byte> salt = encryptedData[..16];
Span<byte> nonce = encryptedData[16..(16 + 12)];
Span<byte> data = encryptedData[(16 + 12)..^16];
Span<byte> tag = encryptedData[^16..];
using Rfc2898DeriveBytes pbkdf2 = new(Encoding.UTF8.GetBytes(password), salt.ToArray(), 100000, HashAlgorithmName.SHA256);
using AesGcm aes = new(pbkdf2.GetBytes(32), tag.Length);
Span<byte> result = new byte[data.Length];
aes.Decrypt(nonce, data, tag, result);
return Encoding.UTF8.GetString(result);
}
// Run the program.
var r = new AesGcmEncryption().Encrypt("my passphrase", "abcd");
var r2 = new AesGcmEncryption().Decrypt("my passphrase", r);
Console.WriteLine(r);
Console.WriteLine(r2);
</code>
<code>// Encryption code. private static byte[] salt = new byte[16]; // Fix 1: consider salt private static byte[] iv = new byte[12]; private const int iterations = 100000; // Fix 2: apply the same iteration count public string Encrypt(string key, string data) { byte[] tag = new byte[16]; using (var rng = RandomNumberGenerator.Create()) { rng.GetBytes(salt); rng.GetBytes(iv); } byte[] dataBytes = Encoding.UTF8.GetBytes(data); byte[] privateKey = DeriveKey(key); using (AesGcm aes = new AesGcm(privateKey, tag.Length)) { byte[] encrypted = new byte[dataBytes.Length]; aes.Encrypt(iv, dataBytes, encrypted, tag); byte[] combinedBuffer = new byte[salt.Length + iv.Length + encrypted.Length]; Buffer.BlockCopy(salt, 0, combinedBuffer, 0, salt.Length); // Fix 1: consider salt Buffer.BlockCopy(iv, 0, combinedBuffer, salt.Length, iv.Length); Buffer.BlockCopy(encrypted, 0, combinedBuffer, salt.Length + iv.Length, encrypted.Length); string base64Buff = BuffToBase64(combinedBuffer); return base64Buff; } } public static byte[] DeriveKey(string password) { byte[] passwordBytes = Encoding.UTF8.GetBytes(password); using (var pbkdf2 = new Rfc2898DeriveBytes(passwordBytes, salt, iterations, HashAlgorithmName.SHA256)) { byte[] key = pbkdf2.GetBytes(32); // Fix 3: use the same key size (256 bits) return key; } } public static string BuffToBase64(byte[] buff) { return Convert.ToBase64String(buff); } public static byte[] Base64ToBuff(string b64) { return Convert.FromBase64String(b64); } // Decryption code public string Decrypt(string password, string encryptedString) { Span<byte> encryptedData = Convert.FromBase64String(encryptedString).AsSpan(); Span<byte> salt = encryptedData[..16]; Span<byte> nonce = encryptedData[16..(16 + 12)]; Span<byte> data = encryptedData[(16 + 12)..^16]; Span<byte> tag = encryptedData[^16..]; using Rfc2898DeriveBytes pbkdf2 = new(Encoding.UTF8.GetBytes(password), salt.ToArray(), 100000, HashAlgorithmName.SHA256); using AesGcm aes = new(pbkdf2.GetBytes(32), tag.Length); Span<byte> result = new byte[data.Length]; aes.Decrypt(nonce, data, tag, result); return Encoding.UTF8.GetString(result); } // Run the program. var r = new AesGcmEncryption().Encrypt("my passphrase", "abcd"); var r2 = new AesGcmEncryption().Decrypt("my passphrase", r); Console.WriteLine(r); Console.WriteLine(r2); </code>
// Encryption code.
private static byte[] salt = new byte[16]; // Fix 1: consider salt
private static byte[] iv = new byte[12];
private const int iterations = 100000; // Fix 2: apply the same iteration count 

public string Encrypt(string key, string data)
{
     byte[] tag = new byte[16];

     using (var rng = RandomNumberGenerator.Create())
     {
         rng.GetBytes(salt);
         rng.GetBytes(iv);
     }

     byte[] dataBytes = Encoding.UTF8.GetBytes(data);
     byte[] privateKey = DeriveKey(key);

     using (AesGcm aes = new AesGcm(privateKey, tag.Length))
     {
         byte[] encrypted = new byte[dataBytes.Length];
         aes.Encrypt(iv, dataBytes, encrypted, tag);

         byte[] combinedBuffer = new byte[salt.Length + iv.Length + encrypted.Length];
         Buffer.BlockCopy(salt, 0, combinedBuffer, 0, salt.Length); // Fix 1: consider salt
         Buffer.BlockCopy(iv, 0, combinedBuffer, salt.Length, iv.Length);
         Buffer.BlockCopy(encrypted, 0, combinedBuffer, salt.Length + iv.Length, encrypted.Length);

         string base64Buff = BuffToBase64(combinedBuffer);
         return base64Buff;
     }
}

public static byte[] DeriveKey(string password)
{
     byte[] passwordBytes = Encoding.UTF8.GetBytes(password);

     using (var pbkdf2 = new Rfc2898DeriveBytes(passwordBytes, salt, iterations, HashAlgorithmName.SHA256))
     {
         byte[] key = pbkdf2.GetBytes(32); // Fix 3: use the same key size (256 bits)
         return key;
     }
}

public static string BuffToBase64(byte[] buff)
{
    return Convert.ToBase64String(buff);
}

public static byte[] Base64ToBuff(string b64)
{
    return Convert.FromBase64String(b64);
}
 
// Decryption code
 
public string Decrypt(string password, string encryptedString)
{
    Span<byte> encryptedData = Convert.FromBase64String(encryptedString).AsSpan();
    Span<byte> salt = encryptedData[..16]; 
    Span<byte> nonce = encryptedData[16..(16 + 12)];
    Span<byte> data = encryptedData[(16 + 12)..^16];
    Span<byte> tag = encryptedData[^16..];

    using Rfc2898DeriveBytes pbkdf2 = new(Encoding.UTF8.GetBytes(password), salt.ToArray(), 100000, HashAlgorithmName.SHA256);
    using AesGcm aes = new(pbkdf2.GetBytes(32), tag.Length); 

    Span<byte> result = new byte[data.Length];
    aes.Decrypt(nonce, data, tag, result);
    return Encoding.UTF8.GetString(result);
}

// Run the program.
var r = new AesGcmEncryption().Encrypt("my passphrase", "abcd");
var r2 = new AesGcmEncryption().Decrypt("my passphrase", r);

Console.WriteLine(r);
Console.WriteLine(r2);

Error:

Specified argument was out of the range of valid values

I tried changing all the cases, by changing the code, and searched but no one wrote similar code.

0

You need to append the authentication tag to the combinedBuffer array, as it essential for the decryption.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>byte[] combinedBuffer = new byte[salt.Length + iv.Length + encrypted.Length + tag.Length];
// ..
Buffer.BlockCopy(tag, 0, combinedBuffer, salt.Length + iv.Length + encrypted.Length, tag.Length);
</code>
<code>byte[] combinedBuffer = new byte[salt.Length + iv.Length + encrypted.Length + tag.Length]; // .. Buffer.BlockCopy(tag, 0, combinedBuffer, salt.Length + iv.Length + encrypted.Length, tag.Length); </code>
byte[] combinedBuffer = new byte[salt.Length + iv.Length + encrypted.Length + tag.Length];

    // ..

Buffer.BlockCopy(tag, 0, combinedBuffer, salt.Length + iv.Length + encrypted.Length, tag.Length);

2

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật