Torna indietro   Hardware Upgrade Forum > Software > Programmazione

Google Pixel 10 è compatto e ha uno zoom 5x a 899€: basta per essere un best-buy?
Google Pixel 10 è compatto e ha uno zoom 5x a 899€: basta per essere un best-buy?
Google Pixel 10 è uno smartphone che unisce una fotocamera molto più versatile rispetto al passato grazie allo zoom ottico 5x, il supporto magnetico Pixelsnap e il nuovo chip Tensor G5. Il dispositivo porta Android 16 e funzionalità AI avanzate come Camera Coach, mantenendo il design caratteristico della serie Pixel con miglioramenti nelle prestazioni e nell'autonomia. In Italia, però, mancano diverse feature peculiari basate sull'AI.
Prova GeForce NOW upgrade Blackwell: il cloud gaming cambia per sempre
Prova GeForce NOW upgrade Blackwell: il cloud gaming cambia per sempre
L'abbonamento Ultimate di GeForce NOW ora comprende la nuova architettura Blackwell RTX con GPU RTX 5080 che garantisce prestazioni tre volte superiori alla precedente generazione. Non si tratta solo di velocità, ma di un'esperienza di gioco migliorata con nuove tecnologie di streaming e un catalogo giochi raddoppiato grazie alla funzione Install-to-Play
Ecovacs Deebot X11 Omnicyclone: niente più sacchetto per lo sporco
Ecovacs Deebot X11 Omnicyclone: niente più sacchetto per lo sporco
Deebot X11 Omnicyclone implementa tutte le ultime tecnologie Ecovacs per l'aspirazione dei pavimenti di casa e il loro lavaggio, con una novità: nella base di ricarica non c'è più il sacchetto di raccolta dello sporco, sostituito da un aspirapolvere ciclonico che accumula tutto in un contenitore rigido
Tutti gli articoli Tutte le news

Vai al Forum
Rispondi
 
Strumenti
Old 17-02-2011, 13:08   #1
2oceano
Junior Member
 
Iscritto dal: Feb 2011
Messaggi: 1
encrypt per Access in visualbasic

Ciao Ragazzi sono nuovo e spero di non sbagliare sezione o impostazione del messaggio,

Vi spiego il mio problema, ho utilizzato un codice che mi permette di criptare e decriptare uno specifico campo, funziona perfettamente ma l'unico inconveniente è che nel criptare il campo utilizza codici asci ad esempio codificando un codice fiscale mi dà come risultato
¸©ª¬´©™–g¸—–©––˜¸ siccome lo esporto in xml nell'importazione non riconoscono questi caratteri e creano problemi di accettazione.

vi è un modo che permetta di codificare con caratteri "non ascii"? ho provato a cercare altri comandi da sostituire ad ASC ma non penso che sia questo il problema,
spero di essere stato chiaro vi incollo il codice per vedere se si può modificare per ottenere il risultato richiesto.

grazie a tutti

Codice:
    Option Compare Database
    Option Explicit
    Const PASSWORD_KEY = "f"
    'modificare la chiave con una a piacimento

    '================================================
    ' Function: encrypt
    '
    ' Purpose: To encrypt or decrypt a string using
    ' a predefined key value stored as
    ' the constant PASSWORD_KEY. The same
    ' string encrypted twice won't always
    ' look the same because the function
    ' chooses a random starting position
    ' within the key to encrypt values.
    '
    ' Call: gResult = encryt("Hello World", true)
    '
    ' In: strFull - String containing the
    ' text to encrypt/decrypt
    '
    ' fEncrypt - Boolean set to TRUE to
    ' encrypt the string, FALSE
    ' to decrypt it.
    '
    ' Out: none
    '
    ' Returns: String - The encrypted/decrypted
    ' value if successful, ""
    ' otherwise
    '
    ' History: 98/06/10 created by Dima Mnushkin
    '
    '================================================
    Public Function encrypt(strFull As String, _
    fEncrypt As Boolean) As String
    On Error GoTo Err_encrypt

    Dim intInputPos As Integer
    Dim intPassKeyPos As Integer
    Dim strOutput As String
    Dim intTemp As Integer
    Dim strStartingPos As String

    If strFull = "" Then GoTo Exit_encrypt

    ' Encrypt a value
    If fEncrypt Then
    ' Initialize the random function
    Randomize

    ' Determine the starting position to use in
    ' the encryption string
    intPassKeyPos = Int(Len(PASSWORD_KEY) * _
    Rnd + 1)

    ' Encrypt the starting position used in
    ' preparation to storing it in the middle of
    ' the encrypted result
    intTemp = intPassKeyPos + _
    Asc(Left(PASSWORD_KEY, 1))
    If intTemp > 255 Then intTemp = intTemp - 255
    strStartingPos = Chr(intTemp)

    ' Encrypt the full string
    For intInputPos = 1 To Len(strFull)
    intPassKeyPos = intPassKeyPos + 1

    ' Wrap to the beginning of the key if we have
    ' have used up the last character.
    If intPassKeyPos > Len(PASSWORD_KEY) Then
    intPassKeyPos = 1
    End If

    ' Add the value of the character to be
    ' encrypted to the value of the character
    ' stored at the current position in the key
    intTemp = Asc(Mid(strFull, intInputPos, 1) _
    ) + Asc(Mid(PASSWORD_KEY, _
    intPassKeyPos, 1))
    If intTemp > 255 Then intTemp = intTemp - 255

    ' If we are at middle of the result string,
    ' insert our encrypted starting position so
    ' we can decrypt this string later.
    If CInt(Len(strFull) / 2) + 1 = intInputPos _
    Then strOutput = strOutput & strStartingPos

    strOutput = strOutput & Chr(intTemp)

    Next intInputPos

    ' Decrypt a value
    Else
    ' Retrieve the encrypted starting position from
    ' the middle of the string to be decrypted
    intPassKeyPos = Asc(Mid(strFull, _
    CInt((Len(strFull) - 1) / 2) + 1, 1)) - _
    Asc(Left(PASSWORD_KEY, 1))

    If intPassKeyPos < 0 Then _
    intPassKeyPos = intPassKeyPos + 255

    ' Decrypt the full string
    For intInputPos = 1 To Len(strFull)
    intPassKeyPos = intPassKeyPos + 1

    If intPassKeyPos > Len(PASSWORD_KEY) Then _
    intPassKeyPos = 1

    ' Decrypt each character by subtracting the
    ' value of the corresponding character stored
    ' in the key.
    intTemp = Asc(Mid(strFull, intInputPos, 1)) - _
    Asc(Mid(PASSWORD_KEY, intPassKeyPos, 1))

    If intTemp <= 0 Then intTemp = intTemp + 255

    ' If we are looking at the middle character,
    ' ignore it since its the encrypted starting
    ' position.
    If intInputPos = CInt((Len(strFull) - 1) / 2) + _
    1 Then
    intPassKeyPos = intPassKeyPos - 1

    Else
    strOutput = strOutput & Chr(intTemp)

    End If

    Next intInputPos

    End If

    encrypt = strOutput

    Exit_encrypt:
    Exit Function

    Err_encrypt:
    encrypt = ""
    MsgBox Error
    Resume Exit_encrypt

    End Function
2oceano è offline   Rispondi citando il messaggio o parte di esso
 Rispondi


Google Pixel 10 è compatto e ha uno zoom 5x a 899€: basta per essere un best-buy? Google Pixel 10 è compatto e ha uno zoom ...
Prova GeForce NOW upgrade Blackwell: il cloud gaming cambia per sempre Prova GeForce NOW upgrade Blackwell: il cloud ga...
Ecovacs Deebot X11 Omnicyclone: niente più sacchetto per lo sporco Ecovacs Deebot X11 Omnicyclone: niente più...
Narwal Flow: con il mocio orizzontale lava i pavimenti al meglio Narwal Flow: con il mocio orizzontale lava i pav...
Panasonic 55Z95BEG cala gli assi: pannello Tandem e audio senza compromessi Panasonic 55Z95BEG cala gli assi: pannello Tande...
Metroid Prime Beyond: arriva un trailer ...
Fujifilm GFX Eterna 55: una soluzione co...
Stardew Valley arriva su Switch 2: una c...
E-bike fat legale con "pulsante mag...
Nintendo Virtual Boy: l'accessorio per S...
Popucom si presenta come uno dei miglior...
Super Mario Galaxy il film: l'idraulico ...
Stellantis, contro risposta a BYD: "...
Microsoft evita una sanzione in Europa p...
TCL a IFA 2025: TV Mini LED, smartphone ...
Neanche la politica è salva: l'Al...
I nuovi Pixel 10 in mostra a Milano con ...
Perplexity di nuovo in tribunale: Merria...
AirPods 4 al minimo su Amazon: la versio...
Sam Altman sempre più convinto: l...
Chromium
GPU-Z
OCCT
LibreOffice Portable
Opera One Portable
Opera One 106
CCleaner Portable
CCleaner Standard
Cpu-Z
Driver NVIDIA GeForce 546.65 WHQL
SmartFTP
Trillian
Google Chrome Portable
Google Chrome 120
VirtualBox
Tutti gli articoli Tutte le news Tutti i download

Strumenti

Regole
Non Puoi aprire nuove discussioni
Non Puoi rispondere ai messaggi
Non Puoi allegare file
Non Puoi modificare i tuoi messaggi

Il codice vB è On
Le Faccine sono On
Il codice [IMG] è On
Il codice HTML è Off
Vai al Forum


Tutti gli orari sono GMT +1. Ora sono le: 03:45.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Served by www3v