From 1884010ceba57b77b8d59d201c858e0341d983e8 Mon Sep 17 00:00:00 2001 From: Yorick de Wid Date: Thu, 3 Mar 2016 12:51:56 +0100 Subject: [PATCH] Support for Egypt, Congo, Gabon --- iban.cc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/iban.cc b/iban.cc index f0a0e9c..5c8ae1b 100644 --- a/iban.cc +++ b/iban.cc @@ -388,6 +388,15 @@ Validate::Validate() { addSpecification(new Specification( "UA", 29, "F25", "UA511234567890123456789012345")); + addSpecification(new Specification( + "EG", 27, "F23", + "EG1100006001880800100014553"))); + addSpecification(new Specification( + "CG", 27, "F23", + "CG5230011000202151234567890"))); + addSpecification(new Specification( + "GA", 27, "F23", + "GA2140002000055602673300064"))); }