openssl pkcs12 -in certificado.pfx -nocerts -nodes -out certif.pem -password pass:clave
fuente
Mostrando las entradas con la etiqueta firma. Mostrar todas las entradas
Mostrando las entradas con la etiqueta firma. Mostrar todas las entradas
viernes, 4 de enero de 2019
obtener llave privada del certificado
miércoles, 19 de diciembre de 2018
Transformar de base64 a decimal
Dim array As Byte() = Convert.FromBase64String("AQAB")
Dim hex As String = BitConverter.ToString(array).Replace("-", String.Empty)
Dim n As Integer = Val("&H" & hex)
Dim n1 As Integer = Val("&H" & BitConverter.ToString(Convert.FromBase64String("AQAB")).Replace("-", String.Empty))
fuente1
fuente2
Dim hex As String = BitConverter.ToString(array).Replace("-", String.Empty)
Dim n As Integer = Val("&H" & hex)
Dim n1 As Integer = Val("&H" & BitConverter.ToString(Convert.FromBase64String("AQAB")).Replace("-", String.Empty))
fuente1
fuente2
Suscribirse a:
Entradas (Atom)