ADVERTISEMENT

Reclaiming our digital sovereignty

Published Nov 3, 2025 08:07 am
The Department of Information and Communications Technology (DICT) has released a draft circular on data residency for government agencies. It is a good and necessary move, but it needs to go further. The Philippines must make sure that all government data, and any system that handles it, stays within the country and under Philippine law.
This is not a question of technology alone. It is about who truly controls the information that defines our government and our citizens. Our budget records, citizen databases, and national files are as important as our land and seas. Allowing these to be processed or stored abroad weakens our sovereignty and leaves our country exposed to foreign interference.
Why Data Residency Matters
Data residency simply means that government data is stored and processed inside the Philippines, not in foreign data centers. When government information is hosted abroad, it falls under another country’s jurisdiction. That means foreign courts or agencies can demand access to it. The government may lose the ability to protect, correct, or even delete its own records.
Some officials and consultants have suggested using foreign or public blockchains, such as Polygon, for transparency. While that sounds modern, it also means our national data becomes dependent on servers and validators located in other countries. Those systems may be open to anyone across the world and governed by foreign law. For a sovereign nation, that is a serious risk.
Learning from Other Nations
Other countries have already faced this issue.
Estonia, known for its digital government, uses blockchain to secure state records but keeps all its data in national servers. India requires citizen and financial data to stay within the country. Indonesia enforces similar rules through its electronic systems law. These countries show that sovereignty and innovation can go together when data stays within national borders.
What the Philippines Should Do
The DICT circular can be improved through three practical measures:
First, all government data including backups must be stored in Philippine territory. Major providers like Amazon, Microsoft, and Google can already create “sovereign cloud” facilities that operate entirely under local law. The DICT should require this setup for all agencies.
Second, if any blockchain is used by government, it must be operated only by validators and servers located in multiple parts of the Philippines. If we want to use blockchain for integrity or audit purposes, let it be a Philippine chain run by Philippine institutions.
Third, all technology contracts should specify that Philippine law and Philippine courts have authority. Vendors must commit that no data copies or encryption keys will ever leave the country. The National Privacy Commission and Commission on Audit should be able to inspect and verify compliance.
This Is Strength, Not Limitation
Some people may worry that local infrastructure is expensive or less reliable. That thinking is outdated. The Philippines can build its own modern, secure data centers and regional backup facilities. We can partner with local providers and universities to train people to manage them. If we can build roads and bridges, we can build a strong digital backbone too.
Keeping our data inside our borders is not isolationist, it is protective. It ensures that our laws, not foreign powers, decide how government data is used. It gives Filipinos confidence that their personal information and public records are safe and sovereign.
A Call for Digital Independence
The DICT’s draft circular points the right way, but it must be clearer and stricter. Sovereignty is not achieved by words. It is achieved when every server, validator, and database holding government data operates on Philippine soil and follows Philippine law.
Our nation once fought for political independence. Today, we must fight for digital independence. By keeping our data, our systems, and our validation inside the country, we affirm that the Philippines owns not only its territory but also its digital destiny.
That is what true sovereignty means in the modern age.
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.