Updated application documentation and website homepage to include ASN.1 Validation

This commit is contained in:
lockbitchat
2025-08-27 13:25:26 -04:00
parent 6aaabbd1df
commit 398d8bc014
17 changed files with 6784 additions and 1483 deletions

View File

@@ -497,7 +497,7 @@ const EnhancedMinimalHeader = ({
React.createElement('p', {
key: 'subtitle',
className: 'text-xs sm:text-sm text-muted hidden sm:block'
}, 'End-to-end freedom. v4.01.441')
}, 'End-to-end freedom v4.02.442')
])
]),

View File

@@ -53,7 +53,7 @@ const IntegratedLightningPayment = ({ sessionType, onSuccess, onCancel, paymentM
const handleWebLNPayment = async () => {
if (!window.webln) {
setError('WebLN is not supported. Please use the Alby or Zeus wallet.');
setError('WebLN is not supported. Please use the Alby or Zeus wallet. SecureBit.chat v4.02.442 - ASN.1 Validated requires WebLN for Lightning payments.');
return;
}

View File

@@ -89,7 +89,11 @@ const PaymentModal = ({ isOpen, onClose, sessionManager, onSessionPurchased }) =
'🛡️ Metadata Protection',
'🔄 Perfect Forward Secrecy',
'🔐 Nested Encryption',
'📦 Packet Padding'
'📦 Packet Padding',
'🔒 Complete ASN.1 validation',
'🔍 OID and EC point verification',
'🏗️ SPKI structure validation',
'🛡️ 18-layer security architecture'
],
unavailable: [
'🎭 Traffic Obfuscation',
@@ -129,7 +133,12 @@ const PaymentModal = ({ isOpen, onClose, sessionManager, onSessionPurchased }) =
'🕵️ Decoy Channels',
'🚫 Anti-Fingerprinting',
'📝 Message Chunking',
'🔄 Advanced Replay Protection'
'🔄 Advanced Replay Protection',
'🔒 Complete ASN.1 validation',
'🔍 OID and EC point verification',
'🏗️ SPKI structure validation',
'🛡️ 18-layer security architecture',
'🚀 ASN.1 Validated'
],
unavailable: [],
upgrade: {

View File

@@ -1,3 +1,4 @@
// SessionTimer Component - v4.02.442 - ASN.1 Validated
const SessionTimer = ({ timeLeft, sessionType, sessionManager }) => {
const [currentTime, setCurrentTime] = React.useState(timeLeft || 0);
const [showExpiredMessage, setShowExpiredMessage] = React.useState(false);

View File

@@ -80,7 +80,12 @@ const SessionTypeSelector = ({ onSelectType, onCancel, sessionManager }) => {
'Metadata protection',
'Perfect forward secrecy',
'Nested encryption',
'Packet padding'
'Packet padding',
'Complete ASN.1 validation',
'OID and EC point verification',
'SPKI structure validation',
'18-layer security architecture',
'ASN.1 Validated'
],
limitations: [
'Limited traffic obfuscation',
@@ -104,7 +109,12 @@ const SessionTypeSelector = ({ onSelectType, onCancel, sessionManager }) => {
'Decoy channels',
'Anti-fingerprinting',
'Message chunking',
'Advanced replay protection'
'Advanced replay protection',
'Complete ASN.1 validation',
'OID and EC point verification',
'SPKI structure validation',
'18-layer security architecture',
'ASN.1 Validated'
],
limitations: []
}

View File

@@ -3,6 +3,7 @@
// ============================================
// Модальное окно для авторизации через Web3 токены
// Поддерживает покупку, проверку и управление токенами
// Enhanced with complete ASN.1 validation
// ============================================
const TokenAuthModal = ({