Updated application documentation and website homepage to include ASN.1 Validation
This commit is contained in:
@@ -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')
|
||||
])
|
||||
]),
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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: {
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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: []
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
// ============================================
|
||||
// Модальное окно для авторизации через Web3 токены
|
||||
// Поддерживает покупку, проверку и управление токенами
|
||||
// Enhanced with complete ASN.1 validation
|
||||
// ============================================
|
||||
|
||||
const TokenAuthModal = ({
|
||||
|
||||
Reference in New Issue
Block a user